Skip to content

Commit

Permalink
FLUID-5004: added Infusion
Browse files Browse the repository at this point in the history
Using a static version of Infusion for the the index.html page. Updated the css references to reflect this change.
  • Loading branch information
jobara committed May 2, 2013
1 parent c46f90e commit 7390fce
Show file tree
Hide file tree
Showing 6 changed files with 796 additions and 3 deletions.
7 changes: 4 additions & 3 deletions index.html
Expand Up @@ -17,9 +17,10 @@
} catch(err) {} } catch(err) {}
//]]> //]]>
</script> </script>
<link rel="stylesheet" href="http://build.fluidproject.org/infusion/framework/fss/css/fss-reset.css" type="text/css" media="screen" /> <link rel="stylesheet" href="lib/infusion/framework/fss/css/fss-reset-global.css" type="text/css" media="screen" />
<link rel="stylesheet" href="http://build.fluidproject.org/infusion/framework/fss/css/fss-layout.css" type="text/css" media="screen" /> <link rel="stylesheet" href="lib/infusion/framework/fss/css/fss-base-global.css" type="text/css" media="screen" />
<link rel="stylesheet" href="http://build.fluidproject.org/infusion/framework/fss/css/fss-text.css" type="text/css" media="screen" /> <link rel="stylesheet" href="lib/infusion/framework/fss/css/fss-layout.css" type="text/css" media="screen" />
<link rel="stylesheet" href="lib/infusion/framework/fss/css/fss-text.css" type="text/css" media="screen" />
<link rel="stylesheet" href="styles.css" media="screen" type="text/css" /> <link rel="stylesheet" href="styles.css" media="screen" type="text/css" />
</head> </head>
<body class="fl-font-verdana"> <body class="fl-font-verdana">
Expand Down
13 changes: 13 additions & 0 deletions lib/infusion/README.txt
@@ -0,0 +1,13 @@
This custom build of Infusion was built from an unreleased version of Infusion's master branch (d0f009b391d89a37fd2b4698a4bc7389b5473e6f) using the following command:

ant -lib lib/rhino customBuild -Dinclude="fss" -DnoMinify="true"


Additional Modifications:
=========================

Removed all unneeded files, and kept only the following
- fss-base-global.css
- fss-reset-global.css
- fss-layout.css
- fss-text.css
119 changes: 119 additions & 0 deletions lib/infusion/framework/fss/css/fss-base-global.css
@@ -0,0 +1,119 @@
/*
Based on YUI fonts and base
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2
*/

/* from fonts.css, part of YUI's CSS Foundation */

/**
* Percents could work for IE, but for backCompat purposes, we are using keywords.
* x-small is for IE6/7 quirks mode.
*/
body {}
table {font-size:inherit;font:100%;}
/**
* Bump up IE to get to 13px equivalent
*/
pre,code,kbd,samp,tt {font-family:monospace;*font-size:108%;line-height:100%;}

/* from base.css, part of YUI's CSS Foundation */
h1 {
/*18px via YUI Fonts CSS foundation*/
font-size:138.5%;
}
h2 {
/*16px via YUI Fonts CSS foundation*/
font-size:123.1%;
}
h3 {
/*14px via YUI Fonts CSS foundation*/
font-size:108%;
}
h1,h2,h3 {
/* top & bottom margin based on font size */
margin:1em 0;
}
h1,h2,h3,h4,h5,h6,strong {
/*bringing boldness back to headers and the strong element*/
font-weight:bold;
}
abbr,acronym {
/*indicating to users that more info is available */
border-bottom:1px dotted #000;
cursor:help;
}
em {
/*bringing italics back to the em element*/
font-style:italic;
}
blockquote,ul,ol,dl {
/*giving blockquotes and lists room to breath*/
margin:1em;
}
ol,ul,dl {
/*bringing lists on to the page with breathing room */
margin-left:2em;
}
ol li {
/*giving OL's LIs generated numbers*/
list-style: decimal outside;
}
ul li {
/*giving UL's LIs generated disc markers*/
list-style: disc outside;
}
dl dd {
/*giving UL's LIs generated numbers*/
margin-left:1em;
}
th,td {
/*borders and padding to make the table readable*/
border:1px solid #000;
padding:.5em;
}
th {
/*distinguishing table headers from data cells*/
font-weight:bold;
text-align:center;
}
caption {
/*coordinated margin to match cell's padding*/
margin-bottom:.5em;
/*centered so it doesn't blend in to other content*/
text-align:center;
}
p,fieldset,table,pre {
/*so things don't run into each other*/
margin-bottom:1em;
}
/* setting a consistent width, 160px;
control of type=file still not possible */
input[type=text],input[type=password],textarea{width:12.25em;*width:11.9em;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}

/*************************************************************************************/
/* Prevent unecessary scrollbars in IE */
/* Put font data on the HTML element to allow overrides on the body */
/* IE6 cant zoom text properly, so text size reset is a rough approximation */
html {overflow:auto; font:13px/1.231 arial,helvetica,clean,sans-serif; *font-size:small;}

/*to enable resizing for IE*/
input,textarea,select{
*font-size:100%;
*font-family:sans-serif;
}

/* IE rendering fix for extra padding on buttons. Padding can now be set safely */
input {
*overflow:visible; *padding:0 1em;
}

/* custom default focus indicator - theme overwrites this */
.fl-focus:focus,
.fl-focus :focus{
outline: 2px solid black;
}

0 comments on commit 7390fce

Please sign in to comment.