archetype 0.0.1.pre.3.90263a7 → 0.0.1.pre.3.811928f
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +1 -24
- data/LICENSE +1 -1
- data/README.md +1 -1
- data/VERSION.yml +1 -1
- data/lib/archetype.rb +0 -4
- data/lib/archetype/functions/hash.rb +12 -28
- data/lib/archetype/functions/helpers.rb +13 -56
- data/lib/archetype/functions/styleguide_memoizer.rb +1 -9
- data/lib/archetype/sass_extensions.rb +0 -1
- data/lib/archetype/sass_extensions/functions/lists.rb +40 -34
- data/lib/archetype/sass_extensions/functions/locale.rb +16 -32
- data/lib/archetype/sass_extensions/functions/styleguide.rb +37 -115
- data/lib/archetype/sass_extensions/functions/ui.rb +2 -3
- data/lib/archetype/sass_extensions/functions/version.rb +6 -11
- data/lib/archetype/version.rb +12 -19
- data/stylesheets/archetype/_base.scss +0 -3
- data/stylesheets/archetype/_config.scss +5 -22
- data/stylesheets/archetype/_hacks.scss +21 -62
- data/stylesheets/archetype/_ui.scss +11 -56
- data/stylesheets/archetype/base/_h5bp.scss +12 -12
- data/stylesheets/archetype/base/_normalize.scss +139 -178
- data/stylesheets/archetype/styleguide/_helpers.scss +4 -1
- data/stylesheets/archetype/styleguide/components/_alerts.scss +1 -1
- data/stylesheets/archetype/styleguide/components/_buttons.scss +6 -7
- data/stylesheets/archetype/styleguide/components/_closes.scss +2 -2
- data/stylesheets/archetype/util/_styles.scss +7 -45
- data/stylesheets/archetype/util/_targeting.scss +0 -2
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders-s7889ccc8c1.png +0 -0
- data/test/fixtures/stylesheets/archetype/config.rb +0 -2
- data/test/fixtures/stylesheets/archetype/expected/hacks/ie_pseudo.css +3 -3
- data/test/fixtures/stylesheets/archetype/expected/styleguide/buttons.css +18 -110
- data/test/fixtures/stylesheets/archetype/expected/styleguide/selective_state.css +0 -3
- data/test/fixtures/stylesheets/archetype/expected/ui/glyph_icon.css +2 -116
- data/test/fixtures/stylesheets/archetype/expected/utilities/targeting/target-browser.css +0 -5
- data/test/fixtures/stylesheets/archetype/source/styleguide/buttons.scss +1 -5
- data/test/fixtures/stylesheets/archetype/source/styleguide/fallback_styles.scss +1 -1
- data/test/fixtures/stylesheets/archetype/source/styleguide/nested_styleguides.scss +1 -1
- data/test/fixtures/stylesheets/archetype/source/styleguide/selective_state.scss +1 -1
- data/test/fixtures/stylesheets/archetype/source/ui/glyph_icon.scss +0 -30
- data/test/fixtures/stylesheets/archetype/source/utilities/targeting/target-browser.scss +1 -8
- data/test/helpers/test_case.rb +2 -2
- data/test/integrations/archetype_test.rb +1 -3
- data/test/units/sass_extensions_test.rb +25 -18
- metadata +23 -80
- checksums.yaml +0 -7
- data/bin/archetype +0 -3
- data/lib/archetype/actions/help.rb +0 -16
- data/lib/archetype/actions/theme.rb +0 -73
- data/lib/archetype/executor.rb +0 -27
- data/lib/archetype/sass_extensions/monkey_patches.rb +0 -3
- data/lib/archetype/sass_extensions/monkey_patches/handle_include_loop.rb +0 -41
- data/templates/_theme/_components.scss +0 -3
- data/templates/_theme/_config.scss +0 -1
- data/templates/_theme/_core.scss +0 -13
- data/templates/_theme/_helpers.scss +0 -1
- data/templates/_theme/_primitives.scss +0 -3
- data/templates/_theme/components/README +0 -1
- data/templates/_theme/primitives/README +0 -1
- data/test/fixtures/stylesheets/archetype/expected/base.css +0 -349
- data/test/fixtures/stylesheets/archetype/expected/hacks/transparent_focusable.css +0 -4
- data/test/fixtures/stylesheets/archetype/expected/locale.css +0 -23
- data/test/fixtures/stylesheets/archetype/expected/styleguide/alerts.css +0 -675
- data/test/fixtures/stylesheets/archetype/expected/styleguide/drop.css +0 -63
- data/test/fixtures/stylesheets/archetype/expected/styleguide/extend.css +0 -7
- data/test/fixtures/stylesheets/archetype/expected/styleguide/invalid_structures.css +0 -21
- data/test/fixtures/stylesheets/archetype/expected/styleguide/multi_value.css +0 -13
- data/test/fixtures/stylesheets/archetype/expected/utilities/associative.css +0 -9
- data/test/fixtures/stylesheets/archetype/expected/utilities/custom_output_styler.css +0 -8
- data/test/fixtures/stylesheets/archetype/source/base.scss +0 -3
- data/test/fixtures/stylesheets/archetype/source/hacks/transparent_focusable.scss +0 -5
- data/test/fixtures/stylesheets/archetype/source/locale.scss +0 -43
- data/test/fixtures/stylesheets/archetype/source/styleguide/alerts.scss +0 -21
- data/test/fixtures/stylesheets/archetype/source/styleguide/drop.scss +0 -101
- data/test/fixtures/stylesheets/archetype/source/styleguide/extend.scss +0 -23
- data/test/fixtures/stylesheets/archetype/source/styleguide/invalid_structures.scss +0 -85
- data/test/fixtures/stylesheets/archetype/source/styleguide/multi_value.scss +0 -18
- data/test/fixtures/stylesheets/archetype/source/utilities/associative.scss +0 -24
- data/test/fixtures/stylesheets/archetype/source/utilities/custom_output_styler.scss +0 -21
@@ -77,7 +77,10 @@
|
|
77
77
|
// @param $type {List} the glpyh data
|
78
78
|
// @return {List} the parameters needed for glyph-icon()
|
79
79
|
@function _styleguideGetAlertGlyph($type: $CONFIG_GLYPH_ALERT_NOTIFY) {
|
80
|
-
|
80
|
+
$offset: _styleguideGetAlertGlyphOffset($type);
|
81
|
+
$top: nth($offset, 1);
|
82
|
+
$left: nth($offset, 2);
|
83
|
+
@return (nth($type, 1), nth($type, 2), nth($type, 3), before, 'position:absolute;line-height:1;top:#{$top};left:#{$left};')
|
81
84
|
}
|
82
85
|
|
83
86
|
|
@@ -23,7 +23,7 @@ $a-blackhole: styleguide-add-component($STYLEGUIDE_ALERTS_ID, $STYLEGUIDE_ALERTS
|
|
23
23
|
padding $CONFIG_DIM_ALERTS_SPACING,
|
24
24
|
glyph-icon _styleguideGetAlertGlyph($CONFIG_GLYPH_ALERT_NOTIFY),
|
25
25
|
(selectors, (
|
26
|
-
(
|
26
|
+
('&:before', (
|
27
27
|
position absolute,
|
28
28
|
top nth(_styleguideGetAlertGlyphOffset($CONFIG_GLYPH_ALERT_NOTIFY), 1),
|
29
29
|
left nth(_styleguideGetAlertGlyphOffset($CONFIG_GLYPH_ALERT_NOTIFY), 2),
|
@@ -15,7 +15,6 @@ $a-blackhole: styleguide-add-component($STYLEGUIDE_BUTTONS_ID, $STYLEGUIDE_BUTT
|
|
15
15
|
margin 0,
|
16
16
|
overflow visible,
|
17
17
|
text-decoration (none !important),
|
18
|
-
text-align center,
|
19
18
|
width auto,
|
20
19
|
text-shadow $CONFIG_SHADOW_BUTTON_TEXT,
|
21
20
|
// sizing
|
@@ -112,7 +111,6 @@ $a-blackhole: styleguide-add-component($STYLEGUIDE_BUTTONS_ID, $STYLEGUIDE_BUTT
|
|
112
111
|
)),
|
113
112
|
// IMPORTANCE in CONTEXTS
|
114
113
|
((primary in-dark), (
|
115
|
-
inherit (in-dark),
|
116
114
|
(states, (
|
117
115
|
(hover, (
|
118
116
|
background-color $CONFIG_COLOR_BG_BUTTON_PRIMARY_DARK_HOVER,
|
@@ -120,10 +118,10 @@ $a-blackhole: styleguide-add-component($STYLEGUIDE_BUTTONS_ID, $STYLEGUIDE_BUTT
|
|
120
118
|
background-image $CONFIG_GRADIENT_BUTTON_PRIMARY_DARK_HOVER
|
121
119
|
)),
|
122
120
|
nil
|
123
|
-
))
|
121
|
+
)),
|
122
|
+
nil
|
124
123
|
)),
|
125
124
|
((secondary in-dark), (
|
126
|
-
inherit (in-dark),
|
127
125
|
(states, (
|
128
126
|
(hover, (
|
129
127
|
background-color $CONFIG_COLOR_BG_BUTTON_SECONDARY_DARK_HOVER,
|
@@ -131,10 +129,10 @@ $a-blackhole: styleguide-add-component($STYLEGUIDE_BUTTONS_ID, $STYLEGUIDE_BUTT
|
|
131
129
|
background-image $CONFIG_GRADIENT_BUTTON_SECONDARY_DARK_HOVER
|
132
130
|
)),
|
133
131
|
nil
|
134
|
-
))
|
132
|
+
)),
|
133
|
+
nil
|
135
134
|
)),
|
136
135
|
((spotlight in-dark), (
|
137
|
-
inherit (in-dark),
|
138
136
|
(states, (
|
139
137
|
(hover, (
|
140
138
|
background-color $CONFIG_COLOR_BG_BUTTON_SPOTLIGHT_DARK_HOVER,
|
@@ -142,7 +140,8 @@ $a-blackhole: styleguide-add-component($STYLEGUIDE_BUTTONS_ID, $STYLEGUIDE_BUTT
|
|
142
140
|
background-image $CONFIG_GRADIENT_BUTTON_SPOTLIGHT_DARK_HOVER
|
143
141
|
)),
|
144
142
|
nil
|
145
|
-
))
|
143
|
+
)),
|
144
|
+
nil
|
146
145
|
)),
|
147
146
|
// in the punchcut context (inherit from in-dark)
|
148
147
|
(primary in-punchcut, (
|
@@ -21,9 +21,9 @@ $a-blackhole: styleguide-add-component($STYLEGUIDE_CLOSES_ID, $STYLEGUIDE_CLOSE
|
|
21
21
|
width nth($CONFIG_GLYPH_CLOSE, 4),
|
22
22
|
height nth($CONFIG_GLYPH_CLOSE, 4),
|
23
23
|
text-indent (nth($CONFIG_GLYPH_CLOSE, 4) + 1px),
|
24
|
-
glyph-icon (nth($CONFIG_GLYPH_CLOSE, 1), nth($CONFIG_GLYPH_CLOSE, 2), nth($CONFIG_GLYPH_CLOSE, 3), before, 'text-decoration:none;'),
|
24
|
+
glyph-icon (nth($CONFIG_GLYPH_CLOSE, 1), nth($CONFIG_GLYPH_CLOSE, 2), nth($CONFIG_GLYPH_CLOSE, 3), before, 'text-decoration:none;vertical-align:top;line-height:1;position:absolute;top:0;right:0;'),
|
25
25
|
(selectors, (
|
26
|
-
(
|
26
|
+
('&:before', (
|
27
27
|
vertical-align top,
|
28
28
|
line-height 1,
|
29
29
|
position absolute,
|
@@ -32,12 +32,8 @@
|
|
32
32
|
@mixin output-style($property, $value: nil) {
|
33
33
|
@if($property != nil and nth(-compass-list($value), 1) != nil and not index($CONFIG_DISABLED_CSS, $property)) {
|
34
34
|
// for mixins, we need to do some custom work
|
35
|
-
// check to see if we have a custom output styler (pre)
|
36
|
-
@if has-custom-output-styler($property, $value, pre) == true {
|
37
|
-
@include custom-output-styler($property, $value, $method: pre);
|
38
|
-
}
|
39
35
|
// border-radius
|
40
|
-
@
|
36
|
+
@if($property == border-radius) { @include border-radius(rtl($value, border-radius)); }
|
41
37
|
// box-sizing
|
42
38
|
@else if($property == box-sizing) { @include box-sizing($value); }
|
43
39
|
// box-shadow
|
@@ -55,7 +51,7 @@
|
|
55
51
|
// background-size
|
56
52
|
@else if($property == background-size) { @include background-size($value); }
|
57
53
|
// background-origin
|
58
|
-
@else if($property == background-origin)
|
54
|
+
@else if($property == background-origin) { @include background-origin($value); }
|
59
55
|
// IE filters
|
60
56
|
@else if($property == ie-filter) { @include ie-filter($value); }
|
61
57
|
// hide-text
|
@@ -74,12 +70,6 @@
|
|
74
70
|
@else if($property == max-height) { @include max-height($value); }
|
75
71
|
// stretch
|
76
72
|
@else if($property == stretch) { @include stretch(); }
|
77
|
-
// appearance
|
78
|
-
@else if($property == appearance) { @include appearance($value); }
|
79
|
-
// unhide-element
|
80
|
-
@else if($property == unhide-element) { @include unhide-element(); }
|
81
|
-
// ellipsis
|
82
|
-
@else if($property == ellipsis) { @include ellipsis(); }
|
83
73
|
// bunch of RTL support
|
84
74
|
@else if($property == margin) { @include margin($value); }
|
85
75
|
@else if($property == margin-left) { @include margin-left($value); }
|
@@ -103,7 +93,6 @@
|
|
103
93
|
@else if($property == left) { @include left($value); }
|
104
94
|
@else if($property == right) { @include right($value); }
|
105
95
|
@else if($property == glyph-icon) { @include glyph-icon(nth($value, 1), nth($value, 2), nth($value, 3), nth($value, 4), nth($value, 5)); }
|
106
|
-
@else if($property == extend) { @extend #{$value}; }
|
107
96
|
// animations
|
108
97
|
@else if($property == animation) {
|
109
98
|
@if archetype-version('compass >= 0.13') {
|
@@ -165,10 +154,6 @@
|
|
165
154
|
@include ie-pseudo-after(nth($value, 1), $content, $tag);
|
166
155
|
}
|
167
156
|
}
|
168
|
-
// check to see if we have a custom output styler (post)
|
169
|
-
@else if has-custom-output-styler($property, $value, post) == true {
|
170
|
-
@include custom-output-styler($property, $value, $method: post);
|
171
|
-
}
|
172
157
|
// otherwise just use a key-value pair
|
173
158
|
@else { #{$property}: $value; }
|
174
159
|
}
|
@@ -180,7 +165,7 @@
|
|
180
165
|
// @param $states {Bool|List} if true, output all states; if false, output no states; if a list, output only the states in the list
|
181
166
|
// @param $exclude {List} a list of styles to exclude from output
|
182
167
|
@mixin to-styles($list: (), $states: true, $selectors: true, $exclude: ()) {
|
183
|
-
$exclude:
|
168
|
+
$exclude: compact($exclude, nil);
|
184
169
|
$states-data: ();
|
185
170
|
$selectors-data: ();
|
186
171
|
@each $item in $list {
|
@@ -207,7 +192,7 @@
|
|
207
192
|
$state: first-value-of($state);
|
208
193
|
@if(index(-compass-list($states), $state) or $states == true) {
|
209
194
|
#{_getStateSelector($state)} {
|
210
|
-
@include
|
195
|
+
@include _toStyles2($value, true, true, $exclude);
|
211
196
|
}
|
212
197
|
}
|
213
198
|
}
|
@@ -216,8 +201,8 @@
|
|
216
201
|
@if length($selectors-data) > 0 {
|
217
202
|
@each $selector in $selectors-data {
|
218
203
|
@if(index(-compass-list($selectors), $selector) or $selectors == true) {
|
219
|
-
#{
|
220
|
-
@include
|
204
|
+
#{first-value-of($selector)} {
|
205
|
+
@include _toStyles2(nth($selector, 2), true, true, $exclude);
|
221
206
|
}
|
222
207
|
}
|
223
208
|
}
|
@@ -226,7 +211,7 @@
|
|
226
211
|
|
227
212
|
// this is identical to to-styles, but we need to avoid Sass' recursion check :(
|
228
213
|
@mixin _toStyles2($list: (), $states: true, $selectors: true, $exclude: ()) {
|
229
|
-
$exclude:
|
214
|
+
$exclude: compact($exclude, nil);
|
230
215
|
$states-data: ();
|
231
216
|
$selectors-data: ();
|
232
217
|
@each $item in $list {
|
@@ -296,17 +281,6 @@
|
|
296
281
|
@return $selector;
|
297
282
|
}
|
298
283
|
|
299
|
-
@function _getSelectorSelector($selector) {
|
300
|
-
$selector: first-value-of(-compass-list($selector));
|
301
|
-
@if $selector == $CORE_GLYPH_SELECTOR_VAR {
|
302
|
-
$selector: $archetype-glyph-selector;
|
303
|
-
}
|
304
|
-
@elseif $selector == $CORE_GLYPH_SELECTOR_VAR {
|
305
|
-
$selector: $archetype-pseudo-selector;
|
306
|
-
}
|
307
|
-
@return $selector;
|
308
|
-
}
|
309
|
-
|
310
284
|
// mixin for outputting filters in legacy IE
|
311
285
|
// @mixin ie-filter
|
312
286
|
// @param $value {String|List} a set of filters to output, sans `progid:DXImageTransform.Microsoft` prefix
|
@@ -478,15 +452,3 @@
|
|
478
452
|
}
|
479
453
|
z-index: ($value + $layer);
|
480
454
|
}
|
481
|
-
|
482
|
-
// generate a tag name with a prefix
|
483
|
-
// @function prefixed-tag
|
484
|
-
// @param $tag {String} the tag to prefix
|
485
|
-
// @param $prefix {String} the prefix to prepend to the tag
|
486
|
-
// @return {String} the prefix joined with the tag
|
487
|
-
@function prefixed-tag($tag: '', $prefix: $CONFIG_GENERATED_TAG_PREFIX) {
|
488
|
-
@if $tag != '' {
|
489
|
-
$tag: '-#{$tag}';
|
490
|
-
}
|
491
|
-
@return '#{$prefix}#{$tag}';
|
492
|
-
}
|
@@ -86,7 +86,6 @@
|
|
86
86
|
// @param $value {*} the CSS value
|
87
87
|
// @param $merge {Bool} should the class name be merged e.g. `.ie8.example` vs `.ie8 .example`
|
88
88
|
// @param $inline {Bool} if set to false, don't use inline hacks even if available
|
89
|
-
// @content
|
90
89
|
// @usage:
|
91
90
|
// =target-browser(ie 8, border, 10px);
|
92
91
|
// =target-browser(ie lte 7, padding, 0);
|
@@ -179,7 +178,6 @@
|
|
179
178
|
// @param $property {String} the CSS property
|
180
179
|
// @param $value {*} the CSS value
|
181
180
|
// @param $merge {Bool} should the class name be merged e.g. `.os-win.example` vs `.os-win .example`
|
182
|
-
// @content
|
183
181
|
@mixin target-os($os: (), $property: nil, $value: nil, $merge: false) {
|
184
182
|
$os: -compass-list($os);
|
185
183
|
$using: if($merge, '&', ' &');
|
Binary file
|
@@ -1,11 +1,11 @@
|
|
1
1
|
.before {
|
2
|
-
*zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.
|
2
|
+
*zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.style.cssText="color: red; background: green;",this.insertBefore(this.el));
|
3
3
|
}
|
4
4
|
|
5
5
|
.after-content {
|
6
|
-
*zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.
|
6
|
+
*zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.innerHTML="➽",this.appendChild(this.el));
|
7
7
|
}
|
8
8
|
|
9
9
|
.before-style-content {
|
10
|
-
*zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.
|
10
|
+
*zoom: expression(this.runtimeStyle.zoom="1", this.el=document.createElement("x-archetype"),this.el.innerHTML="testing ➽if this works",this.el.style.cssText="color: red; background: green;",this.insertBefore(this.el));
|
11
11
|
}
|
@@ -6,7 +6,6 @@
|
|
6
6
|
margin: 0;
|
7
7
|
overflow: visible;
|
8
8
|
text-decoration: none !important;
|
9
|
-
text-align: center;
|
10
9
|
width: auto;
|
11
10
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
12
11
|
-webkit-border-radius: 3px;
|
@@ -82,7 +81,6 @@
|
|
82
81
|
margin: 0;
|
83
82
|
overflow: visible;
|
84
83
|
text-decoration: none !important;
|
85
|
-
text-align: center;
|
86
84
|
width: auto;
|
87
85
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
88
86
|
-webkit-border-radius: 3px;
|
@@ -158,7 +156,6 @@
|
|
158
156
|
margin: 0;
|
159
157
|
overflow: visible;
|
160
158
|
text-decoration: none !important;
|
161
|
-
text-align: center;
|
162
159
|
width: auto;
|
163
160
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
164
161
|
-webkit-border-radius: 3px;
|
@@ -234,7 +231,6 @@
|
|
234
231
|
margin: 0;
|
235
232
|
overflow: visible;
|
236
233
|
text-decoration: none !important;
|
237
|
-
text-align: center;
|
238
234
|
width: auto;
|
239
235
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
240
236
|
-webkit-border-radius: 3px;
|
@@ -310,7 +306,6 @@
|
|
310
306
|
margin: 0;
|
311
307
|
overflow: visible;
|
312
308
|
text-decoration: none !important;
|
313
|
-
text-align: center;
|
314
309
|
width: auto;
|
315
310
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
316
311
|
-webkit-border-radius: 3px;
|
@@ -386,7 +381,6 @@
|
|
386
381
|
margin: 0;
|
387
382
|
overflow: visible;
|
388
383
|
text-decoration: none !important;
|
389
|
-
text-align: center;
|
390
384
|
width: auto;
|
391
385
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
392
386
|
-webkit-border-radius: 3px;
|
@@ -462,7 +456,6 @@
|
|
462
456
|
margin: 0;
|
463
457
|
overflow: visible;
|
464
458
|
text-decoration: none !important;
|
465
|
-
text-align: center;
|
466
459
|
width: auto;
|
467
460
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
468
461
|
-webkit-border-radius: 3px;
|
@@ -538,7 +531,6 @@
|
|
538
531
|
margin: 0;
|
539
532
|
overflow: visible;
|
540
533
|
text-decoration: none !important;
|
541
|
-
text-align: center;
|
542
534
|
width: auto;
|
543
535
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
544
536
|
-webkit-border-radius: 3px;
|
@@ -614,7 +606,6 @@
|
|
614
606
|
margin: 0;
|
615
607
|
overflow: visible;
|
616
608
|
text-decoration: none !important;
|
617
|
-
text-align: center;
|
618
609
|
width: auto;
|
619
610
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
620
611
|
-webkit-border-radius: 3px;
|
@@ -691,7 +682,6 @@
|
|
691
682
|
margin: 0;
|
692
683
|
overflow: visible;
|
693
684
|
text-decoration: none !important;
|
694
|
-
text-align: center;
|
695
685
|
width: auto;
|
696
686
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
697
687
|
-webkit-border-radius: 3px;
|
@@ -708,7 +698,7 @@
|
|
708
698
|
font-size: 16px;
|
709
699
|
color: white;
|
710
700
|
background-color: #0074cc;
|
711
|
-
border-color: #
|
701
|
+
border-color: #1b5480;
|
712
702
|
*zoom: 1;
|
713
703
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF0088CC', endColorstr='#FF0055CC');
|
714
704
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0088cc), color-stop(100%, #0055cc));
|
@@ -767,7 +757,6 @@
|
|
767
757
|
margin: 0;
|
768
758
|
overflow: visible;
|
769
759
|
text-decoration: none !important;
|
770
|
-
text-align: center;
|
771
760
|
width: auto;
|
772
761
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
773
762
|
-webkit-border-radius: 3px;
|
@@ -784,7 +773,7 @@
|
|
784
773
|
font-size: 16px;
|
785
774
|
color: #333333;
|
786
775
|
background-color: whitesmoke;
|
787
|
-
border-color: #
|
776
|
+
border-color: #aaaaaa;
|
788
777
|
*zoom: 1;
|
789
778
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6');
|
790
779
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #e6e6e6));
|
@@ -843,7 +832,6 @@
|
|
843
832
|
margin: 0;
|
844
833
|
overflow: visible;
|
845
834
|
text-decoration: none !important;
|
846
|
-
text-align: center;
|
847
835
|
width: auto;
|
848
836
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
849
837
|
-webkit-border-radius: 3px;
|
@@ -860,7 +848,7 @@
|
|
860
848
|
font-size: 16px;
|
861
849
|
color: white;
|
862
850
|
background-color: #414141;
|
863
|
-
border-color: #
|
851
|
+
border-color: #111111;
|
864
852
|
*zoom: 1;
|
865
853
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF555555', endColorstr='#FF222222');
|
866
854
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #555555), color-stop(100%, #222222));
|
@@ -919,7 +907,6 @@
|
|
919
907
|
margin: 0;
|
920
908
|
overflow: visible;
|
921
909
|
text-decoration: none !important;
|
922
|
-
text-align: center;
|
923
910
|
width: auto;
|
924
911
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
925
912
|
-webkit-border-radius: 3px;
|
@@ -936,7 +923,7 @@
|
|
936
923
|
font-size: 13px;
|
937
924
|
color: white;
|
938
925
|
background-color: #0074cc;
|
939
|
-
border-color: #
|
926
|
+
border-color: #1b5480;
|
940
927
|
*zoom: 1;
|
941
928
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF0088CC', endColorstr='#FF0055CC');
|
942
929
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0088cc), color-stop(100%, #0055cc));
|
@@ -995,7 +982,6 @@
|
|
995
982
|
margin: 0;
|
996
983
|
overflow: visible;
|
997
984
|
text-decoration: none !important;
|
998
|
-
text-align: center;
|
999
985
|
width: auto;
|
1000
986
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
1001
987
|
-webkit-border-radius: 3px;
|
@@ -1012,7 +998,7 @@
|
|
1012
998
|
font-size: 13px;
|
1013
999
|
color: #333333;
|
1014
1000
|
background-color: whitesmoke;
|
1015
|
-
border-color: #
|
1001
|
+
border-color: #aaaaaa;
|
1016
1002
|
*zoom: 1;
|
1017
1003
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6');
|
1018
1004
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #e6e6e6));
|
@@ -1071,7 +1057,6 @@
|
|
1071
1057
|
margin: 0;
|
1072
1058
|
overflow: visible;
|
1073
1059
|
text-decoration: none !important;
|
1074
|
-
text-align: center;
|
1075
1060
|
width: auto;
|
1076
1061
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
1077
1062
|
-webkit-border-radius: 3px;
|
@@ -1088,7 +1073,7 @@
|
|
1088
1073
|
font-size: 13px;
|
1089
1074
|
color: white;
|
1090
1075
|
background-color: #414141;
|
1091
|
-
border-color: #
|
1076
|
+
border-color: #111111;
|
1092
1077
|
*zoom: 1;
|
1093
1078
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF555555', endColorstr='#FF222222');
|
1094
1079
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #555555), color-stop(100%, #222222));
|
@@ -1147,7 +1132,6 @@
|
|
1147
1132
|
margin: 0;
|
1148
1133
|
overflow: visible;
|
1149
1134
|
text-decoration: none !important;
|
1150
|
-
text-align: center;
|
1151
1135
|
width: auto;
|
1152
1136
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1153
1137
|
-webkit-border-radius: 3px;
|
@@ -1164,7 +1148,7 @@
|
|
1164
1148
|
font-size: 12px;
|
1165
1149
|
color: white;
|
1166
1150
|
background-color: #0074cc;
|
1167
|
-
border-color: #
|
1151
|
+
border-color: #1b5480;
|
1168
1152
|
*zoom: 1;
|
1169
1153
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF0088CC', endColorstr='#FF0055CC');
|
1170
1154
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0088cc), color-stop(100%, #0055cc));
|
@@ -1223,7 +1207,6 @@
|
|
1223
1207
|
margin: 0;
|
1224
1208
|
overflow: visible;
|
1225
1209
|
text-decoration: none !important;
|
1226
|
-
text-align: center;
|
1227
1210
|
width: auto;
|
1228
1211
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
1229
1212
|
-webkit-border-radius: 3px;
|
@@ -1240,7 +1223,7 @@
|
|
1240
1223
|
font-size: 12px;
|
1241
1224
|
color: #333333;
|
1242
1225
|
background-color: whitesmoke;
|
1243
|
-
border-color: #
|
1226
|
+
border-color: #aaaaaa;
|
1244
1227
|
*zoom: 1;
|
1245
1228
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6');
|
1246
1229
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #e6e6e6));
|
@@ -1299,7 +1282,6 @@
|
|
1299
1282
|
margin: 0;
|
1300
1283
|
overflow: visible;
|
1301
1284
|
text-decoration: none !important;
|
1302
|
-
text-align: center;
|
1303
1285
|
width: auto;
|
1304
1286
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
1305
1287
|
-webkit-border-radius: 3px;
|
@@ -1316,7 +1298,7 @@
|
|
1316
1298
|
font-size: 12px;
|
1317
1299
|
color: white;
|
1318
1300
|
background-color: #414141;
|
1319
|
-
border-color: #
|
1301
|
+
border-color: #111111;
|
1320
1302
|
*zoom: 1;
|
1321
1303
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF555555', endColorstr='#FF222222');
|
1322
1304
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #555555), color-stop(100%, #222222));
|
@@ -1376,7 +1358,6 @@
|
|
1376
1358
|
margin: 0;
|
1377
1359
|
overflow: visible;
|
1378
1360
|
text-decoration: none !important;
|
1379
|
-
text-align: center;
|
1380
1361
|
width: auto;
|
1381
1362
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1382
1363
|
-webkit-border-radius: 3px;
|
@@ -1393,7 +1374,7 @@
|
|
1393
1374
|
font-size: 16px;
|
1394
1375
|
color: white;
|
1395
1376
|
background-color: #0074cc;
|
1396
|
-
border-color: #
|
1377
|
+
border-color: #1b5480;
|
1397
1378
|
*zoom: 1;
|
1398
1379
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF0088CC', endColorstr='#FF0055CC');
|
1399
1380
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0088cc), color-stop(100%, #0055cc));
|
@@ -1452,7 +1433,6 @@
|
|
1452
1433
|
margin: 0;
|
1453
1434
|
overflow: visible;
|
1454
1435
|
text-decoration: none !important;
|
1455
|
-
text-align: center;
|
1456
1436
|
width: auto;
|
1457
1437
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
1458
1438
|
-webkit-border-radius: 3px;
|
@@ -1469,7 +1449,7 @@
|
|
1469
1449
|
font-size: 16px;
|
1470
1450
|
color: #333333;
|
1471
1451
|
background-color: whitesmoke;
|
1472
|
-
border-color: #
|
1452
|
+
border-color: #aaaaaa;
|
1473
1453
|
*zoom: 1;
|
1474
1454
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6');
|
1475
1455
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #e6e6e6));
|
@@ -1528,7 +1508,6 @@
|
|
1528
1508
|
margin: 0;
|
1529
1509
|
overflow: visible;
|
1530
1510
|
text-decoration: none !important;
|
1531
|
-
text-align: center;
|
1532
1511
|
width: auto;
|
1533
1512
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
1534
1513
|
-webkit-border-radius: 3px;
|
@@ -1545,7 +1524,7 @@
|
|
1545
1524
|
font-size: 16px;
|
1546
1525
|
color: white;
|
1547
1526
|
background-color: #414141;
|
1548
|
-
border-color: #
|
1527
|
+
border-color: #111111;
|
1549
1528
|
*zoom: 1;
|
1550
1529
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF555555', endColorstr='#FF222222');
|
1551
1530
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #555555), color-stop(100%, #222222));
|
@@ -1604,7 +1583,6 @@
|
|
1604
1583
|
margin: 0;
|
1605
1584
|
overflow: visible;
|
1606
1585
|
text-decoration: none !important;
|
1607
|
-
text-align: center;
|
1608
1586
|
width: auto;
|
1609
1587
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1610
1588
|
-webkit-border-radius: 3px;
|
@@ -1621,7 +1599,7 @@
|
|
1621
1599
|
font-size: 13px;
|
1622
1600
|
color: white;
|
1623
1601
|
background-color: #0074cc;
|
1624
|
-
border-color: #
|
1602
|
+
border-color: #1b5480;
|
1625
1603
|
*zoom: 1;
|
1626
1604
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF0088CC', endColorstr='#FF0055CC');
|
1627
1605
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0088cc), color-stop(100%, #0055cc));
|
@@ -1680,7 +1658,6 @@
|
|
1680
1658
|
margin: 0;
|
1681
1659
|
overflow: visible;
|
1682
1660
|
text-decoration: none !important;
|
1683
|
-
text-align: center;
|
1684
1661
|
width: auto;
|
1685
1662
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
1686
1663
|
-webkit-border-radius: 3px;
|
@@ -1697,7 +1674,7 @@
|
|
1697
1674
|
font-size: 13px;
|
1698
1675
|
color: #333333;
|
1699
1676
|
background-color: whitesmoke;
|
1700
|
-
border-color: #
|
1677
|
+
border-color: #aaaaaa;
|
1701
1678
|
*zoom: 1;
|
1702
1679
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6');
|
1703
1680
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #e6e6e6));
|
@@ -1756,7 +1733,6 @@
|
|
1756
1733
|
margin: 0;
|
1757
1734
|
overflow: visible;
|
1758
1735
|
text-decoration: none !important;
|
1759
|
-
text-align: center;
|
1760
1736
|
width: auto;
|
1761
1737
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
1762
1738
|
-webkit-border-radius: 3px;
|
@@ -1773,7 +1749,7 @@
|
|
1773
1749
|
font-size: 13px;
|
1774
1750
|
color: white;
|
1775
1751
|
background-color: #414141;
|
1776
|
-
border-color: #
|
1752
|
+
border-color: #111111;
|
1777
1753
|
*zoom: 1;
|
1778
1754
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF555555', endColorstr='#FF222222');
|
1779
1755
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #555555), color-stop(100%, #222222));
|
@@ -1832,7 +1808,6 @@
|
|
1832
1808
|
margin: 0;
|
1833
1809
|
overflow: visible;
|
1834
1810
|
text-decoration: none !important;
|
1835
|
-
text-align: center;
|
1836
1811
|
width: auto;
|
1837
1812
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1838
1813
|
-webkit-border-radius: 3px;
|
@@ -1849,7 +1824,7 @@
|
|
1849
1824
|
font-size: 12px;
|
1850
1825
|
color: white;
|
1851
1826
|
background-color: #0074cc;
|
1852
|
-
border-color: #
|
1827
|
+
border-color: #1b5480;
|
1853
1828
|
*zoom: 1;
|
1854
1829
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF0088CC', endColorstr='#FF0055CC');
|
1855
1830
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0088cc), color-stop(100%, #0055cc));
|
@@ -1908,7 +1883,6 @@
|
|
1908
1883
|
margin: 0;
|
1909
1884
|
overflow: visible;
|
1910
1885
|
text-decoration: none !important;
|
1911
|
-
text-align: center;
|
1912
1886
|
width: auto;
|
1913
1887
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
1914
1888
|
-webkit-border-radius: 3px;
|
@@ -1925,7 +1899,7 @@
|
|
1925
1899
|
font-size: 12px;
|
1926
1900
|
color: #333333;
|
1927
1901
|
background-color: whitesmoke;
|
1928
|
-
border-color: #
|
1902
|
+
border-color: #aaaaaa;
|
1929
1903
|
*zoom: 1;
|
1930
1904
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6');
|
1931
1905
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #e6e6e6));
|
@@ -1984,7 +1958,6 @@
|
|
1984
1958
|
margin: 0;
|
1985
1959
|
overflow: visible;
|
1986
1960
|
text-decoration: none !important;
|
1987
|
-
text-align: center;
|
1988
1961
|
width: auto;
|
1989
1962
|
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
1990
1963
|
-webkit-border-radius: 3px;
|
@@ -2001,7 +1974,7 @@
|
|
2001
1974
|
font-size: 12px;
|
2002
1975
|
color: white;
|
2003
1976
|
background-color: #414141;
|
2004
|
-
border-color: #
|
1977
|
+
border-color: #111111;
|
2005
1978
|
*zoom: 1;
|
2006
1979
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF555555', endColorstr='#FF222222');
|
2007
1980
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #555555), color-stop(100%, #222222));
|
@@ -2052,68 +2025,3 @@
|
|
2052
2025
|
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
|
2053
2026
|
opacity: 0.6;
|
2054
2027
|
}
|
2055
|
-
|
2056
|
-
.test-exclude {
|
2057
|
-
font-weight: bold;
|
2058
|
-
border-width: 1px;
|
2059
|
-
border-style: solid;
|
2060
|
-
margin: 0;
|
2061
|
-
overflow: visible;
|
2062
|
-
text-decoration: none !important;
|
2063
|
-
text-align: center;
|
2064
|
-
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
|
2065
|
-
-webkit-box-sizing: border-box;
|
2066
|
-
-moz-box-sizing: border-box;
|
2067
|
-
box-sizing: border-box;
|
2068
|
-
color: #333333;
|
2069
|
-
background-color: whitesmoke;
|
2070
|
-
border-color: #aaaaaa;
|
2071
|
-
*zoom: 1;
|
2072
|
-
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6');
|
2073
|
-
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #e6e6e6));
|
2074
|
-
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
|
2075
|
-
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
|
2076
|
-
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
|
2077
|
-
background-image: linear-gradient(top, #ffffff, #e6e6e6);
|
2078
|
-
white-space: nowrap;
|
2079
|
-
display: -moz-inline-stack;
|
2080
|
-
display: inline-block;
|
2081
|
-
vertical-align: middle;
|
2082
|
-
*vertical-align: auto;
|
2083
|
-
zoom: 1;
|
2084
|
-
*display: inline;
|
2085
|
-
vertical-align: middle;
|
2086
|
-
}
|
2087
|
-
.test-exclude.hover, .test-exclude:hover, .test-exclude.focus, .test-exclude:focus {
|
2088
|
-
background-color: #e6e6e6;
|
2089
|
-
*zoom: 1;
|
2090
|
-
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFF5F5F5', endColorstr='#FFE4E4E4');
|
2091
|
-
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f5f5), color-stop(100%, #e4e4e4));
|
2092
|
-
background-image: -webkit-linear-gradient(top, #f5f5f5, #e4e4e4);
|
2093
|
-
background-image: -moz-linear-gradient(top, #f5f5f5, #e4e4e4);
|
2094
|
-
background-image: -o-linear-gradient(top, #f5f5f5, #e4e4e4);
|
2095
|
-
background-image: linear-gradient(top, #f5f5f5, #e4e4e4);
|
2096
|
-
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
|
2097
|
-
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
|
2098
|
-
box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
|
2099
|
-
}
|
2100
|
-
.test-exclude.active, .test-exclude:active {
|
2101
|
-
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset;
|
2102
|
-
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset;
|
2103
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset;
|
2104
|
-
}
|
2105
|
-
.test-exclude.disabled, .test-exclude[disabled] {
|
2106
|
-
background-color: #e6e6e6;
|
2107
|
-
*zoom: 1;
|
2108
|
-
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFF5F5F5', endColorstr='#FFE4E4E4');
|
2109
|
-
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f5f5), color-stop(100%, #e4e4e4));
|
2110
|
-
background-image: -webkit-linear-gradient(top, #f5f5f5, #e4e4e4);
|
2111
|
-
background-image: -moz-linear-gradient(top, #f5f5f5, #e4e4e4);
|
2112
|
-
background-image: -o-linear-gradient(top, #f5f5f5, #e4e4e4);
|
2113
|
-
background-image: linear-gradient(top, #f5f5f5, #e4e4e4);
|
2114
|
-
-webkit-box-shadow: none;
|
2115
|
-
-moz-box-shadow: none;
|
2116
|
-
box-shadow: none;
|
2117
|
-
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
|
2118
|
-
opacity: 0.6;
|
2119
|
-
}
|