compass 0.10.6 → 0.11.alpha.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +6 -6
- data/VERSION.yml +3 -3
- data/examples/blueprint_default/parts/forms.html.haml +8 -0
- data/examples/css3/src/main.scss +4 -0
- data/features/command_line.feature +20 -3
- data/features/step_definitions/command_line_steps.rb +7 -1
- data/frameworks/blueprint/stylesheets/_blueprint.scss +2 -12
- data/frameworks/blueprint/stylesheets/blueprint/_buttons.scss +34 -34
- data/frameworks/blueprint/stylesheets/blueprint/_colors.scss +32 -28
- data/frameworks/blueprint/stylesheets/blueprint/_debug.scss +3 -3
- data/frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss +2 -2
- data/frameworks/blueprint/stylesheets/blueprint/_form.scss +14 -16
- data/frameworks/blueprint/stylesheets/blueprint/_grid.scss +39 -37
- data/frameworks/blueprint/stylesheets/blueprint/_ie.scss +17 -15
- data/frameworks/blueprint/stylesheets/blueprint/_interaction.scss +53 -44
- data/frameworks/blueprint/stylesheets/blueprint/_liquid.scss +26 -26
- data/frameworks/blueprint/stylesheets/blueprint/_print.scss +13 -20
- data/frameworks/blueprint/stylesheets/blueprint/_rtl.scss +32 -44
- data/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss +10 -12
- data/frameworks/blueprint/stylesheets/blueprint/_typography.scss +18 -32
- data/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss +50 -25
- data/frameworks/compass/stylesheets/compass/_css3.scss +1 -15
- data/frameworks/compass/stylesheets/compass/_layout.scss +1 -0
- data/frameworks/compass/stylesheets/compass/_support.scss +4 -0
- data/frameworks/compass/stylesheets/compass/css3/_box-shadow-v2.scss +98 -0
- data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +7 -40
- data/frameworks/compass/stylesheets/compass/css3/_box.scss +0 -1
- data/frameworks/compass/stylesheets/compass/css3/_columns.scss +23 -18
- data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +2 -3
- data/frameworks/compass/stylesheets/compass/css3/_gradient.scss +66 -42
- data/frameworks/compass/stylesheets/compass/css3/_images.scss +52 -0
- data/frameworks/compass/stylesheets/compass/css3/_shared.scss +1 -1
- data/frameworks/compass/stylesheets/compass/css3/_text-shadow-v2.scss +72 -0
- data/frameworks/compass/stylesheets/compass/css3/_transform-v2.scss +584 -0
- data/frameworks/compass/stylesheets/compass/css3/_version-1.scss +16 -0
- data/frameworks/compass/stylesheets/compass/css3/_version-2.scss +16 -0
- data/frameworks/compass/stylesheets/compass/layout/_stretching.scss +24 -0
- data/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +4 -4
- data/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal-list.scss +5 -1
- data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss +7 -1
- data/frameworks/compass/stylesheets/compass/utilities/tables/_borders.scss +7 -1
- data/lib/compass/actions.rb +1 -1
- data/lib/compass/app_integration/rails/actionpack3/railtie.rb +18 -0
- data/lib/compass/app_integration/rails/configuration_defaults.rb +22 -0
- data/lib/compass/app_integration/rails/installer.rb +77 -34
- data/lib/compass/app_integration/rails/runtime.rb +3 -0
- data/lib/compass/app_integration/stand_alone/configuration_defaults.rb +1 -1
- data/lib/compass/commands/print_version.rb +1 -1
- data/lib/compass/commands/update_project.rb +2 -2
- data/lib/compass/commands/write_configuration.rb +10 -1
- data/lib/compass/compiler.rb +1 -5
- data/lib/compass/configuration.rb +2 -1
- data/lib/compass/configuration/adapters.rb +2 -1
- data/lib/compass/configuration/comments.rb +34 -1
- data/lib/compass/configuration/helpers.rb +3 -7
- data/lib/compass/configuration/paths.rb +1 -1
- data/lib/compass/exec/project_options_parser.rb +4 -0
- data/lib/compass/installers/base.rb +1 -1
- data/lib/compass/logger.rb +4 -2
- data/lib/compass/sass_extensions/functions.rb +6 -3
- data/lib/compass/sass_extensions/functions/colors.rb +58 -0
- data/lib/compass/sass_extensions/functions/constants.rb +1 -1
- data/lib/compass/sass_extensions/functions/display.rb +4 -2
- data/lib/compass/sass_extensions/functions/gradient_support.rb +343 -25
- data/lib/compass/sass_extensions/functions/if.rb +9 -0
- data/lib/compass/sass_extensions/functions/inline_image.rb +9 -3
- data/lib/compass/sass_extensions/functions/trig.rb +27 -0
- data/lib/compass/version.rb +6 -1
- data/lib/rails/init.rb +2 -0
- data/test/command_line_test.rb +6 -9
- data/test/compass_test.rb +2 -0
- data/test/configuration_test.rb +20 -0
- data/test/fixtures/stylesheets/blueprint/css/ie.css +16 -0
- data/test/fixtures/stylesheets/blueprint/css/screen.css +37 -34
- data/test/fixtures/stylesheets/blueprint/css/single-imports/colors.css +5 -5
- data/test/fixtures/stylesheets/blueprint/css/single-imports/form.css +7 -5
- data/test/fixtures/stylesheets/blueprint/css/single-imports/grid.css +5 -5
- data/test/fixtures/stylesheets/blueprint/css/single-imports/ie.css +16 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css +12 -9
- data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +23 -64
- data/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +13 -37
- data/test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css +5 -5
- data/test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css +4 -4
- data/test/fixtures/stylesheets/blueprint/css/single-imports/typography.css +12 -15
- data/test/fixtures/stylesheets/compass/config.rb +2 -0
- data/test/fixtures/stylesheets/compass/css/box.css +6 -13
- data/test/fixtures/stylesheets/compass/css/box_shadow.css +17 -0
- data/test/fixtures/stylesheets/compass/css/columns.css +47 -0
- data/test/fixtures/stylesheets/compass/css/gradients.css +240 -25
- data/test/fixtures/stylesheets/compass/css/lists.css +12 -4
- data/test/fixtures/stylesheets/compass/css/print.css +1 -1
- data/test/fixtures/stylesheets/compass/css/reset.css +2 -2
- data/test/fixtures/stylesheets/compass/css/stretching.css +66 -0
- data/test/fixtures/stylesheets/compass/css/transform.css +305 -0
- data/test/fixtures/stylesheets/compass/sass/box_shadow.scss +5 -0
- data/test/fixtures/stylesheets/compass/sass/columns.scss +10 -0
- data/test/fixtures/stylesheets/compass/sass/gradients.sass +151 -19
- data/test/fixtures/stylesheets/compass/sass/stretching.sass +34 -0
- data/test/fixtures/stylesheets/compass/sass/transform.scss +87 -0
- data/test/sass_extensions_test.rb +44 -0
- metadata +42 -96
- data/frameworks/_blueprint_deprecated_imports/stylesheets/_blueprint.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_buttons.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_colors.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_debug.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_fancy_type.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_form.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_grid.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_ie.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_interaction.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_link_icons.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_liquid.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_print.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_reset.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_rtl.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_scaffolding.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_screen.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_typography.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/_utilities.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_buttons.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_colors.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_debug.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_fancy_type.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_form.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_grid.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_interaction.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_link_icons.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_liquid.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_reset.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_rtl.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_scaffolding.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_typography.sass +0 -2
- data/frameworks/_blueprint_deprecated_imports/stylesheets/blueprint/modules/_utilities.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/_compass.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/_css3.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/_layout.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/_misc.sass +0 -1
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/_misc.scss +0 -22
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/_reset.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/_utilities.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_background_clip.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_background_origin.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_background_size.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_border_radius.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_box_shadow.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_box_sizing.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_columns.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_font_face.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_gradient.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_inline_block.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_opacity.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_text_shadow.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_transform.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/css3/_transition.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/layout/_sticky_footer.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/_general.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/_links.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/_lists.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/_print.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/_sprites.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/_tables.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/_text.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/general/_clearfix.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/general/_float.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/general/_hacks.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/general/_min.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/general/_reset.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/general/_tabs.sass +0 -0
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/general/_tag_cloud.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/links/_hover_link.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/links/_link_colors.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/links/_unstyled_link.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/lists/_bullets.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/lists/_horizontal_list.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/lists/_inline_list.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/sprites/_sprite_img.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/tables/_borders.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/tables/_scaffolding.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/text/_ellipsis.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/text/_nowrap.sass +0 -2
- data/frameworks/_compass_deprecated_imports/stylesheets/compass/utilities/text/_replacement.sass +0 -2
@@ -4,14 +4,14 @@
|
|
4
4
|
overflow: hidden;
|
5
5
|
*zoom: 1; }
|
6
6
|
|
7
|
-
.column,
|
7
|
+
.column, .span-1, .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-9, .span-10, .span-11, .span-12, .span-13, .span-14, .span-15, .span-16, .span-17, .span-18, .span-19, .span-20, .span-21, .span-22, .span-23, .span-24 {
|
8
8
|
display: inline;
|
9
9
|
float: left;
|
10
10
|
margin-right: 10px; }
|
11
|
-
* html .column, * html
|
11
|
+
* html .column, * html .span-1, * html .span-2, * html .span-3, * html .span-4, * html .span-5, * html .span-6, * html .span-7, * html .span-8, * html .span-9, * html .span-10, * html .span-11, * html .span-12, * html .span-13, * html .span-14, * html .span-15, * html .span-16, * html .span-17, * html .span-18, * html .span-19, * html .span-20, * html .span-21, * html .span-22, * html .span-23, * html .span-24 {
|
12
12
|
overflow-x: hidden; }
|
13
13
|
|
14
|
-
.last
|
14
|
+
.last {
|
15
15
|
margin-right: 0; }
|
16
16
|
|
17
17
|
.span-1 {
|
@@ -83,7 +83,7 @@
|
|
83
83
|
.span-23 {
|
84
84
|
width: 910px; }
|
85
85
|
|
86
|
-
.span-24
|
86
|
+
.span-24 {
|
87
87
|
width: 950px;
|
88
88
|
margin: 0; }
|
89
89
|
|
@@ -353,7 +353,7 @@ input.span-24, textarea.span-24, select.span-24 {
|
|
353
353
|
|
354
354
|
.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {
|
355
355
|
display: inline;
|
356
|
-
float:
|
356
|
+
float: left;
|
357
357
|
position: relative; }
|
358
358
|
|
359
359
|
.push-1 {
|
@@ -24,9 +24,25 @@ img {
|
|
24
24
|
fieldset {
|
25
25
|
padding-top: 0; }
|
26
26
|
|
27
|
+
legend {
|
28
|
+
margin-top: -0.2em;
|
29
|
+
margin-bottom: 1em;
|
30
|
+
margin-left: -0.5em; }
|
31
|
+
|
32
|
+
fieldset, #IE8#HACK {
|
33
|
+
padding-top: 1.4em; }
|
34
|
+
|
35
|
+
legend, #IE8#HACK {
|
36
|
+
margin-top: 0;
|
37
|
+
margin-bottom: 0; }
|
38
|
+
|
27
39
|
textarea {
|
28
40
|
overflow: auto; }
|
29
41
|
|
42
|
+
label {
|
43
|
+
position: relative;
|
44
|
+
top: -0.25em; }
|
45
|
+
|
30
46
|
input.text {
|
31
47
|
margin: 0.5em 0;
|
32
48
|
background-color: white;
|
@@ -1,17 +1,16 @@
|
|
1
|
-
.error {
|
1
|
+
.feedback, .error, .alert, .notice, .success, .info {
|
2
2
|
padding: 0.8em;
|
3
3
|
margin-bottom: 1em;
|
4
|
-
border: 2px solid #dddddd;
|
4
|
+
border: 2px solid #dddddd; }
|
5
|
+
|
6
|
+
.error, .alert {
|
5
7
|
background: #fbe3e4;
|
6
8
|
color: #8a1f11;
|
7
9
|
border-color: #fbc2c4; }
|
8
|
-
.error a {
|
10
|
+
.error a, .alert a {
|
9
11
|
color: #8a1f11; }
|
10
12
|
|
11
13
|
.notice {
|
12
|
-
padding: 0.8em;
|
13
|
-
margin-bottom: 1em;
|
14
|
-
border: 2px solid #dddddd;
|
15
14
|
background: #fff6bf;
|
16
15
|
color: #514721;
|
17
16
|
border-color: #ffd324; }
|
@@ -19,15 +18,19 @@
|
|
19
18
|
color: #514721; }
|
20
19
|
|
21
20
|
.success {
|
22
|
-
padding: 0.8em;
|
23
|
-
margin-bottom: 1em;
|
24
|
-
border: 2px solid #dddddd;
|
25
21
|
background: #e6efc2;
|
26
22
|
color: #264409;
|
27
23
|
border-color: #c6d880; }
|
28
24
|
.success a {
|
29
25
|
color: #264409; }
|
30
26
|
|
27
|
+
.info {
|
28
|
+
background: #d5edf8;
|
29
|
+
color: #205791;
|
30
|
+
border-color: #92cae4; }
|
31
|
+
.info a {
|
32
|
+
color: #205791; }
|
33
|
+
|
31
34
|
.hide {
|
32
35
|
display: none; }
|
33
36
|
|
@@ -1,19 +1,15 @@
|
|
1
|
-
html
|
1
|
+
html {
|
2
2
|
margin: 0;
|
3
3
|
padding: 0;
|
4
|
-
border: 0;
|
5
|
-
font-weight: inherit;
|
6
|
-
font-style: inherit;
|
7
|
-
font-size: 100%;
|
8
|
-
font-family: inherit;
|
9
|
-
vertical-align: baseline; }
|
4
|
+
border: 0; }
|
10
5
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
6
|
+
.bp-reset-element, body, h1, h2, h3, h4, h5, h6, article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote, q, th, td, caption, table, body.testing h1, body.testing h2, body.testing h3, body.testing h4, body.testing h5, body.testing h6, body.testing article, body.testing aside, body.testing dialog, body.testing figure, body.testing footer, body.testing header, body.testing hgroup, body.testing nav, body.testing section, body.testing blockquote, body.testing q, body.testing th, body.testing td, body.testing caption, body.testing table,
|
7
|
+
div, span, object, iframe, p,
|
8
|
+
pre, a, abbr, acronym, address,
|
9
|
+
code, del, dfn, em, img,
|
10
|
+
dl, dt, dd, ol, ul, li, fieldset,
|
11
|
+
form, label, legend,
|
12
|
+
caption, tbody, tfoot, thead, tr {
|
17
13
|
margin: 0;
|
18
14
|
padding: 0;
|
19
15
|
border: 0;
|
@@ -23,41 +19,21 @@ dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, th
|
|
23
19
|
font-family: inherit;
|
24
20
|
vertical-align: baseline; }
|
25
21
|
|
22
|
+
article, aside, dialog, figure, footer, header, hgroup, nav, section {
|
23
|
+
display: block; }
|
24
|
+
|
26
25
|
blockquote, q {
|
27
|
-
margin: 0;
|
28
|
-
padding: 0;
|
29
|
-
border: 0;
|
30
|
-
font-weight: inherit;
|
31
|
-
font-style: inherit;
|
32
|
-
font-size: 100%;
|
33
|
-
font-family: inherit;
|
34
|
-
vertical-align: baseline;
|
35
26
|
quotes: "" ""; }
|
36
27
|
blockquote:before, blockquote:after, q:before, q:after {
|
37
28
|
content: ""; }
|
38
29
|
|
39
30
|
th, td, caption {
|
40
|
-
|
41
|
-
padding: 0;
|
42
|
-
border: 0;
|
43
|
-
font-weight: inherit;
|
44
|
-
font-style: inherit;
|
45
|
-
font-size: 100%;
|
46
|
-
font-family: inherit;
|
47
|
-
vertical-align: baseline;
|
31
|
+
float: none !important;
|
48
32
|
text-align: left;
|
49
33
|
font-weight: normal;
|
50
34
|
vertical-align: middle; }
|
51
35
|
|
52
36
|
table {
|
53
|
-
margin: 0;
|
54
|
-
padding: 0;
|
55
|
-
border: 0;
|
56
|
-
font-weight: inherit;
|
57
|
-
font-style: inherit;
|
58
|
-
font-size: 100%;
|
59
|
-
font-family: inherit;
|
60
|
-
vertical-align: baseline;
|
61
37
|
border-collapse: separate;
|
62
38
|
border-spacing: 0;
|
63
39
|
vertical-align: middle; }
|
@@ -65,9 +41,13 @@ table {
|
|
65
41
|
a img {
|
66
42
|
border: none; }
|
67
43
|
|
68
|
-
body.testing
|
69
|
-
body.testing
|
70
|
-
body.testing
|
44
|
+
body.testing .bp-reset-element, body.testing body, body.testing h1, body.testing h2, body.testing h3, body.testing h4, body.testing h5, body.testing h6, body.testing article, body.testing aside, body.testing dialog, body.testing figure, body.testing footer, body.testing header, body.testing hgroup, body.testing nav, body.testing section, body.testing blockquote, body.testing q, body.testing th, body.testing td, body.testing caption, body.testing table, body.testing h1, body.testing h2, body.testing h3, body.testing h4, body.testing h5, body.testing h6, body.testing article, body.testing aside, body.testing dialog, body.testing figure, body.testing footer, body.testing header, body.testing hgroup, body.testing nav, body.testing section, body.testing blockquote, body.testing q, body.testing th, body.testing td, body.testing caption, body.testing table,
|
45
|
+
body.testing div, body.testing span, body.testing object, body.testing iframe, body.testing p,
|
46
|
+
body.testing pre, body.testing a, body.testing abbr, body.testing acronym, body.testing address,
|
47
|
+
body.testing code, body.testing del, body.testing dfn, body.testing em, body.testing img,
|
48
|
+
body.testing dl, body.testing dt, body.testing dd, body.testing ol, body.testing ul, body.testing li, body.testing fieldset,
|
49
|
+
body.testing form, body.testing label, body.testing legend,
|
50
|
+
body.testing caption, body.testing tbody, body.testing tfoot, body.testing thead, body.testing tr {
|
71
51
|
margin: 0;
|
72
52
|
padding: 0;
|
73
53
|
border: 0;
|
@@ -76,39 +56,18 @@ body.testing dl, body.testing dt, body.testing dd, body.testing ol, body.testing
|
|
76
56
|
font-size: 100%;
|
77
57
|
font-family: inherit;
|
78
58
|
vertical-align: baseline; }
|
59
|
+
body.testing article, body.testing aside, body.testing dialog, body.testing figure, body.testing footer, body.testing header, body.testing hgroup, body.testing nav, body.testing section {
|
60
|
+
display: block; }
|
79
61
|
body.testing blockquote, body.testing q {
|
80
|
-
margin: 0;
|
81
|
-
padding: 0;
|
82
|
-
border: 0;
|
83
|
-
font-weight: inherit;
|
84
|
-
font-style: inherit;
|
85
|
-
font-size: 100%;
|
86
|
-
font-family: inherit;
|
87
|
-
vertical-align: baseline;
|
88
62
|
quotes: "" ""; }
|
89
63
|
body.testing blockquote:before, body.testing blockquote:after, body.testing q:before, body.testing q:after {
|
90
64
|
content: ""; }
|
91
65
|
body.testing th, body.testing td, body.testing caption {
|
92
|
-
|
93
|
-
padding: 0;
|
94
|
-
border: 0;
|
95
|
-
font-weight: inherit;
|
96
|
-
font-style: inherit;
|
97
|
-
font-size: 100%;
|
98
|
-
font-family: inherit;
|
99
|
-
vertical-align: baseline;
|
66
|
+
float: none !important;
|
100
67
|
text-align: left;
|
101
68
|
font-weight: normal;
|
102
69
|
vertical-align: middle; }
|
103
70
|
body.testing table {
|
104
|
-
margin: 0;
|
105
|
-
padding: 0;
|
106
|
-
border: 0;
|
107
|
-
font-weight: inherit;
|
108
|
-
font-style: inherit;
|
109
|
-
font-size: 100%;
|
110
|
-
font-family: inherit;
|
111
|
-
vertical-align: baseline;
|
112
71
|
border-collapse: separate;
|
113
72
|
border-spacing: 0;
|
114
73
|
vertical-align: middle; }
|
@@ -1,19 +1,15 @@
|
|
1
|
-
html
|
1
|
+
html {
|
2
2
|
margin: 0;
|
3
3
|
padding: 0;
|
4
|
-
border: 0;
|
5
|
-
font-weight: inherit;
|
6
|
-
font-style: inherit;
|
7
|
-
font-size: 100%;
|
8
|
-
font-family: inherit;
|
9
|
-
vertical-align: baseline; }
|
10
|
-
|
11
|
-
html {
|
12
|
-
font-size: 100.01%; }
|
4
|
+
border: 0; }
|
13
5
|
|
14
|
-
|
15
|
-
|
16
|
-
|
6
|
+
.bp-reset-element, body, h1, h2, h3, h4, h5, h6, article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote, q, th, td, caption, table,
|
7
|
+
div, span, object, iframe, p,
|
8
|
+
pre, a, abbr, acronym, address,
|
9
|
+
code, del, dfn, em, img,
|
10
|
+
dl, dt, dd, ol, ul, li, fieldset,
|
11
|
+
form, label, legend,
|
12
|
+
caption, tbody, tfoot, thead, tr {
|
17
13
|
margin: 0;
|
18
14
|
padding: 0;
|
19
15
|
border: 0;
|
@@ -23,41 +19,21 @@ dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, th
|
|
23
19
|
font-family: inherit;
|
24
20
|
vertical-align: baseline; }
|
25
21
|
|
22
|
+
article, aside, dialog, figure, footer, header, hgroup, nav, section {
|
23
|
+
display: block; }
|
24
|
+
|
26
25
|
blockquote, q {
|
27
|
-
margin: 0;
|
28
|
-
padding: 0;
|
29
|
-
border: 0;
|
30
|
-
font-weight: inherit;
|
31
|
-
font-style: inherit;
|
32
|
-
font-size: 100%;
|
33
|
-
font-family: inherit;
|
34
|
-
vertical-align: baseline;
|
35
26
|
quotes: "" ""; }
|
36
27
|
blockquote:before, blockquote:after, q:before, q:after {
|
37
28
|
content: ""; }
|
38
29
|
|
39
30
|
th, td, caption {
|
40
|
-
|
41
|
-
padding: 0;
|
42
|
-
border: 0;
|
43
|
-
font-weight: inherit;
|
44
|
-
font-style: inherit;
|
45
|
-
font-size: 100%;
|
46
|
-
font-family: inherit;
|
47
|
-
vertical-align: baseline;
|
31
|
+
float: none !important;
|
48
32
|
text-align: left;
|
49
33
|
font-weight: normal;
|
50
34
|
vertical-align: middle; }
|
51
35
|
|
52
36
|
table {
|
53
|
-
margin: 0;
|
54
|
-
padding: 0;
|
55
|
-
border: 0;
|
56
|
-
font-weight: inherit;
|
57
|
-
font-style: inherit;
|
58
|
-
font-size: 100%;
|
59
|
-
font-family: inherit;
|
60
|
-
vertical-align: baseline;
|
61
37
|
border-collapse: separate;
|
62
38
|
border-spacing: 0;
|
63
39
|
vertical-align: middle; }
|
@@ -5,15 +5,15 @@
|
|
5
5
|
overflow: hidden;
|
6
6
|
*zoom: 1; }
|
7
7
|
|
8
|
-
.column,
|
8
|
+
.column, .span-1, .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-9, .span-10, .span-11, .span-12, .span-13, .span-14, .span-15, .span-16, .span-17, .span-18, .span-19, .span-20, .span-21, .span-22, .span-23, .span-24 {
|
9
9
|
display: inline;
|
10
10
|
float: right;
|
11
11
|
margin-left: 10px;
|
12
12
|
text-align: right; }
|
13
|
-
* html .column, * html
|
13
|
+
* html .column, * html .span-1, * html .span-2, * html .span-3, * html .span-4, * html .span-5, * html .span-6, * html .span-7, * html .span-8, * html .span-9, * html .span-10, * html .span-11, * html .span-12, * html .span-13, * html .span-14, * html .span-15, * html .span-16, * html .span-17, * html .span-18, * html .span-19, * html .span-20, * html .span-21, * html .span-22, * html .span-23, * html .span-24 {
|
14
14
|
overflow-x: hidden; }
|
15
15
|
|
16
|
-
.last
|
16
|
+
.last {
|
17
17
|
margin-left: 0; }
|
18
18
|
|
19
19
|
.span-1 {
|
@@ -85,7 +85,7 @@
|
|
85
85
|
.span-23 {
|
86
86
|
width: 910px; }
|
87
87
|
|
88
|
-
.span-24
|
88
|
+
.span-24 {
|
89
89
|
width: 950px;
|
90
90
|
margin: 0; }
|
91
91
|
|
@@ -355,7 +355,7 @@ input.span-24, textarea.span-24, select.span-24 {
|
|
355
355
|
|
356
356
|
.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {
|
357
357
|
display: inline;
|
358
|
-
float:
|
358
|
+
float: left;
|
359
359
|
position: relative; }
|
360
360
|
|
361
361
|
.push-1 {
|
@@ -3,15 +3,15 @@
|
|
3
3
|
margin-bottom: 1.5em;
|
4
4
|
background: #e5ecf9; }
|
5
5
|
|
6
|
-
|
6
|
+
.border {
|
7
7
|
padding-right: 4px;
|
8
8
|
margin-right: 5px;
|
9
|
-
border-right: 1px solid #
|
9
|
+
border-right: 1px solid #dddddd; }
|
10
10
|
|
11
|
-
|
11
|
+
.colborder {
|
12
12
|
padding-right: 24px;
|
13
13
|
margin-right: 25px;
|
14
|
-
border-right: 1px solid #
|
14
|
+
border-right: 1px solid #dddddd; }
|
15
15
|
|
16
16
|
hr {
|
17
17
|
background: #dddddd;
|
@@ -40,12 +40,12 @@ h6 {
|
|
40
40
|
|
41
41
|
p {
|
42
42
|
margin: 0 0 1.5em; }
|
43
|
-
p
|
43
|
+
p .left {
|
44
44
|
display: inline;
|
45
45
|
float: left;
|
46
46
|
margin: 1.5em 1.5em 1.5em 0;
|
47
47
|
padding: 0; }
|
48
|
-
p
|
48
|
+
p .right {
|
49
49
|
display: inline;
|
50
50
|
float: right;
|
51
51
|
margin: 1.5em 0 1.5em 1.5em;
|
@@ -53,31 +53,27 @@ p {
|
|
53
53
|
|
54
54
|
a {
|
55
55
|
text-decoration: underline;
|
56
|
-
color: #
|
56
|
+
color: #0066cc; }
|
57
57
|
a:visited {
|
58
|
-
color: #
|
58
|
+
color: #004c99; }
|
59
59
|
a:focus {
|
60
|
-
color:
|
60
|
+
color: #0099ff; }
|
61
61
|
a:hover {
|
62
|
-
color:
|
62
|
+
color: #0099ff; }
|
63
63
|
a:active {
|
64
|
-
color: #
|
64
|
+
color: #bf00ff; }
|
65
65
|
|
66
66
|
blockquote {
|
67
67
|
margin: 1.5em;
|
68
68
|
color: #666666;
|
69
69
|
font-style: italic; }
|
70
70
|
|
71
|
-
strong {
|
71
|
+
strong, dfn {
|
72
72
|
font-weight: bold; }
|
73
73
|
|
74
|
-
em {
|
74
|
+
em, dfn {
|
75
75
|
font-style: italic; }
|
76
76
|
|
77
|
-
dfn {
|
78
|
-
font-style: italic;
|
79
|
-
font-weight: bold; }
|
80
|
-
|
81
77
|
sup, sub {
|
82
78
|
line-height: 0; }
|
83
79
|
|
@@ -104,7 +100,7 @@ li ul, li ol {
|
|
104
100
|
|
105
101
|
ul, ol {
|
106
102
|
margin: 0 1.5em 1.5em 0;
|
107
|
-
padding-left:
|
103
|
+
padding-left: 1.5em; }
|
108
104
|
|
109
105
|
ul {
|
110
106
|
list-style-type: disc; }
|
@@ -133,7 +129,8 @@ thead th {
|
|
133
129
|
th, td, caption {
|
134
130
|
padding: 4px 10px 4px 5px; }
|
135
131
|
|
136
|
-
tr
|
132
|
+
table.striped tr:nth-child(even) td,
|
133
|
+
table tr.even td {
|
137
134
|
background: #e5ecf9; }
|
138
135
|
|
139
136
|
tfoot {
|