zurb-foundation 4.1.5 → 4.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/docs/CHANGELOG.md +10 -0
- data/docs/components/block-grid.html.erb +1 -1
- data/docs/components/grid.html.erb +4 -4
- data/docs/components/inline-lists.html.erb +2 -2
- data/docs/components/panels.html.erb +2 -2
- data/docs/components/pricing-tables.html.erb +1 -1
- data/docs/components/progress-bars.html.erb +1 -1
- data/docs/components/reveal.html.erb +1 -1
- data/docs/components/section.html.erb +546 -19
- data/docs/components/split-buttons.html.erb +2 -2
- data/docs/components/thumbnails.html.erb +2 -2
- data/docs/components/top-bar.html.erb +2 -3
- data/docs/components/type.html.erb +5 -5
- data/docs/components/visibility.html.erb +1 -1
- data/docs/css/docs.scss +54 -0
- data/docs/sass.html.erb +3 -1
- data/js/foundation/foundation.forms.js +311 -227
- data/js/foundation/foundation.joyride.js +10 -8
- data/js/foundation/foundation.js +1 -1
- data/js/foundation/foundation.section.js +4 -4
- data/lib/foundation/version.rb +1 -1
- data/scss/foundation/_variables.scss +185 -171
- data/scss/foundation/components/_alert-boxes.scss +1 -0
- data/scss/foundation/components/_block-grid.scss +2 -4
- data/scss/foundation/components/_breadcrumbs.scss +1 -0
- data/scss/foundation/components/_button-groups.scss +1 -0
- data/scss/foundation/components/_buttons.scss +1 -0
- data/scss/foundation/components/_clearing.scss +154 -151
- data/scss/foundation/components/_custom-forms.scss +35 -21
- data/scss/foundation/components/_dropdown-buttons.scss +2 -1
- data/scss/foundation/components/_dropdown.scss +2 -1
- data/scss/foundation/components/_flex-video.scss +1 -0
- data/scss/foundation/components/_forms.scss +1 -0
- data/scss/foundation/components/_global.scss +75 -84
- data/scss/foundation/components/_grid.scss +9 -8
- data/scss/foundation/components/_inline-lists.scss +2 -1
- data/scss/foundation/components/_joyride.scss +165 -160
- data/scss/foundation/components/_keystrokes.scss +2 -1
- data/scss/foundation/components/_labels.scss +1 -0
- data/scss/foundation/components/_magellan.scss +2 -0
- data/scss/foundation/components/_orbit.scss +158 -154
- data/scss/foundation/components/_pagination.scss +1 -0
- data/scss/foundation/components/_panels.scss +1 -0
- data/scss/foundation/components/_pricing-tables.scss +1 -0
- data/scss/foundation/components/_progress-bars.scss +1 -0
- data/scss/foundation/components/_reveal.scss +2 -1
- data/scss/foundation/components/_section.scss +108 -93
- data/scss/foundation/components/_side-nav.scss +2 -1
- data/scss/foundation/components/_split-buttons.scss +1 -0
- data/scss/foundation/components/_sub-nav.scss +1 -0
- data/scss/foundation/components/_switch.scss +4 -2
- data/scss/foundation/components/_tables.scss +7 -3
- data/scss/foundation/components/_thumbs.scss +1 -0
- data/scss/foundation/components/_tooltips.scss +85 -81
- data/scss/foundation/components/_top-bar.scss +323 -318
- data/scss/foundation/components/_type.scss +290 -286
- data/scss/foundation/components/_visibility.scss +2 -0
- data/templates/project/index.html +0 -1
- data/templates/project/manifest.rb +0 -1
- data/templates/project/scss/app.scss +3 -0
- metadata +4 -4
@@ -1,6 +1,6 @@
|
|
1
1
|
/*jslint unparam: true, browser: true, indent: 2 */
|
2
2
|
|
3
|
-
|
3
|
+
(function ($, window, document, undefined) {
|
4
4
|
'use strict';
|
5
5
|
|
6
6
|
Foundation.libs.joyride = {
|
@@ -121,7 +121,7 @@
|
|
121
121
|
int_settings_count = integer_settings.length;
|
122
122
|
|
123
123
|
if (!this.settings.init) this.init();
|
124
|
-
|
124
|
+
|
125
125
|
// non configureable settings
|
126
126
|
this.settings.$content_el = $this;
|
127
127
|
this.settings.$body = $(this.settings.tipContainer);
|
@@ -547,14 +547,15 @@
|
|
547
547
|
|
548
548
|
show_modal : function () {
|
549
549
|
if (!this.settings.$next_tip.data('closed')) {
|
550
|
-
|
550
|
+
var joyridemodalbg = $('.joyride-modal-bg');
|
551
|
+
if (joyridemodalbg.length < 1) {
|
551
552
|
$('body').append(this.settings.template.modal).show();
|
552
553
|
}
|
553
554
|
|
554
555
|
if (/pop/i.test(this.settings.tipAnimation)) {
|
555
|
-
|
556
|
+
joyridemodalbg.show();
|
556
557
|
} else {
|
557
|
-
|
558
|
+
joyridemodalbg.fadeIn(this.settings.tipAnimationFadeSpeed);
|
558
559
|
}
|
559
560
|
}
|
560
561
|
},
|
@@ -589,7 +590,7 @@
|
|
589
590
|
width: this.outerWidth(el, true),
|
590
591
|
height: this.outerHeight(el, true)
|
591
592
|
});
|
592
|
-
|
593
|
+
|
593
594
|
exposeCover = $(this.settings.template.exposeCover);
|
594
595
|
|
595
596
|
origCSS = {
|
@@ -597,7 +598,7 @@
|
|
597
598
|
position: el.css('position')
|
598
599
|
};
|
599
600
|
|
600
|
-
el.css('z-index',expose.css('z-index')
|
601
|
+
el.css('z-index',parseInt(expose.css('z-index'))+1);
|
601
602
|
|
602
603
|
if (origCSS.position == 'static') {
|
603
604
|
el.css('position','relative');
|
@@ -810,6 +811,7 @@
|
|
810
811
|
this.settings.$current_tip.hide();
|
811
812
|
this.settings.postStepCallback(this.settings.$li.index(), this.settings.$current_tip);
|
812
813
|
this.settings.postRideCallback(this.settings.$li.index(), this.settings.$current_tip);
|
814
|
+
$('.joyride-tip-guide').remove();
|
813
815
|
},
|
814
816
|
|
815
817
|
outerHTML : function (el) {
|
@@ -826,4 +828,4 @@
|
|
826
828
|
this.settings = {};
|
827
829
|
}
|
828
830
|
};
|
829
|
-
}(Foundation.zj, this, this.document));
|
831
|
+
}(Foundation.zj, this, this.document));
|
data/js/foundation/foundation.js
CHANGED
@@ -95,7 +95,7 @@
|
|
95
95
|
|| self.is_vertical_nav(parent)
|
96
96
|
|| self.is_horizontal_nav(parent)
|
97
97
|
|| self.is_accordion(parent)) {
|
98
|
-
if (prev_active_section[0] !== region[0]
|
98
|
+
if (prev_active_section[0] !== region[0]
|
99
99
|
|| (prev_active_section[0] === region[0] && !settings.one_up)) {
|
100
100
|
region
|
101
101
|
.removeClass('active')
|
@@ -113,7 +113,7 @@
|
|
113
113
|
if (self.small(parent)) {
|
114
114
|
prev_active_section.attr('style', '');
|
115
115
|
} else {
|
116
|
-
prev_active_section.attr('style',
|
116
|
+
prev_active_section.attr('style',
|
117
117
|
'visibility: hidden; padding-top: '+title_height+'px;');
|
118
118
|
}
|
119
119
|
}
|
@@ -345,11 +345,11 @@
|
|
345
345
|
content = region.children(self.settings.content_selector);
|
346
346
|
if (!self.rtl) {
|
347
347
|
content
|
348
|
-
.css({left: title.position().left - 1,
|
348
|
+
.css({left: title.position().left - 1,
|
349
349
|
top: self.outerHeight(title) - 2});
|
350
350
|
} else {
|
351
351
|
content
|
352
|
-
.css({right: self.position_right(title) + 1,
|
352
|
+
.css({right: self.position_right(title) + 1,
|
353
353
|
top: self.outerHeight(title) - 2});
|
354
354
|
}
|
355
355
|
});
|
data/lib/foundation/version.rb
CHANGED
@@ -2,26 +2,28 @@
|
|
2
2
|
// Foundation Variables
|
3
3
|
//
|
4
4
|
|
5
|
-
|
6
|
-
|
5
|
+
// The default font-size is set to 100% of the browser style sheet (usually 16px)
|
6
|
+
// for compatibility with brower-based text zoom or user-set defaults.
|
7
7
|
$base-font-size: 100% !default;
|
8
8
|
|
9
|
-
|
10
|
-
|
9
|
+
// $base-line-height is 24px while $base-font-size is 16px
|
10
|
+
// $base-line-height: 150%;
|
11
11
|
|
12
|
-
|
12
|
+
// This is the default html and body font-size for the base em value.
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
// Since the typical default browser font-size is 16px, that makes the calculation for grid size.
|
15
|
+
// If you want your base font-size to be a different size and not have it effect grid size too,
|
16
|
+
// set the value of $em-base to $base-font-size ($em-base: $base-font-size;)
|
17
17
|
$em-base: 16px !default;
|
18
18
|
|
19
|
-
|
19
|
+
// Working in ems is annoying. Think in pixels by using this handy function, emCalc(#px)
|
20
20
|
@function emCalc($pxWidth) {
|
21
21
|
@return $pxWidth / $em-base * 1em;
|
22
22
|
}
|
23
23
|
|
24
|
-
|
24
|
+
// Various global styles
|
25
|
+
|
26
|
+
// $default-float: left;
|
25
27
|
|
26
28
|
// $body-bg: #fff;
|
27
29
|
// $body-font-color: #222;
|
@@ -29,43 +31,49 @@ $em-base: 16px !default;
|
|
29
31
|
// $body-font-weight: normal;
|
30
32
|
// $body-font-style: normal;
|
31
33
|
|
32
|
-
|
34
|
+
// Font-smoothing
|
33
35
|
|
34
36
|
// $font-smoothing: antialiased;
|
35
37
|
|
36
|
-
|
38
|
+
// Text direction settings
|
37
39
|
|
38
40
|
// $text-direction: ltr;
|
39
41
|
|
40
|
-
|
42
|
+
// Colors
|
41
43
|
|
42
44
|
// $primary-color: #2ba6cb;
|
43
45
|
// $secondary-color: #e9e9e9;
|
44
46
|
// $alert-color: #c60f13;
|
45
47
|
// $success-color: #5da423;
|
46
48
|
|
47
|
-
|
49
|
+
// Make sure border radius matches unless we want it different.
|
48
50
|
|
49
51
|
// $global-radius: 3px;
|
50
52
|
// $global-rounded: 1000px;
|
51
53
|
|
52
|
-
|
54
|
+
// Inset shadow shiny edges and depressions.
|
53
55
|
|
54
56
|
// $shiny-edge-size: 0 1px 0;
|
55
57
|
// $shiny-edge-color: rgba(#fff, .5);
|
56
58
|
// $shiny-edge-active-color: rgba(#000, .2);
|
57
59
|
|
58
|
-
|
60
|
+
// Control whether or not CSS classes come through in the CSS files.
|
59
61
|
|
60
62
|
// $include-html-classes: true;
|
61
63
|
// $include-print-styles: true;
|
64
|
+
// $include-html-global-classes: $include-html-classes;
|
65
|
+
// $include-html-type-classes: $include-html-classes;
|
62
66
|
// $include-html-grid-classes: $include-html-classes;
|
63
67
|
// $include-html-visibility-classes: $include-html-classes;
|
64
68
|
// $include-html-button-classes: $include-html-classes;
|
65
69
|
// $include-html-form-classes: $include-html-classes;
|
70
|
+
// $include-html-custom-form-classes: $include-html-classes;
|
66
71
|
// $include-html-media-classes: $include-html-classes;
|
67
72
|
// $include-html-section-classes: $include-html-classes;
|
73
|
+
// $include-html-orbit-classes: $include-html-classes;
|
68
74
|
// $include-html-reveal-classes: $include-html-classes;
|
75
|
+
// $include-html-joyride-classes: $include-html-classes;
|
76
|
+
// $include-html-clearing-classes: $include-html-classes;
|
69
77
|
// $include-html-alert-classes: $include-html-classes;
|
70
78
|
// $include-html-nav-classes: $include-html-classes;
|
71
79
|
// $include-html-label-classes: $include-html-classes;
|
@@ -73,17 +81,18 @@ $em-base: 16px !default;
|
|
73
81
|
// $include-html-pricing-classes: $include-html-classes;
|
74
82
|
// $include-html-progress-classes: $include-html-classes;
|
75
83
|
// $include-html-magellan-classes: $include-html-classes;
|
84
|
+
// $include-html-tooltip-classes: $include-html-classes;
|
76
85
|
|
77
|
-
|
86
|
+
// Media Queries
|
78
87
|
|
79
88
|
// $small-screen: emCalc(768px);
|
80
89
|
// $medium-screen: emCalc(1280px);
|
81
90
|
// $large-screen: emCalc(1440px);
|
82
91
|
|
83
92
|
// $screen: "only screen";
|
84
|
-
// $small: "only screen and (min-width:
|
85
|
-
// $medium: "only screen and (min-width:
|
86
|
-
// $large: "only screen and (min-width:
|
93
|
+
// $small: "only screen and (min-width: #{$small-screen})";
|
94
|
+
// $medium: "only screen and (min-width: #{$medium-screen})";
|
95
|
+
// $large: "only screen and (min-width: #{$large-screen})";
|
87
96
|
// $landscape: "only screen and (orientation: landscape)";
|
88
97
|
// $portrait: "only screen and (orientation: portrait)";
|
89
98
|
|
@@ -99,12 +108,12 @@ $em-base: 16px !default;
|
|
99
108
|
// Block Grid Variables
|
100
109
|
//
|
101
110
|
|
102
|
-
|
111
|
+
// Maximum number of block grid elements per row
|
103
112
|
|
104
113
|
// $block-grid-elements: 12;
|
105
114
|
// $block-grid-default-spacing: 10px;
|
106
115
|
|
107
|
-
|
116
|
+
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
108
117
|
|
109
118
|
// $block-grid-media-queries: true;
|
110
119
|
|
@@ -112,7 +121,7 @@ $em-base: 16px !default;
|
|
112
121
|
// Typography Variables
|
113
122
|
//
|
114
123
|
|
115
|
-
|
124
|
+
// Heading font styles
|
116
125
|
|
117
126
|
// $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
118
127
|
// $header-font-weight: bold;
|
@@ -123,7 +132,7 @@ $em-base: 16px !default;
|
|
123
132
|
// $header-bottom-margin: .5em;
|
124
133
|
// $header-text-rendering: optimizeLegibility;
|
125
134
|
|
126
|
-
|
135
|
+
// Heading font sizes
|
127
136
|
|
128
137
|
// $h1-font-size: emCalc(44px);
|
129
138
|
// $h2-font-size: emCalc(37px);
|
@@ -132,7 +141,7 @@ $em-base: 16px !default;
|
|
132
141
|
// $h5-font-size: emCalc(18px);
|
133
142
|
// $h6-font-size: 1em;
|
134
143
|
|
135
|
-
|
144
|
+
// Subheaders
|
136
145
|
|
137
146
|
// $subheader-line-height: 1.4;
|
138
147
|
// $subheader-font-color: lighten($header-font-color, 30%);
|
@@ -140,12 +149,12 @@ $em-base: 16px !default;
|
|
140
149
|
// $subheader-top-margin: .2em;
|
141
150
|
// $subheader-bottom-margin: .5em;
|
142
151
|
|
143
|
-
|
152
|
+
// <small> styling
|
144
153
|
|
145
154
|
// $small-font-size: 60%;
|
146
155
|
// $small-font-color: lighten($header-font-color, 30%);
|
147
156
|
|
148
|
-
|
157
|
+
// Paragraphs
|
149
158
|
|
150
159
|
// $paragraph-font-family: inherit;
|
151
160
|
// $paragraph-font-weight: normal;
|
@@ -156,26 +165,26 @@ $em-base: 16px !default;
|
|
156
165
|
// $paragraph-aside-line-height: 1.35;
|
157
166
|
// $paragraph-aside-font-style: italic;
|
158
167
|
|
159
|
-
|
168
|
+
// <code> tags
|
160
169
|
|
161
170
|
// $code-color: darken($alert-color, 15%);
|
162
171
|
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
|
163
172
|
// $code-font-weight: bold;
|
164
173
|
|
165
|
-
|
174
|
+
// Anchors
|
166
175
|
|
167
176
|
// $anchor-text-decoration: none;
|
168
177
|
// $anchor-font-color: $primary-color;
|
169
178
|
// $anchor-font-color-hover: darken($primary-color, 5%);
|
170
179
|
|
171
|
-
|
180
|
+
// <hr> element
|
172
181
|
|
173
182
|
// $hr-border-width: 1px;
|
174
183
|
// $hr-border-style: solid;
|
175
184
|
// $hr-border-color: #ddd;
|
176
185
|
// $hr-margin: emCalc(20px);
|
177
186
|
|
178
|
-
|
187
|
+
// Lists
|
179
188
|
|
180
189
|
// $list-style-position: outside;
|
181
190
|
// $list-side-margin: emCalc(18px);
|
@@ -183,7 +192,7 @@ $em-base: 16px !default;
|
|
183
192
|
// $definition-list-header-margin-bottom: .3em;
|
184
193
|
// $definition-list-margin-bottom: emCalc(12px);
|
185
194
|
|
186
|
-
|
195
|
+
// Blockquotes
|
187
196
|
|
188
197
|
// $blockquote-font-color: lighten($header-font-color, 30%);
|
189
198
|
// $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
|
@@ -192,35 +201,35 @@ $em-base: 16px !default;
|
|
192
201
|
// $blockquote-cite-font-color: lighten($header-font-color, 20%);
|
193
202
|
// $blockquote-cite-link-color: $blockquote-cite-font-color;
|
194
203
|
|
195
|
-
|
204
|
+
// Acronym
|
196
205
|
|
197
206
|
// $acronym-underline: 1px dotted #ddd;
|
198
207
|
|
199
|
-
|
208
|
+
// Padding and margin
|
200
209
|
|
201
210
|
// $microformat-padding: emCalc(10px) emCalc(12px);
|
202
211
|
// $microformat-margin: 0 0 emCalc(20px) 0;
|
203
212
|
|
204
|
-
|
213
|
+
// Border styles
|
205
214
|
|
206
215
|
// $microformat-border-width: 1px;
|
207
216
|
// $microformat-border-style: solid;
|
208
217
|
// $microformat-border-color: #ddd;
|
209
218
|
|
210
|
-
|
219
|
+
// Full name font styles
|
211
220
|
|
212
221
|
// $microformat-fullname-font-weight: bold;
|
213
222
|
// $microformat-fullname-font-size: emCalc(15px);
|
214
223
|
|
215
|
-
|
224
|
+
// Summary font styles
|
216
225
|
|
217
226
|
// $microformat-summary-font-weight: bold;
|
218
227
|
|
219
|
-
|
228
|
+
// <abbr> padding
|
220
229
|
|
221
230
|
// $microformat-abbr-padding: 0 emCalc(1px);
|
222
231
|
|
223
|
-
|
232
|
+
// <abbr> font styles
|
224
233
|
|
225
234
|
// $microformat-abbr-font-weight: bold;
|
226
235
|
// $microformat-abbr-font-decoration: none;
|
@@ -229,17 +238,17 @@ $em-base: 16px !default;
|
|
229
238
|
// Form Variables
|
230
239
|
//
|
231
240
|
|
232
|
-
|
241
|
+
// Base for lots of form spacing and positioning styles
|
233
242
|
|
234
243
|
// $form-spacing: emCalc(16px);
|
235
244
|
|
236
|
-
|
245
|
+
// Labels
|
237
246
|
|
238
|
-
// $label-pointer: pointer;
|
239
|
-
// $label-font-size: emCalc(14px);
|
240
|
-
// $label-font-weight: 500;
|
241
|
-
// $label-font-color: lighten(#000, 30%);
|
242
|
-
// $label-bottom-margin: emCalc(3px);
|
247
|
+
// $form-label-pointer: pointer;
|
248
|
+
// $form-label-font-size: emCalc(14px);
|
249
|
+
// $form-label-font-weight: 500;
|
250
|
+
// $form-label-font-color: lighten(#000, 30%);
|
251
|
+
// $form-label-bottom-margin: emCalc(3px);
|
243
252
|
// $input-font-family: inherit;
|
244
253
|
// $input-font-color: rgba(0,0,0,0.75);
|
245
254
|
// $input-font-size: emCalc(14px);
|
@@ -252,7 +261,7 @@ $em-base: 16px !default;
|
|
252
261
|
// $input-disabled-bg: #ddd;
|
253
262
|
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
|
254
263
|
|
255
|
-
|
264
|
+
// Fieldset border and spacing.
|
256
265
|
|
257
266
|
// $fieldset-border-style: solid;
|
258
267
|
// $fieldset-border-width: 1px;
|
@@ -260,13 +269,13 @@ $em-base: 16px !default;
|
|
260
269
|
// $fieldset-padding: emCalc(20px);
|
261
270
|
// $fieldset-margin: emCalc(18px) 0;
|
262
271
|
|
263
|
-
|
272
|
+
// Legends
|
264
273
|
|
265
274
|
// $legend-bg: #fff;
|
266
275
|
// $legend-font-weight: bold;
|
267
276
|
// $legend-padding: 0 emCalc(3px);
|
268
277
|
|
269
|
-
|
278
|
+
// Prefix and postfix input elements
|
270
279
|
|
271
280
|
// $input-prefix-bg: darken(#fff, 5%);
|
272
281
|
// $input-prefix-border-color: darken(#fff, 20%);
|
@@ -276,7 +285,7 @@ $em-base: 16px !default;
|
|
276
285
|
// $input-prefix-font-color: #333;
|
277
286
|
// $input-prefix-font-color-alt: #fff;
|
278
287
|
|
279
|
-
|
288
|
+
// Error states for inputs and labels
|
280
289
|
|
281
290
|
// $input-error-message-padding: emCalc(6px) emCalc(4px);
|
282
291
|
// $input-error-message-top: -($form-spacing) - emCalc(5px);
|
@@ -285,19 +294,19 @@ $em-base: 16px !default;
|
|
285
294
|
// $input-error-message-font-color: #fff;
|
286
295
|
// $input-error-message-font-color-alt: #333;
|
287
296
|
|
288
|
-
|
297
|
+
// Padding for buttons.
|
289
298
|
|
290
299
|
// $button-tny: emCalc(7px);
|
291
300
|
// $button-sml: emCalc(9px);
|
292
301
|
// $button-med: emCalc(12px);
|
293
302
|
// $button-lrg: emCalc(16px);
|
294
303
|
|
295
|
-
|
304
|
+
// Display property.
|
296
305
|
|
297
306
|
// $button-display: inline-block;
|
298
307
|
// $button-margin-bottom: emCalc(20px);
|
299
308
|
|
300
|
-
|
309
|
+
// Button text styles.
|
301
310
|
|
302
311
|
// $button-font-family: inherit;
|
303
312
|
// $button-font-color: #fff;
|
@@ -309,21 +318,21 @@ $em-base: 16px !default;
|
|
309
318
|
// $button-font-weight: bold;
|
310
319
|
// $button-font-align: center;
|
311
320
|
|
312
|
-
|
321
|
+
// Various hover effects.
|
313
322
|
|
314
323
|
// $button-function-factor: 10%;
|
315
324
|
|
316
|
-
|
325
|
+
// Button border styles.
|
317
326
|
|
318
327
|
// $button-border-width: 1px;
|
319
328
|
// $button-border-style: solid;
|
320
329
|
// $button-border-color: darken($primary-color, $button-function-factor);
|
321
330
|
|
322
|
-
|
331
|
+
// Radius used throughout the core.
|
323
332
|
|
324
333
|
// $button-radius: $global-radius;
|
325
334
|
|
326
|
-
|
335
|
+
// Opacity for disabled buttons.
|
327
336
|
|
328
337
|
// $button-disabled-opacity: 0.6;
|
329
338
|
|
@@ -336,28 +345,28 @@ $em-base: 16px !default;
|
|
336
345
|
// $dropdown-button-pip-color: #fff;
|
337
346
|
// $dropdown-button-pip-color-alt: #333;
|
338
347
|
|
339
|
-
|
348
|
+
// Tiny dropdown buttons
|
340
349
|
|
341
350
|
// $dropdown-button-padding-tny: $button-tny * 5;
|
342
351
|
// $dropdown-button-pip-size-tny: $button-tny;
|
343
352
|
// $dropdown-button-pip-right-tny: $button-tny * 2;
|
344
353
|
// $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
|
345
354
|
|
346
|
-
|
355
|
+
// Small dropdown buttons
|
347
356
|
|
348
357
|
// $dropdown-button-padding-sml: $button-sml * 5;
|
349
358
|
// $dropdown-button-pip-size-sml: $button-sml;
|
350
359
|
// $dropdown-button-pip-right-sml: $button-sml * 2;
|
351
360
|
// $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
|
352
361
|
|
353
|
-
|
362
|
+
// Medium dropdown buttons
|
354
363
|
|
355
364
|
// $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
|
356
365
|
// $dropdown-button-pip-size-med: $button-med - emCalc(3px);
|
357
366
|
// $dropdown-button-pip-right-med: $button-med * 2;
|
358
367
|
// $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
|
359
368
|
|
360
|
-
|
369
|
+
// Large dropdown buttons
|
361
370
|
|
362
371
|
// $dropdown-button-padding-lrg: $button-lrg * 4;
|
363
372
|
// $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
|
@@ -368,14 +377,14 @@ $em-base: 16px !default;
|
|
368
377
|
// Split Button Variables
|
369
378
|
//
|
370
379
|
|
371
|
-
|
380
|
+
// Shared styles for Split Buttons
|
372
381
|
|
373
382
|
// $split-button-function-factor: 15%;
|
374
383
|
// $split-button-pip-color: #fff;
|
375
384
|
// $split-button-pip-color-alt: #333;
|
376
385
|
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
|
377
386
|
|
378
|
-
|
387
|
+
// Tiny split buttons
|
379
388
|
|
380
389
|
// $split-button-padding-tny: $button-tny * 9;
|
381
390
|
// $split-button-span-width-tny: $button-tny * 6.5;
|
@@ -383,7 +392,7 @@ $em-base: 16px !default;
|
|
383
392
|
// $split-button-pip-top-tny: $button-tny * 2;
|
384
393
|
// $split-button-pip-left-tny: emCalc(-5px);
|
385
394
|
|
386
|
-
|
395
|
+
// Small split buttons
|
387
396
|
|
388
397
|
// $split-button-padding-sml: $button-sml * 7;
|
389
398
|
// $split-button-span-width-sml: $button-sml * 5;
|
@@ -391,7 +400,7 @@ $em-base: 16px !default;
|
|
391
400
|
// $split-button-pip-top-sml: $button-sml * 1.5;
|
392
401
|
// $split-button-pip-left-sml: emCalc(-9px);
|
393
402
|
|
394
|
-
|
403
|
+
// Medium split buttons
|
395
404
|
|
396
405
|
// $split-button-padding-med: $button-med * 6.4;
|
397
406
|
// $split-button-span-width-med: $button-med * 4;
|
@@ -399,7 +408,7 @@ $em-base: 16px !default;
|
|
399
408
|
// $split-button-pip-top-med: $button-med * 1.5;
|
400
409
|
// $split-button-pip-left-med: emCalc(-9px);
|
401
410
|
|
402
|
-
|
411
|
+
// Large split buttons
|
403
412
|
|
404
413
|
// $split-button-padding-lrg: $button-lrg * 6;
|
405
414
|
// $split-button-span-width-lrg: $button-lrg * 3.75;
|
@@ -411,32 +420,32 @@ $em-base: 16px !default;
|
|
411
420
|
// Alert Variables
|
412
421
|
//
|
413
422
|
|
414
|
-
|
423
|
+
// Alert padding.
|
415
424
|
|
416
425
|
// $alert-padding-top: emCalc(11px);
|
417
426
|
// $alert-padding-left: $alert-padding-top;
|
418
427
|
// $alert-padding-right: $alert-padding-top + emCalc(10px);
|
419
428
|
// $alert-padding-bottom: $alert-padding-top + emCalc(1px);
|
420
429
|
|
421
|
-
|
430
|
+
// Text style.
|
422
431
|
|
423
432
|
// $alert-font-weight: bold;
|
424
433
|
// $alert-font-size: emCalc(14px);
|
425
434
|
// $alert-font-color: #fff;
|
426
435
|
// $alert-font-color-alt: darken($secondary-color, 60%);
|
427
436
|
|
428
|
-
|
437
|
+
// Close hover effect.
|
429
438
|
|
430
439
|
// $alert-function-factor: 10%;
|
431
440
|
|
432
|
-
|
441
|
+
// Border styles.
|
433
442
|
|
434
443
|
// $alert-border-style: solid;
|
435
444
|
// $alert-border-width: 1px;
|
436
445
|
// $alert-border-color: darken($primary-color, $alert-function-factor);
|
437
446
|
// $alert-bottom-margin: emCalc(20px);
|
438
447
|
|
439
|
-
|
448
|
+
// Close buttons
|
440
449
|
|
441
450
|
// $alert-close-color: #333;
|
442
451
|
// $alert-close-position: emCalc(5px);
|
@@ -445,7 +454,7 @@ $em-base: 16px !default;
|
|
445
454
|
// $alert-close-opacity-hover: 0.5;
|
446
455
|
// $alert-close-padding: 5px 4px 4px;
|
447
456
|
|
448
|
-
|
457
|
+
// Border radius
|
449
458
|
|
450
459
|
// $alert-radius: $global-radius;
|
451
460
|
|
@@ -453,16 +462,16 @@ $em-base: 16px !default;
|
|
453
462
|
// Breadcrumb Variables
|
454
463
|
//
|
455
464
|
|
456
|
-
|
465
|
+
// Background color for the breadcrumb container.
|
457
466
|
|
458
467
|
// $crumb-bg: lighten($secondary-color, 5%);
|
459
468
|
|
460
|
-
|
469
|
+
// Padding around the breadcrumbs.
|
461
470
|
|
462
471
|
// $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px);
|
463
472
|
// $crumb-side-padding: emCalc(12px);
|
464
473
|
|
465
|
-
|
474
|
+
// Border styles.
|
466
475
|
|
467
476
|
// $crumb-function-factor: 10%;
|
468
477
|
// $crumb-border-size: 1px;
|
@@ -470,7 +479,7 @@ $em-base: 16px !default;
|
|
470
479
|
// $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
|
471
480
|
// $crumb-radius: $global-radius;
|
472
481
|
|
473
|
-
|
482
|
+
// Various text styles for breadcrumbs.
|
474
483
|
|
475
484
|
// $crumb-font-size: emCalc(11px);
|
476
485
|
// $crumb-font-color: $primary-color;
|
@@ -479,7 +488,7 @@ $em-base: 16px !default;
|
|
479
488
|
// $crumb-font-transform: uppercase;
|
480
489
|
// $crumb-link-decor: underline;
|
481
490
|
|
482
|
-
|
491
|
+
// Slash between breadcrumbs
|
483
492
|
|
484
493
|
// $crumb-slash-color: #aaa;
|
485
494
|
// $crumb-slash: "/";
|
@@ -488,29 +497,29 @@ $em-base: 16px !default;
|
|
488
497
|
// Clearing Variables
|
489
498
|
//
|
490
499
|
|
491
|
-
|
500
|
+
// Background colors for parts of Clearing.
|
492
501
|
|
493
502
|
// $clearing-bg: #111;
|
494
503
|
// $clearing-caption-bg: $clearing-bg;
|
495
504
|
// $clearing-carousel-bg: #111;
|
496
505
|
// $clearing-img-bg: $clearing-bg;
|
497
506
|
|
498
|
-
|
507
|
+
// Close button
|
499
508
|
|
500
509
|
// $clearing-close-color: #fff;
|
501
510
|
// $clearing-close-size: 40px;
|
502
511
|
|
503
|
-
|
512
|
+
// Style the arrows
|
504
513
|
|
505
514
|
// $clearing-arrow-size: 16px;
|
506
515
|
// $clearing-arrow-color: $clearing-close-color;
|
507
516
|
|
508
|
-
|
517
|
+
// Style captions
|
509
518
|
|
510
519
|
// $clearing-caption-font-color: #fff;
|
511
520
|
// $clearing-caption-padding: 10px 30px;
|
512
521
|
|
513
|
-
|
522
|
+
// Make the image and carousel height and style
|
514
523
|
|
515
524
|
// $clearing-active-img-height: 75%;
|
516
525
|
// $clearing-carousel-height: 150px;
|
@@ -521,14 +530,19 @@ $em-base: 16px !default;
|
|
521
530
|
// Custom Form Variables
|
522
531
|
//
|
523
532
|
|
524
|
-
|
533
|
+
// Basic form styles input styles
|
525
534
|
|
526
535
|
// $custom-form-border-color: #ccc;
|
536
|
+
// $custom-form-border-size: 1px;
|
527
537
|
// $custom-form-bg: #fff;
|
528
538
|
// $custom-form-bg-disabled: #ddd;
|
539
|
+
// $custom-form-input-size: 16px;
|
529
540
|
// $custom-form-check-color: #222;
|
541
|
+
// $custom-form-check-size: 14px;
|
542
|
+
// $custom-form-radio-size: 8px;
|
543
|
+
// $custom-form-checkbox-radius: 0px;
|
530
544
|
|
531
|
-
|
545
|
+
// Custom select form element.
|
532
546
|
|
533
547
|
// $custom-select-bg: #fff;
|
534
548
|
// $custom-select-fade-to-color: #f3f3f3;
|
@@ -540,7 +554,7 @@ $em-base: 16px !default;
|
|
540
554
|
// $custom-select-font-color-selected: #141414;
|
541
555
|
// $custom-select-disabled-color: #888;
|
542
556
|
|
543
|
-
|
557
|
+
// Custom select dropdown element.
|
544
558
|
|
545
559
|
// $custom-dropdown-height: 200px;
|
546
560
|
// $custom-dropdown-bg: #fff;
|
@@ -562,30 +576,30 @@ $em-base: 16px !default;
|
|
562
576
|
// Dropdown Variables
|
563
577
|
//
|
564
578
|
|
565
|
-
|
579
|
+
// Height and width styles.
|
566
580
|
|
567
581
|
// $f-dropdown-max-width: 200px;
|
568
582
|
// $f-dropdown-height: auto;
|
569
583
|
// $f-dropdown-max-height: none;
|
570
584
|
// $f-dropdown-margin-top: 2px;
|
571
585
|
|
572
|
-
|
586
|
+
// Background color
|
573
587
|
|
574
588
|
// $f-dropdown-bg: #fff;
|
575
589
|
|
576
|
-
|
590
|
+
// Border styles for dropdowns.
|
577
591
|
|
578
592
|
// $f-dropdown-border-style: solid;
|
579
593
|
// $f-dropdown-border-width: 1px;
|
580
594
|
// $f-dropdown-border-color: darken(#fff, 20%);
|
581
595
|
|
582
|
-
|
596
|
+
// Triangle pip.
|
583
597
|
|
584
598
|
// $f-dropdown-triangle-size: 6px;
|
585
599
|
// $f-dropdown-triangle-color: #fff;
|
586
600
|
// $f-dropdown-triangle-side-offset: 10px;
|
587
601
|
|
588
|
-
|
602
|
+
// List elements.
|
589
603
|
|
590
604
|
// $f-dropdown-list-style: none;
|
591
605
|
// $f-dropdown-font-color: #555;
|
@@ -595,7 +609,7 @@ $em-base: 16px !default;
|
|
595
609
|
// $f-dropdown-list-hover-bg: #eeeeee;
|
596
610
|
// $dropdown-mobile-left: 0;
|
597
611
|
|
598
|
-
|
612
|
+
// When the dropdown has custom content.
|
599
613
|
|
600
614
|
// $f-dropdown-content-padding: emCalc(20px);
|
601
615
|
|
@@ -603,13 +617,13 @@ $em-base: 16px !default;
|
|
603
617
|
// Flex Video Variables
|
604
618
|
//
|
605
619
|
|
606
|
-
|
620
|
+
// Video container padding and margins
|
607
621
|
|
608
622
|
// $flex-video-padding-top: emCalc(25px);
|
609
623
|
// $flex-video-padding-bottom: 67.5%;
|
610
624
|
// $flex-video-margin-bottom: emCalc(16px);
|
611
625
|
|
612
|
-
|
626
|
+
// Widescreen bottom padding
|
613
627
|
|
614
628
|
// $flex-video-widescreen-padding-bottom: 57.25%;
|
615
629
|
|
@@ -617,21 +631,21 @@ $em-base: 16px !default;
|
|
617
631
|
// Inline List Variables
|
618
632
|
//
|
619
633
|
|
620
|
-
|
634
|
+
// Margins and padding of the inline list.
|
621
635
|
|
622
636
|
// $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
|
623
637
|
// $inline-list-margin: 0 0;
|
624
638
|
// $inline-list-padding: 0;
|
625
639
|
|
626
|
-
|
640
|
+
// Overflow of the inline list.
|
627
641
|
|
628
642
|
// $inline-list-overflow: hidden;
|
629
643
|
|
630
|
-
|
644
|
+
// List items
|
631
645
|
|
632
646
|
// $inline-list-display: block;
|
633
647
|
|
634
|
-
|
648
|
+
// Elments within list items
|
635
649
|
|
636
650
|
// $inline-list-children-display: block;
|
637
651
|
|
@@ -639,7 +653,7 @@ $em-base: 16px !default;
|
|
639
653
|
// Joyride Variables
|
640
654
|
//
|
641
655
|
|
642
|
-
|
656
|
+
// Joyride styles
|
643
657
|
|
644
658
|
// $joyride-tip-bg: rgb(0,0,0);
|
645
659
|
// $joyride-tip-default-width: 300px;
|
@@ -648,29 +662,29 @@ $em-base: 16px !default;
|
|
648
662
|
// $joyride-tip-radius: 4px;
|
649
663
|
// $joyride-tip-position-offset: 22px;
|
650
664
|
|
651
|
-
|
665
|
+
// Tip font styles
|
652
666
|
|
653
667
|
// $joyride-tip-font-color: #fff;
|
654
668
|
// $joyride-tip-font-size: emCalc(14px);
|
655
669
|
// $joyride-tip-header-weight: bold;
|
656
670
|
|
657
|
-
|
671
|
+
// Changes the nub size
|
658
672
|
|
659
673
|
// $joyride-tip-nub-size: 14px;
|
660
674
|
|
661
|
-
|
675
|
+
// Adjusts the styles for the timer when its enabled
|
662
676
|
|
663
677
|
// $joyride-tip-timer-width: 50px;
|
664
678
|
// $joyride-tip-timer-height: 3px;
|
665
679
|
// $joyride-tip-timer-color: #666;
|
666
680
|
|
667
|
-
|
681
|
+
// Changes up the styles for the close button
|
668
682
|
|
669
683
|
// $joyride-tip-close-color: #777;
|
670
684
|
// $joyride-tip-close-size: 30px;
|
671
685
|
// $joyride-tip-close-weight: normal;
|
672
686
|
|
673
|
-
|
687
|
+
// When Joyride is filling the screen, style for the bg
|
674
688
|
|
675
689
|
// $joyride-screenfill: rgba(0,0,0,0.5);
|
676
690
|
|
@@ -678,7 +692,7 @@ $em-base: 16px !default;
|
|
678
692
|
// Keystroke Variables
|
679
693
|
//
|
680
694
|
|
681
|
-
|
695
|
+
// Text styles.
|
682
696
|
|
683
697
|
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
|
684
698
|
// $keystroke-font-size: emCalc(15px);
|
@@ -686,11 +700,11 @@ $em-base: 16px !default;
|
|
686
700
|
// $keystroke-font-color-alt: #fff;
|
687
701
|
// $keystroke-function-factor: 7%;
|
688
702
|
|
689
|
-
|
703
|
+
// Keystroke padding.
|
690
704
|
|
691
705
|
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
|
692
706
|
|
693
|
-
|
707
|
+
// Background and border styles.
|
694
708
|
|
695
709
|
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
|
696
710
|
// $keystroke-border-style: solid;
|
@@ -702,12 +716,12 @@ $em-base: 16px !default;
|
|
702
716
|
// Label Variables
|
703
717
|
//
|
704
718
|
|
705
|
-
|
719
|
+
// Style the labels
|
706
720
|
|
707
721
|
// $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
|
708
722
|
// $label-radius: $global-radius;
|
709
723
|
|
710
|
-
|
724
|
+
// We use these to style the label text
|
711
725
|
|
712
726
|
// $label-font-sizing: emCalc(14px);
|
713
727
|
// $label-font-weight: bold;
|
@@ -718,7 +732,7 @@ $em-base: 16px !default;
|
|
718
732
|
// Magellan Variables
|
719
733
|
//
|
720
734
|
|
721
|
-
|
735
|
+
// Basic visual styles
|
722
736
|
|
723
737
|
// $magellan-bg: #fff;
|
724
738
|
// $magellan-padding: 10px;
|
@@ -727,7 +741,7 @@ $em-base: 16px !default;
|
|
727
741
|
// Orbit Settings
|
728
742
|
//
|
729
743
|
|
730
|
-
|
744
|
+
// Caption styles
|
731
745
|
|
732
746
|
// $orbit-container-bg: #f5f5f5;
|
733
747
|
// $orbit-caption-bg-old-browser: #000;
|
@@ -735,28 +749,28 @@ $em-base: 16px !default;
|
|
735
749
|
// $orbit-caption-bg: rgba(0,0,0,0.6);
|
736
750
|
// $orbit-caption-font-color: #fff;
|
737
751
|
|
738
|
-
|
752
|
+
// Left/right nav styles
|
739
753
|
|
740
754
|
// $orbit-nav-bg-old: rgb(0,0,0);
|
741
755
|
// $orbit-nav-bg: rgba(0,0,0,0.6);
|
742
756
|
|
743
|
-
|
757
|
+
// Timer styles
|
744
758
|
|
745
759
|
// $orbit-timer-bg-old: rgb(0,0,0);
|
746
760
|
// $orbit-timer-bg: rgba(0,0,0,0.6);
|
747
761
|
|
748
|
-
|
762
|
+
// Bullet nav styles
|
749
763
|
|
750
764
|
// $orbit-bullet-nav-color: #999;
|
751
765
|
// $orbit-bullet-nav-color-active: #222;
|
752
766
|
|
753
|
-
|
767
|
+
// Slide numbers
|
754
768
|
|
755
769
|
// $orbit-slide-number-bg: rgb(0,0,0);
|
756
770
|
// $orbit-slide-number-font-color: #fff;
|
757
771
|
// $orbit-slide-number-padding: emCalc(5px);
|
758
772
|
|
759
|
-
|
773
|
+
// Margin for when Orbit is stacked on small screens
|
760
774
|
|
761
775
|
// $stack-on-small-margin-bottom: emCalc(20px); // Doesn't quite work yet
|
762
776
|
|
@@ -764,12 +778,12 @@ $em-base: 16px !default;
|
|
764
778
|
// Pagination Variables
|
765
779
|
//
|
766
780
|
|
767
|
-
|
781
|
+
// Pagination container
|
768
782
|
|
769
783
|
// $pagination-height: emCalc(24px);
|
770
784
|
// $pagination-margin: emCalc(-5px);
|
771
785
|
|
772
|
-
|
786
|
+
// List-item properties
|
773
787
|
|
774
788
|
// $pagination-li-float: $default-float;
|
775
789
|
// $pagination-li-height: emCalc(24px);
|
@@ -777,19 +791,19 @@ $em-base: 16px !default;
|
|
777
791
|
// $pagination-li-font-size: emCalc(14px);
|
778
792
|
// $pagination-li-margin: emCalc(5px);
|
779
793
|
|
780
|
-
|
794
|
+
// Pagination anchor links
|
781
795
|
|
782
796
|
// $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
|
783
797
|
// $pagination-link-font-color: #999;
|
784
798
|
// $pagination-link-active-bg: darken(#fff, 10%);
|
785
799
|
|
786
|
-
|
800
|
+
// Disabled anchor links
|
787
801
|
|
788
802
|
// $pagination-link-unavailable-cursor: default;
|
789
803
|
// $pagination-link-unavailable-font-color: #999;
|
790
804
|
// $pagination-link-unavailable-bg-active: transparent;
|
791
805
|
|
792
|
-
|
806
|
+
// Currently selected anchor links
|
793
807
|
|
794
808
|
// $pagination-link-current-background: $primary-color;
|
795
809
|
// $pagination-link-current-font-color: #fff;
|
@@ -801,23 +815,23 @@ $em-base: 16px !default;
|
|
801
815
|
// Panel Variables
|
802
816
|
//
|
803
817
|
|
804
|
-
|
818
|
+
// Background and border styles
|
805
819
|
|
806
820
|
// $panel-bg: darken(#fff, 5%);
|
807
821
|
// $panel-border-style: solid;
|
808
822
|
// $panel-border-size: 1px;
|
809
823
|
|
810
|
-
|
824
|
+
// Control how much we darken things on hover
|
811
825
|
|
812
826
|
// $panel-function-factor: 10%;
|
813
827
|
// $panel-border-color: darken($panel-bg, $panel-function-factor);
|
814
828
|
|
815
|
-
|
829
|
+
// Inner padding and bottom margin
|
816
830
|
|
817
831
|
// $panel-margin-bottom: emCalc(20px);
|
818
832
|
// $panel-padding: emCalc(20px);
|
819
833
|
|
820
|
-
|
834
|
+
// Font colors
|
821
835
|
|
822
836
|
// $panel-font-color: #333;
|
823
837
|
// $panel-font-color-alt: #fff;
|
@@ -826,15 +840,15 @@ $em-base: 16px !default;
|
|
826
840
|
// Pricing Table Variables
|
827
841
|
//
|
828
842
|
|
829
|
-
|
843
|
+
// Border color
|
830
844
|
|
831
845
|
// $price-table-border: solid 1px #ddd;
|
832
846
|
|
833
|
-
|
847
|
+
// Bottom margin of the pricing table
|
834
848
|
|
835
849
|
// $price-table-margin-bottom: emCalc(20px);
|
836
850
|
|
837
|
-
|
851
|
+
// Control the title styles
|
838
852
|
|
839
853
|
// $price-title-bg: #ddd;
|
840
854
|
// $price-title-padding: emCalc(15px) emCalc(20px);
|
@@ -843,7 +857,7 @@ $em-base: 16px !default;
|
|
843
857
|
// $price-title-weight: bold;
|
844
858
|
// $price-title-size: emCalc(16px);
|
845
859
|
|
846
|
-
|
860
|
+
// Control the price styles
|
847
861
|
|
848
862
|
// $price-money-bg: #eee;
|
849
863
|
// $price-money-padding: emCalc(15px) emCalc(20px);
|
@@ -852,7 +866,7 @@ $em-base: 16px !default;
|
|
852
866
|
// $price-money-weight: normal;
|
853
867
|
// $price-money-size: emCalc(20px);
|
854
868
|
|
855
|
-
|
869
|
+
// Description styles
|
856
870
|
|
857
871
|
// $price-bg: #fff;
|
858
872
|
// $price-desc-color: #777;
|
@@ -863,7 +877,7 @@ $em-base: 16px !default;
|
|
863
877
|
// $price-desc-line-height: 1.4;
|
864
878
|
// $price-desc-bottom-border: dotted 1px #ddd;
|
865
879
|
|
866
|
-
|
880
|
+
// List item styles
|
867
881
|
|
868
882
|
// $price-item-color: #333;
|
869
883
|
// $price-item-padding: emCalc(15px);
|
@@ -872,7 +886,7 @@ $em-base: 16px !default;
|
|
872
886
|
// $price-item-weight: normal;
|
873
887
|
// $price-item-bottom-border: dotted 1px #ddd;
|
874
888
|
|
875
|
-
|
889
|
+
// CTA area styles
|
876
890
|
|
877
891
|
// $price-cta-bg: #f5f5f5;
|
878
892
|
// $price-cta-align: center;
|
@@ -882,24 +896,24 @@ $em-base: 16px !default;
|
|
882
896
|
// Progress Bar Variables
|
883
897
|
//
|
884
898
|
|
885
|
-
|
899
|
+
// Progress bar height
|
886
900
|
|
887
901
|
// $progress-bar-height: emCalc(25px);
|
888
902
|
// $progress-bar-color: transparent;
|
889
903
|
|
890
|
-
|
904
|
+
// Border styles
|
891
905
|
|
892
906
|
// $progress-bar-border-color: darken(#fff, 20%);
|
893
907
|
// $progress-bar-border-size: 1px;
|
894
908
|
// $progress-bar-border-style: solid;
|
895
909
|
// $progress-bar-border-radius: $global-radius;
|
896
910
|
|
897
|
-
|
911
|
+
// Margin & padding
|
898
912
|
|
899
913
|
// $progress-bar-pad: emCalc(2px);
|
900
914
|
// $progress-bar-margin-bottom: emCalc(10px);
|
901
915
|
|
902
|
-
|
916
|
+
// Meter colors
|
903
917
|
|
904
918
|
// $progress-meter-color: $primary-color;
|
905
919
|
// $progress-meter-secondary-color: $secondary-color;
|
@@ -910,12 +924,12 @@ $em-base: 16px !default;
|
|
910
924
|
// Reveal Variables
|
911
925
|
//
|
912
926
|
|
913
|
-
|
927
|
+
// Reveal overlay.
|
914
928
|
|
915
929
|
// $reveal-overlay-bg: rgba(#000, .45);
|
916
930
|
// $reveal-overlay-bg-old: #000;
|
917
931
|
|
918
|
-
|
932
|
+
// Modal itself.
|
919
933
|
|
920
934
|
// $reveal-modal-bg: #fff;
|
921
935
|
// $reveal-position-top: 50px;
|
@@ -923,7 +937,7 @@ $em-base: 16px !default;
|
|
923
937
|
// $reveal-modal-padding: emCalc(20px);
|
924
938
|
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
|
925
939
|
|
926
|
-
|
940
|
+
// Reveal close button
|
927
941
|
|
928
942
|
// $reveal-close-font-size: emCalc(22px);
|
929
943
|
// $reveal-close-top: emCalc(8px);
|
@@ -931,7 +945,7 @@ $em-base: 16px !default;
|
|
931
945
|
// $reveal-close-color: #aaa;
|
932
946
|
// $reveal-close-weight: bold;
|
933
947
|
|
934
|
-
|
948
|
+
// Modal border
|
935
949
|
|
936
950
|
// $reveal-border-style: solid;
|
937
951
|
// $reveal-border-width: 1px;
|
@@ -941,25 +955,25 @@ $em-base: 16px !default;
|
|
941
955
|
// Section Variables
|
942
956
|
//
|
943
957
|
|
944
|
-
|
958
|
+
// Padding and hover factor
|
945
959
|
|
946
960
|
// $section-padding: emCalc(15px);
|
947
961
|
// $section-function-factor: 10%;
|
948
962
|
|
949
|
-
|
963
|
+
// Titles
|
950
964
|
|
951
965
|
// $section-title-color: #333;
|
952
966
|
// $section-title-bg: #efefef;
|
953
967
|
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
|
954
968
|
// $section-title-bg-active-tabs: #fff;
|
955
969
|
|
956
|
-
|
970
|
+
// Border size
|
957
971
|
|
958
972
|
// $section-border-size: 1px;
|
959
973
|
// $section-border-style: solid;
|
960
974
|
// $section-border-color: #ccc;
|
961
975
|
|
962
|
-
|
976
|
+
// Color of the background and some size options
|
963
977
|
|
964
978
|
// $section-content-bg: #fff;
|
965
979
|
// $section-vertical-nav-min-width: emCalc(200px);
|
@@ -970,24 +984,24 @@ $em-base: 16px !default;
|
|
970
984
|
// Side Nav Variables
|
971
985
|
//
|
972
986
|
|
973
|
-
|
987
|
+
// Padding
|
974
988
|
|
975
989
|
// $side-nav-padding: emCalc(14px) 0;
|
976
990
|
|
977
|
-
|
991
|
+
// List styles
|
978
992
|
|
979
993
|
// $side-nav-list-type: none;
|
980
994
|
// $side-nav-list-position: inside;
|
981
995
|
// $side-nav-list-margin: 0 0 emCalc(7px) 0;
|
982
996
|
|
983
|
-
|
997
|
+
// Link styles
|
984
998
|
|
985
999
|
// $side-nav-link-color: $primary-color;
|
986
1000
|
// $side-nav-link-color-active: lighten(#000, 30%);
|
987
1001
|
// $side-nav-font-size: emCalc(14px);
|
988
1002
|
// $side-nav-font-weight: bold;
|
989
1003
|
|
990
|
-
|
1004
|
+
// Border styles
|
991
1005
|
|
992
1006
|
// $side-nav-divider-size: 1px;
|
993
1007
|
// $side-nav-divider-style: solid;
|
@@ -997,12 +1011,12 @@ $em-base: 16px !default;
|
|
997
1011
|
// Sub Nav Variables
|
998
1012
|
//
|
999
1013
|
|
1000
|
-
|
1014
|
+
// Margin and padding
|
1001
1015
|
|
1002
1016
|
// $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
|
1003
1017
|
// $sub-nav-list-padding-top: emCalc(4px);
|
1004
1018
|
|
1005
|
-
|
1019
|
+
// Definition
|
1006
1020
|
|
1007
1021
|
// $sub-nav-font-size: emCalc(14px);
|
1008
1022
|
// $sub-nav-font-color: #999;
|
@@ -1010,7 +1024,7 @@ $em-base: 16px !default;
|
|
1010
1024
|
// $sub-nav-text-decoration: none;
|
1011
1025
|
// $sub-nav-border-radius: 1000px;
|
1012
1026
|
|
1013
|
-
|
1027
|
+
// Active item styles
|
1014
1028
|
|
1015
1029
|
// $sub-nav-active-font-weight: bold;
|
1016
1030
|
// $sub-nav-active-bg: $primary-color;
|
@@ -1022,14 +1036,14 @@ $em-base: 16px !default;
|
|
1022
1036
|
// Switch Variables
|
1023
1037
|
//
|
1024
1038
|
|
1025
|
-
|
1039
|
+
// Border styles and background colors for the switch container
|
1026
1040
|
|
1027
1041
|
// $switch-border-color: darken(#fff, 20%);
|
1028
1042
|
// $switch-border-style: solid;
|
1029
1043
|
// $switch-border-width: 1px;
|
1030
1044
|
// $switch-bg: #fff;
|
1031
1045
|
|
1032
|
-
|
1046
|
+
// Switch heights for our default classes
|
1033
1047
|
|
1034
1048
|
// $switch-height-tny: 22px;
|
1035
1049
|
// $switch-height-sml: 28px;
|
@@ -1037,7 +1051,7 @@ $em-base: 16px !default;
|
|
1037
1051
|
// $switch-height-lrg: 44px;
|
1038
1052
|
// $switch-bottom-margin: emCalc(20px);
|
1039
1053
|
|
1040
|
-
|
1054
|
+
// Font sizes for our classes.
|
1041
1055
|
|
1042
1056
|
// $switch-font-size-tny: 11px;
|
1043
1057
|
// $switch-font-size-sml: 12px;
|
@@ -1045,7 +1059,7 @@ $em-base: 16px !default;
|
|
1045
1059
|
// $switch-font-size-lrg: 17px;
|
1046
1060
|
// $switch-label-side-padding: 6px;
|
1047
1061
|
|
1048
|
-
|
1062
|
+
// Switch-paddle
|
1049
1063
|
|
1050
1064
|
// $switch-paddle-bg: #fff;
|
1051
1065
|
// $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
|
@@ -1057,7 +1071,7 @@ $em-base: 16px !default;
|
|
1057
1071
|
// $switch-positive-color: lighten($success-color, 50%);
|
1058
1072
|
// $switch-negative-color: #f5f5f5;
|
1059
1073
|
|
1060
|
-
|
1074
|
+
// Outline Style for tabbing through switches
|
1061
1075
|
|
1062
1076
|
// $switch-label-outline: 1px dotted #888;
|
1063
1077
|
|
@@ -1065,18 +1079,18 @@ $em-base: 16px !default;
|
|
1065
1079
|
// Table Variables
|
1066
1080
|
//
|
1067
1081
|
|
1068
|
-
|
1082
|
+
// Background color for the table and even rows
|
1069
1083
|
|
1070
1084
|
// $table-bg: #fff;
|
1071
1085
|
// $table-even-row-bg: #f9f9f9;
|
1072
1086
|
|
1073
|
-
|
1087
|
+
// Table cell border style
|
1074
1088
|
|
1075
1089
|
// $table-border-style: solid;
|
1076
1090
|
// $table-border-size: 1px;
|
1077
1091
|
// $table-border-color: #ddd;
|
1078
1092
|
|
1079
|
-
|
1093
|
+
// Table head styles
|
1080
1094
|
|
1081
1095
|
// $table-head-bg: #f5f5f5;
|
1082
1096
|
// $table-head-font-size: emCalc(14px);
|
@@ -1084,14 +1098,14 @@ $em-base: 16px !default;
|
|
1084
1098
|
// $table-head-font-weight: bold;
|
1085
1099
|
// $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
|
1086
1100
|
|
1087
|
-
|
1101
|
+
// Row padding and font styles
|
1088
1102
|
|
1089
1103
|
// $table-row-padding: emCalc(9px) emCalc(10px);
|
1090
1104
|
// $table-row-font-size: emCalc(14px);
|
1091
1105
|
// $table-row-font-color: #222;
|
1092
1106
|
// $table-line-height: emCalc(18px);
|
1093
1107
|
|
1094
|
-
|
1108
|
+
// Display and margin of tables
|
1095
1109
|
|
1096
1110
|
// $table-display: table-cell;
|
1097
1111
|
// $table-margin-bottom: emCalc(20px);
|
@@ -1100,7 +1114,7 @@ $em-base: 16px !default;
|
|
1100
1114
|
// Image Thumbnail Variables
|
1101
1115
|
//
|
1102
1116
|
|
1103
|
-
|
1117
|
+
// Border styles
|
1104
1118
|
|
1105
1119
|
// $thumb-border-style: solid;
|
1106
1120
|
// $thumb-border-width: 4px;
|
@@ -1108,7 +1122,7 @@ $em-base: 16px !default;
|
|
1108
1122
|
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
|
1109
1123
|
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
|
1110
1124
|
|
1111
|
-
|
1125
|
+
// Radius and transition speed for thumbs
|
1112
1126
|
|
1113
1127
|
// $thumb-radius: $global-radius;
|
1114
1128
|
// $thumb-transition-speed: 200ms;
|
@@ -1141,32 +1155,32 @@ $em-base: 16px !default;
|
|
1141
1155
|
// Top Bar Variables
|
1142
1156
|
//
|
1143
1157
|
|
1144
|
-
|
1158
|
+
// Background color for the top bar
|
1145
1159
|
|
1146
1160
|
// $topbar-bg: #111;
|
1147
1161
|
|
1148
|
-
|
1162
|
+
// Height and margin
|
1149
1163
|
|
1150
1164
|
// $topbar-height: 45px;
|
1151
1165
|
// $topbar-margin-bottom: emCalc(30px);
|
1152
1166
|
|
1153
|
-
|
1167
|
+
// Input height for top bar
|
1154
1168
|
|
1155
1169
|
// $topbar-input-height: 2.45em;
|
1156
1170
|
|
1157
|
-
|
1171
|
+
// Title in the top bar
|
1158
1172
|
|
1159
1173
|
// $topbar-title-weight: bold;
|
1160
1174
|
// $topbar-title-font-size: emCalc(17px);
|
1161
1175
|
|
1162
|
-
|
1176
|
+
// Link colors and styles for top-level nav
|
1163
1177
|
|
1164
1178
|
// $topbar-link-color: #fff;
|
1165
1179
|
// $topbar-link-weight: bold;
|
1166
1180
|
// $topbar-link-font-size: emCalc(13px);
|
1167
1181
|
// $topbar-link-hover-lightness: -30% !default; // Darken by 30%
|
1168
1182
|
|
1169
|
-
|
1183
|
+
// Top bar dropdown elements
|
1170
1184
|
|
1171
1185
|
// $topbar-dropdown-bg: #333;
|
1172
1186
|
// $topbar-dropdown-link-color: #fff;
|
@@ -1175,7 +1189,7 @@ $em-base: 16px !default;
|
|
1175
1189
|
// $topbar-dropdown-toggle-alpha: 0.5;
|
1176
1190
|
// $dropdown-label-color: #555;
|
1177
1191
|
|
1178
|
-
|
1192
|
+
// Top menu icon styles
|
1179
1193
|
|
1180
1194
|
// $topbar-menu-link-transform: uppercase;
|
1181
1195
|
// $topbar-menu-link-font-size: emCalc(13px);
|
@@ -1185,8 +1199,8 @@ $em-base: 16px !default;
|
|
1185
1199
|
// $topbar-menu-link-color-toggled: #888;
|
1186
1200
|
// $topbar-menu-icon-color-toggled: #888;
|
1187
1201
|
|
1188
|
-
|
1202
|
+
// Transitions and breakpoint styles
|
1189
1203
|
|
1190
1204
|
// $topbar-transition-speed: 300ms;
|
1191
1205
|
// $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
|
1192
|
-
// $topbar-media-query: "only screen and (min-width "#{$topbar-breakpoint}")";
|
1206
|
+
// $topbar-media-query: "only screen and (min-width: "#{$topbar-breakpoint}")";
|