locomotivecms_wagon 1.5.1 → 1.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/generators/foundation5/public/stylesheets/foundation/_functions.scss +3 -2
- data/generators/foundation5/public/stylesheets/foundation/_settings.scss +419 -274
- data/generators/foundation5/public/stylesheets/foundation/components/_accordion.scss +110 -6
- data/generators/foundation5/public/stylesheets/foundation/components/_alert-boxes.scss +4 -2
- data/generators/foundation5/public/stylesheets/foundation/components/_block-grid.scss +2 -2
- data/generators/foundation5/public/stylesheets/foundation/components/_breadcrumbs.scss +8 -3
- data/generators/foundation5/public/stylesheets/foundation/components/_button-groups.scss +98 -9
- data/generators/foundation5/public/stylesheets/foundation/components/_buttons.scss +66 -29
- data/generators/foundation5/public/stylesheets/foundation/components/_clearing.scss +5 -5
- data/generators/foundation5/public/stylesheets/foundation/components/_dropdown-buttons.scss +11 -10
- data/generators/foundation5/public/stylesheets/foundation/components/_dropdown.scss +49 -35
- data/generators/foundation5/public/stylesheets/foundation/components/_forms.scss +125 -38
- data/generators/foundation5/public/stylesheets/foundation/components/_global.scss +64 -38
- data/generators/foundation5/public/stylesheets/foundation/components/_grid.scss +19 -4
- data/generators/foundation5/public/stylesheets/foundation/components/_icon-bar.scss +293 -0
- data/generators/foundation5/public/stylesheets/foundation/components/_joyride.scss +11 -9
- data/generators/foundation5/public/stylesheets/foundation/components/_keystrokes.scss +4 -4
- data/generators/foundation5/public/stylesheets/foundation/components/_labels.scss +5 -3
- data/generators/foundation5/public/stylesheets/foundation/components/_magellan.scss +1 -1
- data/generators/foundation5/public/stylesheets/foundation/components/_offcanvas.scss +190 -33
- data/generators/foundation5/public/stylesheets/foundation/components/_orbit.scss +92 -147
- data/generators/foundation5/public/stylesheets/foundation/components/_pagination.scss +22 -10
- data/generators/foundation5/public/stylesheets/foundation/components/_panels.scss +12 -7
- data/generators/foundation5/public/stylesheets/foundation/components/_pricing-tables.scss +11 -11
- data/generators/foundation5/public/stylesheets/foundation/components/_progress-bars.scss +2 -2
- data/generators/foundation5/public/stylesheets/foundation/components/_range-slider.scss +29 -9
- data/generators/foundation5/public/stylesheets/foundation/components/_reveal.scss +62 -56
- data/generators/foundation5/public/stylesheets/foundation/components/_side-nav.scss +3 -2
- data/generators/foundation5/public/stylesheets/foundation/components/_split-buttons.scss +2 -2
- data/generators/foundation5/public/stylesheets/foundation/components/_sub-nav.scss +4 -6
- data/generators/foundation5/public/stylesheets/foundation/components/_switches.scss +230 -0
- data/generators/foundation5/public/stylesheets/foundation/components/_tables.scss +13 -7
- data/generators/foundation5/public/stylesheets/foundation/components/_tabs.scss +22 -8
- data/generators/foundation5/public/stylesheets/foundation/components/_thumbs.scss +2 -4
- data/generators/foundation5/public/stylesheets/foundation/components/_toolbar.scss +70 -0
- data/generators/foundation5/public/stylesheets/foundation/components/_tooltips.scss +9 -7
- data/generators/foundation5/public/stylesheets/foundation/components/_top-bar.scss +82 -56
- data/generators/foundation5/public/stylesheets/foundation/components/_type.scss +23 -11
- data/generators/foundation5/public/stylesheets/foundation/components/_visibility.scss +7 -7
- data/generators/foundation5/public/stylesheets/foundation.css +4327 -3587
- data/generators/foundation5/public/stylesheets/foundation.css.scss +38 -38
- data/generators/foundation5/public/stylesheets/normalize.css +71 -139
- data/generators/foundation5/public/stylesheets/normalize.css.scss +5 -3
- data/lib/locomotive/wagon/cli.rb +24 -1
- data/lib/locomotive/wagon/generators/content_type.rb +4 -1
- data/lib/locomotive/wagon/generators/page.rb +10 -5
- data/lib/locomotive/wagon/generators/relationship.rb +100 -0
- data/lib/locomotive/wagon/generators/site/foundation5.rb +2 -2
- data/lib/locomotive/wagon/generators/snippet.rb +3 -3
- data/lib/locomotive/wagon/liquid/tags/locale_switcher.rb +2 -2
- data/lib/locomotive/wagon/version.rb +1 -1
- data/lib/locomotive/wagon.rb +1 -0
- data/locomotivecms_wagon.gemspec +1 -1
- data/spec/fixtures/blog/app/content_types/comments.yml +20 -0
- data/spec/fixtures/blog/app/content_types/posts.yml +19 -0
- data/spec/fixtures/blog/app/views/pages/404.liquid +11 -0
- data/spec/fixtures/blog/app/views/pages/about-us.liquid.haml +29 -0
- data/spec/fixtures/blog/app/views/pages/index.liquid +25 -0
- data/spec/fixtures/blog/app/views/pages/posts/content_type_template.fr.liquid +14 -0
- data/spec/fixtures/blog/app/views/pages/posts/content_type_template.liquid +15 -0
- data/spec/fixtures/blog/app/views/pages/posts.fr.liquid +13 -0
- data/spec/fixtures/blog/app/views/pages/posts.liquid +13 -0
- data/spec/fixtures/blog/config/deploy.yml +4 -0
- data/spec/fixtures/blog/config/site.yml +16 -0
- data/spec/fixtures/blog/data/comments.yml +16 -0
- data/spec/fixtures/blog/data/posts.yml +7 -0
- data/spec/integration/generators/page_spec.rb +87 -0
- data/spec/integration/generators/relationship_spec.rb +102 -0
- data/spec/support/helpers.rb +19 -1
- metadata +38 -6
- data/generators/foundation5/public/stylesheets/foundation/components/_reveal-new.scss +0 -0
- data/generators/foundation5/public/stylesheets/foundation/components/_switch.scss +0 -294
@@ -3,8 +3,53 @@
|
|
3
3
|
// Licensed under MIT Open Source
|
4
4
|
|
5
5
|
//
|
6
|
-
|
6
|
+
|
7
|
+
// Table of Contents
|
8
|
+
// Foundation Settings
|
7
9
|
//
|
10
|
+
// a. Base
|
11
|
+
// b. Grid
|
12
|
+
// c. Global
|
13
|
+
// d. Media Query Ranges
|
14
|
+
// e. Typography
|
15
|
+
// 01. Accordion
|
16
|
+
// 02. Alert Boxes
|
17
|
+
// 03. Block Grid
|
18
|
+
// 04. Breadcrumbs
|
19
|
+
// 05. Buttons
|
20
|
+
// 06. Button Groups
|
21
|
+
// 07. Clearing
|
22
|
+
// 08. Dropdown
|
23
|
+
// 09. Dropdown Buttons
|
24
|
+
// 10. Flex Video
|
25
|
+
// 11. Forms
|
26
|
+
// 12. Icon Bar
|
27
|
+
// 13. Inline Lists
|
28
|
+
// 14. Joyride
|
29
|
+
// 15. Keystrokes
|
30
|
+
// 16. Labels
|
31
|
+
// 17. Magellan
|
32
|
+
// 18. Off-canvas
|
33
|
+
// 19. Orbit
|
34
|
+
// 20. Pagination
|
35
|
+
// 21. Panels
|
36
|
+
// 22. Pricing Tables
|
37
|
+
// 23. Progress Bar
|
38
|
+
// 24. Range Slider
|
39
|
+
// 25. Reveal
|
40
|
+
// 26. Side Nav
|
41
|
+
// 27. Split Buttons
|
42
|
+
// 28. Sub Nav
|
43
|
+
// 29. Switch
|
44
|
+
// 30. Tables
|
45
|
+
// 31. Tabs
|
46
|
+
// 32. Thumbnails
|
47
|
+
// 33. Tooltips
|
48
|
+
// 34. Top Bar
|
49
|
+
// 36. Visibility Classes
|
50
|
+
|
51
|
+
// a. Base
|
52
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
8
53
|
|
9
54
|
// This is the default html and body font-size for the base rem value.
|
10
55
|
// $rem-base: 16px;
|
@@ -12,8 +57,6 @@
|
|
12
57
|
// Allows the use of rem-calc() or lower-bound() in your settings
|
13
58
|
@import "foundation/functions";
|
14
59
|
|
15
|
-
// $experimental: true;
|
16
|
-
|
17
60
|
// The default font-size is set to 100% of the browser style sheet (usually 16px)
|
18
61
|
// for compatibility with browser-based text zoom or user-set defaults.
|
19
62
|
|
@@ -26,24 +69,64 @@
|
|
26
69
|
// $base-line-height: 150%;
|
27
70
|
|
28
71
|
// We use this to control whether or not CSS classes come through in the gem files.
|
29
|
-
|
72
|
+
$include-html-classes: true;
|
30
73
|
// $include-print-styles: true;
|
31
|
-
|
74
|
+
$include-html-global-classes: $include-html-classes;
|
32
75
|
|
33
|
-
// Grid
|
76
|
+
// b. Grid
|
77
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
34
78
|
|
35
79
|
// $include-html-grid-classes: $include-html-classes;
|
36
80
|
// $include-xl-html-grid-classes: false;
|
37
81
|
|
38
82
|
// $row-width: rem-calc(1000);
|
39
83
|
// $total-columns: 12;
|
84
|
+
// $column-gutter: rem-calc(30);
|
40
85
|
|
41
|
-
// Global
|
86
|
+
// c. Global
|
87
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
88
|
+
|
89
|
+
// We use these to define default font stacks
|
90
|
+
// $font-family-sans-serif: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
91
|
+
// $font-family-serif: Georgia, Cambria, "Times New Roman", Times, serif;
|
92
|
+
// $font-family-monospace: Consolas, "Liberation Mono", Courier, monospace;
|
93
|
+
|
94
|
+
// We use these to define default font weights
|
95
|
+
// $font-weight-normal: normal !default;
|
96
|
+
// $font-weight-bold: bold !default;
|
97
|
+
|
98
|
+
// $white : #FFFFFF;
|
99
|
+
// $ghost : #FAFAFA;
|
100
|
+
// $snow : #F9F9F9;
|
101
|
+
// $vapor : #F6F6F6;
|
102
|
+
// $white-smoke : #F5F5F5;
|
103
|
+
// $silver : #EFEFEF;
|
104
|
+
// $smoke : #EEEEEE;
|
105
|
+
// $gainsboro : #DDDDDD;
|
106
|
+
// $iron : #CCCCCC;
|
107
|
+
// $base : #AAAAAA;
|
108
|
+
// $aluminum : #999999;
|
109
|
+
// $jumbo : #888888;
|
110
|
+
// $monsoon : #777777;
|
111
|
+
// $steel : #666666;
|
112
|
+
// $charcoal : #555555;
|
113
|
+
// $tuatara : #444444;
|
114
|
+
// $oil : #333333;
|
115
|
+
// $jet : #222222;
|
116
|
+
// $black : #000000;
|
117
|
+
|
118
|
+
// We use these as default colors throughout
|
119
|
+
// $primary-color: #008CBA;
|
120
|
+
// $secondary-color: #e7e7e7;
|
121
|
+
// $alert-color: #f04124;
|
122
|
+
// $success-color: #43AC6A;
|
123
|
+
// $warning-color: #f08a24;
|
124
|
+
// $info-color: #a0d3e8;
|
42
125
|
|
43
126
|
// We use these to control various global styles
|
44
|
-
// $body-bg:
|
45
|
-
// $body-font-color:
|
46
|
-
// $body-font-family:
|
127
|
+
// $body-bg: $white;
|
128
|
+
// $body-font-color: $jet;
|
129
|
+
// $body-font-family: $font-family-sans-serif;
|
47
130
|
// $body-font-weight: $font-weight-normal;
|
48
131
|
// $body-font-style: normal;
|
49
132
|
|
@@ -54,14 +137,7 @@
|
|
54
137
|
// $text-direction: ltr;
|
55
138
|
// $opposite-direction: right;
|
56
139
|
// $default-float: left;
|
57
|
-
|
58
|
-
// We use these as default colors throughout
|
59
|
-
// $primary-color: #008CBA;
|
60
|
-
// $secondary-color: #e7e7e7;
|
61
|
-
// $alert-color: #f04124;
|
62
|
-
// $success-color: #43AC6A;
|
63
|
-
// $warning-color: #f08a24;
|
64
|
-
// $info-color: #a0d3e8;
|
140
|
+
// $last-child-float: $opposite-direction;
|
65
141
|
|
66
142
|
// We use these to make sure border radius matches unless we want it different.
|
67
143
|
// $global-radius: 3px;
|
@@ -69,12 +145,12 @@
|
|
69
145
|
|
70
146
|
// We use these to control inset shadow shiny edges and depressions.
|
71
147
|
// $shiny-edge-size: 0 1px 0;
|
72
|
-
// $shiny-edge-color: rgba(
|
73
|
-
// $shiny-edge-active-color: rgba(
|
148
|
+
// $shiny-edge-color: rgba($white, .5);
|
149
|
+
// $shiny-edge-active-color: rgba($black, .2);
|
74
150
|
|
75
|
-
//
|
151
|
+
// d. Media Query Ranges
|
152
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
76
153
|
|
77
|
-
// Media Query Ranges
|
78
154
|
// $small-range: (0em, 40em);
|
79
155
|
// $medium-range: (40.063em, 64em);
|
80
156
|
// $large-range: (64.063em, 90em);
|
@@ -106,16 +182,15 @@
|
|
106
182
|
// $medium: $medium-up;
|
107
183
|
// $large: $large-up;
|
108
184
|
|
109
|
-
//We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
|
185
|
+
// We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
|
110
186
|
// $cursor-crosshair-value: crosshair;
|
111
187
|
// $cursor-default-value: default;
|
112
188
|
// $cursor-pointer-value: pointer;
|
113
189
|
// $cursor-help-value: help;
|
114
190
|
// $cursor-text-value: text;
|
115
191
|
|
116
|
-
//
|
117
|
-
//
|
118
|
-
//
|
192
|
+
// e. Typography
|
193
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
119
194
|
|
120
195
|
// $include-html-type-classes: $include-html-classes;
|
121
196
|
|
@@ -123,7 +198,7 @@
|
|
123
198
|
// $header-font-family: $body-font-family;
|
124
199
|
// $header-font-weight: $font-weight-normal;
|
125
200
|
// $header-font-style: normal;
|
126
|
-
// $header-font-color:
|
201
|
+
// $header-font-color: $jet;
|
127
202
|
// $header-line-height: 1.4;
|
128
203
|
// $header-top-margin: .2rem;
|
129
204
|
// $header-bottom-margin: .5rem;
|
@@ -168,9 +243,14 @@
|
|
168
243
|
// $paragraph-text-rendering: optimizeLegibility;
|
169
244
|
|
170
245
|
// We use these to style <code> tags
|
171
|
-
// $code-color:
|
172
|
-
// $code-font-family:
|
173
|
-
// $code-font-weight: $font-weight-
|
246
|
+
// $code-color: $oil;
|
247
|
+
// $code-font-family: $font-family-monospace;
|
248
|
+
// $code-font-weight: $font-weight-normal;
|
249
|
+
// $code-background-color: scale-color($secondary-color, $lightness: 70%);
|
250
|
+
// $code-border-size: 1px;
|
251
|
+
// $code-border-style: solid;
|
252
|
+
// $code-border-color: scale-color($code-background-color, $lightness: -10%);
|
253
|
+
// $code-padding: rem-calc(2) rem-calc(5) rem-calc(1);
|
174
254
|
|
175
255
|
// We use these to style anchors
|
176
256
|
// $anchor-text-decoration: none;
|
@@ -181,7 +261,7 @@
|
|
181
261
|
// We use these to style the <hr> element
|
182
262
|
// $hr-border-width: 1px;
|
183
263
|
// $hr-border-style: solid;
|
184
|
-
// $hr-border-color:
|
264
|
+
// $hr-border-color: $gainsboro;
|
185
265
|
// $hr-margin: rem-calc(20);
|
186
266
|
|
187
267
|
// We use these to style lists
|
@@ -201,13 +281,13 @@
|
|
201
281
|
// We use these to style blockquotes
|
202
282
|
// $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
|
203
283
|
// $blockquote-padding: rem-calc(9 20 0 19);
|
204
|
-
// $blockquote-border: 1px solid
|
284
|
+
// $blockquote-border: 1px solid $gainsboro;
|
205
285
|
// $blockquote-cite-font-size: rem-calc(13);
|
206
286
|
// $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
|
207
287
|
// $blockquote-cite-link-color: $blockquote-cite-font-color;
|
208
288
|
|
209
289
|
// Acronym styles
|
210
|
-
// $acronym-underline: 1px dotted
|
290
|
+
// $acronym-underline: 1px dotted $gainsboro;
|
211
291
|
|
212
292
|
// We use these to control padding and margin
|
213
293
|
// $microformat-padding: rem-calc(10 12);
|
@@ -216,7 +296,7 @@
|
|
216
296
|
// We use these to control the border styles
|
217
297
|
// $microformat-border-width: 1px;
|
218
298
|
// $microformat-border-style: solid;
|
219
|
-
// $microformat-border-color:
|
299
|
+
// $microformat-border-color: $gainsboro;
|
220
300
|
|
221
301
|
// We use these to control full name font styles
|
222
302
|
// $microformat-fullname-font-weight: $font-weight-bold;
|
@@ -232,22 +312,24 @@
|
|
232
312
|
// $microformat-abbr-font-weight: $font-weight-bold;
|
233
313
|
// $microformat-abbr-font-decoration: none;
|
234
314
|
|
235
|
-
// Accordion
|
315
|
+
// 01. Accordion
|
316
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
236
317
|
|
237
318
|
// $include-html-accordion-classes: $include-html-classes;
|
238
319
|
|
239
320
|
// $accordion-navigation-padding: rem-calc(16);
|
240
|
-
// $accordion-navigation-bg-color:
|
321
|
+
// $accordion-navigation-bg-color: $silver ;
|
241
322
|
// $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
|
242
323
|
// $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
|
243
|
-
// $accordion-navigation-font-color:
|
324
|
+
// $accordion-navigation-font-color: $jet;
|
244
325
|
// $accordion-navigation-font-size: rem-calc(16);
|
245
326
|
// $accordion-navigation-font-family: $body-font-family;
|
246
327
|
|
247
328
|
// $accordion-content-padding: $column-gutter/2;
|
248
|
-
// $accordion-content-active-bg-color:
|
329
|
+
// $accordion-content-active-bg-color: $white;
|
249
330
|
|
250
|
-
// Alert Boxes
|
331
|
+
// 02. Alert Boxes
|
332
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
251
333
|
|
252
334
|
// $include-html-alert-classes: $include-html-classes;
|
253
335
|
|
@@ -260,7 +342,7 @@
|
|
260
342
|
// We use these to control text style.
|
261
343
|
// $alert-font-weight: $font-weight-normal;
|
262
344
|
// $alert-font-size: rem-calc(13);
|
263
|
-
// $alert-font-color:
|
345
|
+
// $alert-font-color: $white;
|
264
346
|
// $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
|
265
347
|
|
266
348
|
// We use this for close hover effect.
|
@@ -273,7 +355,7 @@
|
|
273
355
|
// $alert-bottom-margin: rem-calc(20);
|
274
356
|
|
275
357
|
// We use these to style the close buttons
|
276
|
-
// $alert-close-color:
|
358
|
+
// $alert-close-color: $oil;
|
277
359
|
// $alert-close-top: 50%;
|
278
360
|
// $alert-close-position: rem-calc(4);
|
279
361
|
// $alert-close-font-size: rem-calc(22);
|
@@ -288,9 +370,10 @@
|
|
288
370
|
// $alert-transition-speed: 300ms;
|
289
371
|
// $alert-transition-ease: ease-out;
|
290
372
|
|
291
|
-
// Block Grid
|
373
|
+
// 03. Block Grid
|
374
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
292
375
|
|
293
|
-
// $include-html-grid-classes: $include-html-classes;
|
376
|
+
// $include-html-block-grid-classes: $include-html-classes;
|
294
377
|
// $include-xl-html-block-grid-classes: false;
|
295
378
|
|
296
379
|
// We use this to control the maximum number of block grid elements per row
|
@@ -298,11 +381,11 @@
|
|
298
381
|
// $block-grid-default-spacing: rem-calc(20);
|
299
382
|
// $align-block-grid-to-grid: false;
|
300
383
|
|
301
|
-
|
302
384
|
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
303
385
|
// $block-grid-media-queries: true;
|
304
386
|
|
305
|
-
// Breadcrumbs
|
387
|
+
// 04. Breadcrumbs
|
388
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
306
389
|
|
307
390
|
// $include-html-nav-classes: $include-html-classes;
|
308
391
|
|
@@ -323,18 +406,17 @@
|
|
323
406
|
// We use these to set various text styles for breadcrumbs.
|
324
407
|
// $crumb-font-size: rem-calc(11);
|
325
408
|
// $crumb-font-color: $primary-color;
|
326
|
-
// $crumb-font-color-current:
|
327
|
-
// $crumb-font-color-unavailable:
|
409
|
+
// $crumb-font-color-current: $oil;
|
410
|
+
// $crumb-font-color-unavailable: $aluminum;
|
328
411
|
// $crumb-font-transform: uppercase;
|
329
412
|
// $crumb-link-decor: underline;
|
330
413
|
|
331
414
|
// We use these to control the slash between breadcrumbs
|
332
|
-
// $crumb-slash-color:
|
415
|
+
// $crumb-slash-color: $base;
|
333
416
|
// $crumb-slash: "/";
|
334
417
|
|
335
|
-
//
|
336
|
-
//
|
337
|
-
//
|
418
|
+
// 05. Buttons
|
419
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
338
420
|
|
339
421
|
// $include-html-button-classes: $include-html-classes;
|
340
422
|
|
@@ -350,8 +432,8 @@
|
|
350
432
|
|
351
433
|
// We use these to control button text styles.
|
352
434
|
// $button-font-family: $body-font-family;
|
353
|
-
// $button-font-color:
|
354
|
-
// $button-font-color-alt:
|
435
|
+
// $button-font-color: $white;
|
436
|
+
// $button-font-color-alt: $oil;
|
355
437
|
// $button-font-tny: rem-calc(11);
|
356
438
|
// $button-font-sml: rem-calc(13);
|
357
439
|
// $button-font-med: rem-calc(16);
|
@@ -362,20 +444,29 @@
|
|
362
444
|
// We use these to control various hover effects.
|
363
445
|
// $button-function-factor: -20%;
|
364
446
|
|
365
|
-
// We use these to control button border styles.
|
447
|
+
// We use these to control button border and hover styles.
|
366
448
|
// $button-border-width: 0px;
|
367
449
|
// $button-border-style: solid;
|
368
|
-
// $button-bg: $primary-color;
|
369
|
-
// $button-
|
450
|
+
// $button-bg-color: $primary-color;
|
451
|
+
// $button-bg-hover: scale-color($button-bg-color, $lightness: $button-function-factor);
|
452
|
+
// $button-border-color: $button-bg-hover;
|
453
|
+
// $secondary-button-bg-hover: scale-color($secondary-color, $lightness: $button-function-factor);
|
454
|
+
// $secondary-button-border-color: $secondary-button-bg-hover;
|
455
|
+
// $success-button-bg-hover: scale-color($success-color, $lightness: $button-function-factor);
|
456
|
+
// $success-button-border-color: $success-button-bg-hover;
|
457
|
+
// $alert-button-bg-hover: scale-color($alert-color, $lightness: $button-function-factor);
|
458
|
+
// $alert-button-border-color: $alert-button-bg-hover;
|
370
459
|
|
371
460
|
// We use this to set the default radius used throughout the core.
|
372
461
|
// $button-radius: $global-radius;
|
373
462
|
// $button-round: $global-rounded;
|
374
463
|
|
375
|
-
// We use this to set default opacity for disabled buttons.
|
464
|
+
// We use this to set default opacity and cursor for disabled buttons.
|
376
465
|
// $button-disabled-opacity: 0.7;
|
466
|
+
// $button-disabled-cursor: $cursor-default-value;
|
377
467
|
|
378
|
-
// Button Groups
|
468
|
+
// 06. Button Groups
|
469
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
379
470
|
|
380
471
|
// $include-html-button-classes: $include-html-classes;
|
381
472
|
|
@@ -383,18 +474,19 @@
|
|
383
474
|
// $button-bar-margin-opposite: rem-calc(10);
|
384
475
|
// $button-group-border-width: 1px;
|
385
476
|
|
386
|
-
// Clearing
|
477
|
+
// 07. Clearing
|
478
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
387
479
|
|
388
480
|
// $include-html-clearing-classes: $include-html-classes;
|
389
481
|
|
390
482
|
// We use these to set the background colors for parts of Clearing.
|
391
|
-
// $clearing-bg:
|
483
|
+
// $clearing-bg: $oil;
|
392
484
|
// $clearing-caption-bg: $clearing-bg;
|
393
485
|
// $clearing-carousel-bg: rgba(51,51,51,0.8);
|
394
486
|
// $clearing-img-bg: $clearing-bg;
|
395
487
|
|
396
488
|
// We use these to style the close button
|
397
|
-
// $clearing-close-color:
|
489
|
+
// $clearing-close-color: $iron;
|
398
490
|
// $clearing-close-size: 30px;
|
399
491
|
|
400
492
|
// We use these to style the arrows
|
@@ -402,7 +494,7 @@
|
|
402
494
|
// $clearing-arrow-color: $clearing-close-color;
|
403
495
|
|
404
496
|
// We use these to style captions
|
405
|
-
// $clearing-caption-font-color:
|
497
|
+
// $clearing-caption-font-color: $iron;
|
406
498
|
// $clearing-caption-font-size: 0.875em;
|
407
499
|
// $clearing-caption-padding: 10px 30px 20px;
|
408
500
|
|
@@ -412,7 +504,8 @@
|
|
412
504
|
// $clearing-carousel-thumb-width: 120px;
|
413
505
|
// $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
|
414
506
|
|
415
|
-
// Dropdown
|
507
|
+
// 08. Dropdown
|
508
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
416
509
|
|
417
510
|
// $include-html-dropdown-classes: $include-html-classes;
|
418
511
|
|
@@ -434,37 +527,42 @@
|
|
434
527
|
// $f-dropdown-margin-bottom: $f-dropdown-margin-top;
|
435
528
|
|
436
529
|
// We use this to control the background color
|
437
|
-
// $f-dropdown-bg:
|
530
|
+
// $f-dropdown-bg: $white;
|
438
531
|
|
439
532
|
// We use this to set the border styles for dropdowns.
|
440
533
|
// $f-dropdown-border-style: solid;
|
441
534
|
// $f-dropdown-border-width: 1px;
|
442
|
-
// $f-dropdown-border-color: scale-color(
|
535
|
+
// $f-dropdown-border-color: scale-color($white, $lightness: -20%);
|
443
536
|
|
444
537
|
// We use these to style the triangle pip.
|
445
538
|
// $f-dropdown-triangle-size: 6px;
|
446
|
-
// $f-dropdown-triangle-color:
|
539
|
+
// $f-dropdown-triangle-color: $white;
|
447
540
|
// $f-dropdown-triangle-side-offset: 10px;
|
448
541
|
|
449
542
|
// We use these to control styles for the list elements.
|
450
543
|
// $f-dropdown-list-style: none;
|
451
|
-
// $f-dropdown-font-color:
|
544
|
+
// $f-dropdown-font-color: $charcoal;
|
452
545
|
// $f-dropdown-font-size: rem-calc(14);
|
453
546
|
// $f-dropdown-list-padding: rem-calc(5, 10);
|
454
547
|
// $f-dropdown-line-height: rem-calc(18);
|
455
|
-
// $f-dropdown-list-hover-bg:
|
548
|
+
// $f-dropdown-list-hover-bg: $smoke ;
|
456
549
|
// $dropdown-mobile-default-float: 0;
|
457
550
|
|
458
551
|
// We use this to control the styles for when the dropdown has custom content.
|
459
552
|
// $f-dropdown-content-padding: rem-calc(20);
|
460
553
|
|
461
|
-
//
|
554
|
+
// Default radius for dropdown.
|
555
|
+
// $f-dropdown-radius: $global-radius;
|
556
|
+
|
557
|
+
|
558
|
+
// 09. Dropdown Buttons
|
559
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
462
560
|
|
463
561
|
// $include-html-button-classes: $include-html-classes;
|
464
562
|
|
465
563
|
// We use these to set the color of the pip in dropdown buttons
|
466
|
-
// $dropdown-button-pip-color:
|
467
|
-
// $dropdown-button-pip-color-alt:
|
564
|
+
// $dropdown-button-pip-color: $white;
|
565
|
+
// $dropdown-button-pip-color-alt: $oil;
|
468
566
|
|
469
567
|
// $button-pip-tny: rem-calc(6);
|
470
568
|
// $button-pip-sml: rem-calc(7);
|
@@ -495,7 +593,8 @@
|
|
495
593
|
// $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
|
496
594
|
// $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
|
497
595
|
|
498
|
-
// Flex Video
|
596
|
+
// 10. Flex Video
|
597
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
499
598
|
|
500
599
|
// $include-html-media-classes: $include-html-classes;
|
501
600
|
|
@@ -507,7 +606,8 @@
|
|
507
606
|
// We use this to control widescreen bottom padding
|
508
607
|
// $flex-video-widescreen-padding-bottom: 56.34%;
|
509
608
|
|
510
|
-
// Forms
|
609
|
+
// 11. Forms
|
610
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
511
611
|
|
512
612
|
// $include-html-form-classes: $include-html-classes;
|
513
613
|
|
@@ -519,43 +619,46 @@
|
|
519
619
|
// $form-label-font-size: rem-calc(14);
|
520
620
|
// $form-label-font-weight: $font-weight-normal;
|
521
621
|
// $form-label-line-height: 1.5;
|
522
|
-
// $form-label-font-color: scale-color(
|
622
|
+
// $form-label-font-color: scale-color($black, $lightness: 30%);
|
523
623
|
// $form-label-small-transform: capitalize;
|
524
624
|
// $form-label-bottom-margin: 0;
|
525
625
|
// $input-font-family: inherit;
|
526
626
|
// $input-font-color: rgba(0,0,0,0.75);
|
527
627
|
// $input-font-size: rem-calc(14);
|
528
|
-
// $input-bg-color:
|
529
|
-
// $input-focus-bg-color: scale-color(
|
530
|
-
// $input-border-color: scale-color(
|
531
|
-
// $input-focus-border-color: scale-color(
|
628
|
+
// $input-bg-color: $white;
|
629
|
+
// $input-focus-bg-color: scale-color($white, $lightness: -2%);
|
630
|
+
// $input-border-color: scale-color($white, $lightness: -20%);
|
631
|
+
// $input-focus-border-color: scale-color($white, $lightness: -40%);
|
532
632
|
// $input-border-style: solid;
|
533
633
|
// $input-border-width: 1px;
|
534
634
|
// $input-border-radius: $global-radius;
|
535
|
-
// $input-disabled-bg:
|
635
|
+
// $input-disabled-bg: $gainsboro;
|
636
|
+
// $input-disabled-cursor: $cursor-default-value;
|
536
637
|
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
|
537
|
-
// $input-include-glowing-effect: true;
|
538
638
|
|
539
639
|
// We use these to style the fieldset border and spacing.
|
540
640
|
// $fieldset-border-style: solid;
|
541
641
|
// $fieldset-border-width: 1px;
|
542
|
-
// $fieldset-border-color:
|
642
|
+
// $fieldset-border-color: $gainsboro;
|
543
643
|
// $fieldset-padding: rem-calc(20);
|
544
644
|
// $fieldset-margin: rem-calc(18 0);
|
545
645
|
|
546
646
|
// We use these to style the legends when you use them
|
547
|
-
// $legend-bg:
|
647
|
+
// $legend-bg: $white;
|
548
648
|
// $legend-font-weight: $font-weight-bold;
|
549
649
|
// $legend-padding: rem-calc(0 3);
|
550
650
|
|
551
651
|
// We use these to style the prefix and postfix input elements
|
552
|
-
// $input-prefix-bg: scale-color(
|
553
|
-
// $input-prefix-border-color: scale-color(
|
652
|
+
// $input-prefix-bg: scale-color($white, $lightness: -5%);
|
653
|
+
// $input-prefix-border-color: scale-color($white, $lightness: -20%);
|
554
654
|
// $input-prefix-border-size: 1px;
|
555
655
|
// $input-prefix-border-type: solid;
|
556
656
|
// $input-prefix-overflow: hidden;
|
557
|
-
// $input-prefix-font-color:
|
558
|
-
// $input-prefix-font-color-alt:
|
657
|
+
// $input-prefix-font-color: $oil;
|
658
|
+
// $input-prefix-font-color-alt: $white;
|
659
|
+
|
660
|
+
// We use this setting to turn on/off HTML5 number spinners (the up/down arrows)
|
661
|
+
// $input-number-spinners: true;
|
559
662
|
|
560
663
|
// We use these to style the error states for inputs and labels
|
561
664
|
// $input-error-message-padding: rem-calc(6 9 9);
|
@@ -563,18 +666,36 @@
|
|
563
666
|
// $input-error-message-font-size: rem-calc(12);
|
564
667
|
// $input-error-message-font-weight: $font-weight-normal;
|
565
668
|
// $input-error-message-font-style: italic;
|
566
|
-
// $input-error-message-font-color:
|
567
|
-
// $input-error-message-font-color-alt:
|
669
|
+
// $input-error-message-font-color: $white;
|
670
|
+
// $input-error-message-font-color-alt: $oil;
|
568
671
|
|
569
672
|
// We use this to style the glowing effect of inputs when focused
|
673
|
+
// $input-include-glowing-effect: true;
|
570
674
|
// $glowing-effect-fade-time: 0.45s;
|
571
675
|
// $glowing-effect-color: $input-focus-border-color;
|
572
676
|
|
573
677
|
// Select variables
|
574
|
-
// $select-bg-color:
|
678
|
+
// $select-bg-color: $ghost;
|
575
679
|
// $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%);
|
576
680
|
|
577
|
-
//
|
681
|
+
// 12. Icon Bar
|
682
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
683
|
+
|
684
|
+
// We use these to style the icon-bar and items
|
685
|
+
// $include-html-icon-bar-classes: $include-html-classes;
|
686
|
+
// $icon-bar-bg: $oil;
|
687
|
+
// $icon-bar-font-color: $white;
|
688
|
+
// $icon-bar-font-size: 1rem;
|
689
|
+
// $icon-bar-hover-color: $primary-color;
|
690
|
+
// $icon-bar-icon-color: $white;
|
691
|
+
// $icon-bar-icon-size: 1.875rem;
|
692
|
+
// $icon-bar-image-width: 1.875rem;
|
693
|
+
// $icon-bar-image-height: 1.875rem;
|
694
|
+
// $icon-bar-active-color: $primary-color;
|
695
|
+
// $icon-bar-item-padding: 1.25rem;
|
696
|
+
|
697
|
+
// 13. Inline Lists
|
698
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
578
699
|
|
579
700
|
// $include-html-inline-list-classes: $include-html-classes;
|
580
701
|
|
@@ -593,23 +714,24 @@
|
|
593
714
|
// We use this to control the list items
|
594
715
|
// $inline-list-display: block;
|
595
716
|
|
596
|
-
// We use this to control any
|
717
|
+
// We use this to control any elements within list items
|
597
718
|
// $inline-list-children-display: block;
|
598
719
|
|
599
|
-
// Joyride
|
720
|
+
// 14. Joyride
|
721
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
600
722
|
|
601
723
|
// $include-html-joyride-classes: $include-html-classes;
|
602
724
|
|
603
725
|
// Controlling default Joyride styles
|
604
|
-
// $joyride-tip-bg:
|
726
|
+
// $joyride-tip-bg: $oil;
|
605
727
|
// $joyride-tip-default-width: 300px;
|
606
728
|
// $joyride-tip-padding: rem-calc(18 20 24);
|
607
|
-
// $joyride-tip-border: solid 1px
|
729
|
+
// $joyride-tip-border: solid 1px $charcoal;
|
608
730
|
// $joyride-tip-radius: 4px;
|
609
731
|
// $joyride-tip-position-offset: 22px;
|
610
732
|
|
611
|
-
// Here, we're setting the tip
|
612
|
-
// $joyride-tip-font-color:
|
733
|
+
// Here, we're setting the tip font styles
|
734
|
+
// $joyride-tip-font-color: $white;
|
613
735
|
// $joyride-tip-font-size: rem-calc(14);
|
614
736
|
// $joyride-tip-header-weight: $font-weight-bold;
|
615
737
|
|
@@ -619,67 +741,72 @@
|
|
619
741
|
// This adjusts the styles for the timer when its enabled
|
620
742
|
// $joyride-tip-timer-width: 50px;
|
621
743
|
// $joyride-tip-timer-height: 3px;
|
622
|
-
// $joyride-tip-timer-color:
|
744
|
+
// $joyride-tip-timer-color: $steel;
|
623
745
|
|
624
746
|
// This changes up the styles for the close button
|
625
|
-
// $joyride-tip-close-color:
|
747
|
+
// $joyride-tip-close-color: $monsoon;
|
626
748
|
// $joyride-tip-close-size: 24px;
|
627
749
|
// $joyride-tip-close-weight: $font-weight-normal;
|
628
750
|
|
629
751
|
// When Joyride is filling the screen, we use this style for the bg
|
630
752
|
// $joyride-screenfill: rgba(0,0,0,0.5);
|
631
753
|
|
632
|
-
// Keystrokes
|
754
|
+
// 15. Keystrokes
|
755
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
633
756
|
|
634
757
|
// $include-html-keystroke-classes: $include-html-classes;
|
635
758
|
|
636
759
|
// We use these to control text styles.
|
637
760
|
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
|
638
761
|
// $keystroke-font-size: inherit;
|
639
|
-
// $keystroke-font-color:
|
640
|
-
// $keystroke-font-color-alt:
|
762
|
+
// $keystroke-font-color: $jet;
|
763
|
+
// $keystroke-font-color-alt: $white;
|
641
764
|
// $keystroke-function-factor: -7%;
|
642
765
|
|
643
766
|
// We use this to control keystroke padding.
|
644
767
|
// $keystroke-padding: rem-calc(2 4 0);
|
645
768
|
|
646
769
|
// We use these to control background and border styles.
|
647
|
-
// $keystroke-bg: scale-color(
|
770
|
+
// $keystroke-bg: scale-color($white, $lightness: $keystroke-function-factor);
|
648
771
|
// $keystroke-border-style: solid;
|
649
772
|
// $keystroke-border-width: 1px;
|
650
773
|
// $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
|
651
774
|
// $keystroke-radius: $global-radius;
|
652
775
|
|
653
|
-
// Labels
|
776
|
+
// 16. Labels
|
777
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
654
778
|
|
655
779
|
// $include-html-label-classes: $include-html-classes;
|
656
780
|
|
657
781
|
// We use these to style the labels
|
658
|
-
// $label-padding: rem-calc(4 8
|
782
|
+
// $label-padding: rem-calc(4 8 4);
|
659
783
|
// $label-radius: $global-radius;
|
660
784
|
|
661
785
|
// We use these to style the label text
|
662
786
|
// $label-font-sizing: rem-calc(11);
|
663
787
|
// $label-font-weight: $font-weight-normal;
|
664
|
-
// $label-font-color:
|
665
|
-
// $label-font-color-alt:
|
788
|
+
// $label-font-color: $oil;
|
789
|
+
// $label-font-color-alt: $white;
|
666
790
|
// $label-font-family: $body-font-family;
|
667
791
|
|
668
|
-
// Magellan
|
792
|
+
// 17. Magellan
|
793
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
669
794
|
|
670
795
|
// $include-html-magellan-classes: $include-html-classes;
|
671
796
|
|
672
|
-
// $magellan-bg:
|
673
|
-
// $magellan-padding:
|
797
|
+
// $magellan-bg: $white;
|
798
|
+
// $magellan-padding: 0 !important;
|
674
799
|
|
675
|
-
// Off-canvas
|
800
|
+
// 18. Off-canvas
|
801
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
676
802
|
|
677
803
|
// $include-html-off-canvas-classes: $include-html-classes;
|
678
804
|
|
679
|
-
// $tabbar-bg:
|
805
|
+
// $tabbar-bg: $oil;
|
680
806
|
// $tabbar-height: rem-calc(45);
|
807
|
+
// $tabbar-icon-width: $tabbar-height;
|
681
808
|
// $tabbar-line-height: $tabbar-height;
|
682
|
-
// $tabbar-color:
|
809
|
+
// $tabbar-color: $white;
|
683
810
|
// $tabbar-middle-padding: 0 rem-calc(10);
|
684
811
|
|
685
812
|
// Off Canvas Divider Styles
|
@@ -687,30 +814,38 @@
|
|
687
814
|
// $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
|
688
815
|
|
689
816
|
// Off Canvas Tab Bar Headers
|
690
|
-
// $tabbar-header-color:
|
817
|
+
// $tabbar-header-color: $white;
|
691
818
|
// $tabbar-header-weight: $font-weight-bold;
|
692
819
|
// $tabbar-header-line-height: $tabbar-height;
|
693
820
|
// $tabbar-header-margin: 0;
|
694
821
|
|
695
822
|
// Off Canvas Menu Variables
|
696
823
|
// $off-canvas-width: rem-calc(250);
|
697
|
-
// $off-canvas-bg:
|
824
|
+
// $off-canvas-bg: $oil;
|
825
|
+
// $off-canvas-bg-hover: scale-color($tabbar-bg, $lightness: -30%);
|
698
826
|
|
699
827
|
// Off Canvas Menu List Variables
|
700
828
|
// $off-canvas-label-padding: 0.3rem rem-calc(15);
|
701
|
-
// $off-canvas-label-color:
|
829
|
+
// $off-canvas-label-color: $aluminum;
|
702
830
|
// $off-canvas-label-text-transform: uppercase;
|
831
|
+
// $off-canvas-label-font-size: rem-calc(12);
|
703
832
|
// $off-canvas-label-font-weight: $font-weight-bold;
|
704
|
-
// $off-canvas-label-bg:
|
705
|
-
// $off-canvas-label-border-top: 1px solid scale-color(
|
833
|
+
// $off-canvas-label-bg: $tuatara;
|
834
|
+
// $off-canvas-label-border-top: 1px solid scale-color($tuatara, $lightness: 14%);
|
706
835
|
// $off-canvas-label-border-bottom: none;
|
707
836
|
// $off-canvas-label-margin:0;
|
708
837
|
// $off-canvas-link-padding: rem-calc(10, 15);
|
709
|
-
// $off-canvas-link-color: rgba(
|
838
|
+
// $off-canvas-link-color: rgba($white, 0.7);
|
710
839
|
// $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
|
840
|
+
// $off-canvas-back-bg: $tuatara;
|
841
|
+
// $off-canvas-back-border-top: $off-canvas-label-border-top;
|
842
|
+
// $off-canvas-back-border-bottom: $off-canvas-label-border-bottom;
|
843
|
+
// $off-canvas-back-hover-bg: scale-color($off-canvas-back-bg, $lightness: -30%);
|
844
|
+
// $off-canvas-back-hover-border-top: 1px solid scale-color($off-canvas-label-bg, $lightness: 14%);
|
845
|
+
// $off-canvas-back-hover-border-bottom: none;
|
711
846
|
|
712
847
|
// Off Canvas Menu Icon Variables
|
713
|
-
// $tabbar-menu-icon-color:
|
848
|
+
// $tabbar-menu-icon-color: $white;
|
714
849
|
// $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
|
715
850
|
|
716
851
|
// $tabbar-menu-icon-text-indent: rem-calc(35);
|
@@ -721,27 +856,28 @@
|
|
721
856
|
// $tabbar-hamburger-icon-width: rem-calc(16);
|
722
857
|
// $tabbar-hamburger-icon-left: false;
|
723
858
|
// $tabbar-hamburger-icon-top: false;
|
724
|
-
// $
|
725
|
-
// $
|
859
|
+
// $tabbar-hamburger-icon-thickness: 1px;
|
860
|
+
// $tabbar-hamburger-icon-gap: 6px;
|
726
861
|
|
727
862
|
// Off Canvas Back-Link Overlay
|
728
863
|
// $off-canvas-overlay-transition: background 300ms ease;
|
729
864
|
// $off-canvas-overlay-cursor: pointer;
|
730
|
-
// $off-canvas-overlay-box-shadow: -4px 0 4px rgba(
|
731
|
-
// $off-canvas-overlay-background: rgba(
|
732
|
-
// $off-canvas-overlay-background-hover: rgba(
|
865
|
+
// $off-canvas-overlay-box-shadow: -4px 0 4px rgba($black, 0.5), 4px 0 4px rgba($black, 0.5);
|
866
|
+
// $off-canvas-overlay-background: rgba($white, 0.2);
|
867
|
+
// $off-canvas-overlay-background-hover: rgba($white, 0.05);
|
733
868
|
|
734
869
|
// Transition Variables
|
735
870
|
// $menu-slide: "transform 500ms ease";
|
736
871
|
|
737
|
-
// Orbit
|
872
|
+
// 19. Orbit
|
873
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
738
874
|
|
739
875
|
// $include-html-orbit-classes: $include-html-classes;
|
740
876
|
|
741
877
|
// We use these to control the caption styles
|
742
878
|
// $orbit-container-bg: none;
|
743
879
|
// $orbit-caption-bg: rgba(51,51,51, 0.8);
|
744
|
-
// $orbit-caption-font-color:
|
880
|
+
// $orbit-caption-font-color: $white;
|
745
881
|
// $orbit-caption-font-size: rem-calc(14);
|
746
882
|
// $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
|
747
883
|
// $orbit-caption-padding: rem-calc(10 14);
|
@@ -750,27 +886,23 @@
|
|
750
886
|
// We use these to control the left/right nav styles
|
751
887
|
// $orbit-nav-bg: transparent;
|
752
888
|
// $orbit-nav-bg-hover: rgba(0,0,0,0.3);
|
753
|
-
// $orbit-nav-arrow-color:
|
754
|
-
// $orbit-nav-arrow-color-hover:
|
889
|
+
// $orbit-nav-arrow-color: $white;
|
890
|
+
// $orbit-nav-arrow-color-hover: $white;
|
755
891
|
|
756
892
|
// We use these to control the timer styles
|
757
893
|
// $orbit-timer-bg: rgba(255,255,255,0.3);
|
758
894
|
// $orbit-timer-show-progress-bar: true;
|
759
895
|
|
760
896
|
// We use these to control the bullet nav styles
|
761
|
-
// $orbit-bullet-nav-color:
|
762
|
-
// $orbit-bullet-nav-color-active:
|
897
|
+
// $orbit-bullet-nav-color: $iron;
|
898
|
+
// $orbit-bullet-nav-color-active: $aluminum;
|
763
899
|
// $orbit-bullet-radius: rem-calc(9);
|
764
900
|
|
765
901
|
// We use these to controls the style of slide numbers
|
766
902
|
// $orbit-slide-number-bg: rgba(0,0,0,0);
|
767
|
-
// $orbit-slide-number-font-color:
|
903
|
+
// $orbit-slide-number-font-color: $white;
|
768
904
|
// $orbit-slide-number-padding: rem-calc(5);
|
769
905
|
|
770
|
-
// We use these to controls the css animation
|
771
|
-
// $orbit-animation-speed: 500ms;
|
772
|
-
// $orbit-animation-ease: ease-in-out;
|
773
|
-
|
774
906
|
// Hide controls on small
|
775
907
|
// $orbit-nav-hide-for-small: true;
|
776
908
|
// $orbit-bullet-hide-for-small: true;
|
@@ -780,7 +912,8 @@
|
|
780
912
|
// $wrapper-class: "slideshow-wrapper";
|
781
913
|
// $preloader-class: "preloader";
|
782
914
|
|
783
|
-
// Pagination
|
915
|
+
// 20. Pagination
|
916
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
784
917
|
|
785
918
|
// $include-pagination-classes: $include-html-classes;
|
786
919
|
|
@@ -791,33 +924,34 @@
|
|
791
924
|
// We use these to set the list-item properties
|
792
925
|
// $pagination-li-float: $default-float;
|
793
926
|
// $pagination-li-height: rem-calc(24);
|
794
|
-
// $pagination-li-font-color:
|
927
|
+
// $pagination-li-font-color: $jet;
|
795
928
|
// $pagination-li-font-size: rem-calc(14);
|
796
929
|
// $pagination-li-margin: rem-calc(5);
|
797
930
|
|
798
931
|
// We use these for the pagination anchor links
|
799
932
|
// $pagination-link-pad: rem-calc(1 10 1);
|
800
|
-
// $pagination-link-font-color:
|
801
|
-
// $pagination-link-active-bg: scale-color(
|
933
|
+
// $pagination-link-font-color: $aluminum;
|
934
|
+
// $pagination-link-active-bg: scale-color($white, $lightness: -10%);
|
802
935
|
|
803
936
|
// We use these for disabled anchor links
|
804
937
|
// $pagination-link-unavailable-cursor: default;
|
805
|
-
// $pagination-link-unavailable-font-color:
|
938
|
+
// $pagination-link-unavailable-font-color: $aluminum;
|
806
939
|
// $pagination-link-unavailable-bg-active: transparent;
|
807
940
|
|
808
941
|
// We use these for currently selected anchor links
|
809
942
|
// $pagination-link-current-background: $primary-color;
|
810
|
-
// $pagination-link-current-font-color:
|
943
|
+
// $pagination-link-current-font-color: $white;
|
811
944
|
// $pagination-link-current-font-weight: $font-weight-bold;
|
812
945
|
// $pagination-link-current-cursor: default;
|
813
946
|
// $pagination-link-current-active-bg: $primary-color;
|
814
947
|
|
815
|
-
// Panels
|
948
|
+
// 21. Panels
|
949
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
816
950
|
|
817
951
|
// $include-html-panel-classes: $include-html-classes;
|
818
952
|
|
819
953
|
// We use these to control the background and border styles
|
820
|
-
// $panel-bg: scale-color(
|
954
|
+
// $panel-bg: scale-color($white, $lightness: -5%);
|
821
955
|
// $panel-border-style: solid;
|
822
956
|
// $panel-border-size: 1px;
|
823
957
|
|
@@ -830,74 +964,75 @@
|
|
830
964
|
// $panel-padding: rem-calc(20);
|
831
965
|
|
832
966
|
// We use these to set default font colors
|
833
|
-
// $panel-font-color:
|
834
|
-
// $panel-font-color-alt:
|
967
|
+
// $panel-font-color: $oil;
|
968
|
+
// $panel-font-color-alt: $white;
|
835
969
|
|
836
970
|
// $panel-header-adjust: true;
|
837
971
|
// $callout-panel-link-color: $primary-color;
|
838
972
|
|
839
|
-
// Pricing Tables
|
973
|
+
// 22. Pricing Tables
|
974
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
840
975
|
|
841
976
|
// $include-html-pricing-classes: $include-html-classes;
|
842
977
|
|
843
978
|
// We use this to control the border color
|
844
|
-
// $price-table-border: solid 1px
|
979
|
+
// $price-table-border: solid 1px $gainsboro;
|
845
980
|
|
846
981
|
// We use this to control the bottom margin of the pricing table
|
847
982
|
// $price-table-margin-bottom: rem-calc(20);
|
848
983
|
|
849
984
|
// We use these to control the title styles
|
850
|
-
// $price-title-bg:
|
985
|
+
// $price-title-bg: $oil;
|
851
986
|
// $price-title-padding: rem-calc(15 20);
|
852
987
|
// $price-title-align: center;
|
853
|
-
// $price-title-color:
|
988
|
+
// $price-title-color: $smoke;
|
854
989
|
// $price-title-weight: $font-weight-normal;
|
855
990
|
// $price-title-size: rem-calc(16);
|
856
991
|
// $price-title-font-family: $body-font-family;
|
857
992
|
|
858
993
|
// We use these to control the price styles
|
859
|
-
// $price-money-bg:
|
994
|
+
// $price-money-bg: $vapor ;
|
860
995
|
// $price-money-padding: rem-calc(15 20);
|
861
996
|
// $price-money-align: center;
|
862
|
-
// $price-money-color:
|
997
|
+
// $price-money-color: $oil;
|
863
998
|
// $price-money-weight: $font-weight-normal;
|
864
999
|
// $price-money-size: rem-calc(32);
|
865
1000
|
// $price-money-font-family: $body-font-family;
|
866
1001
|
|
867
|
-
|
868
1002
|
// We use these to control the description styles
|
869
|
-
// $price-bg:
|
870
|
-
// $price-desc-color:
|
1003
|
+
// $price-bg: $white;
|
1004
|
+
// $price-desc-color: $monsoon;
|
871
1005
|
// $price-desc-padding: rem-calc(15);
|
872
1006
|
// $price-desc-align: center;
|
873
1007
|
// $price-desc-font-size: rem-calc(12);
|
874
1008
|
// $price-desc-weight: $font-weight-normal;
|
875
1009
|
// $price-desc-line-height: 1.4;
|
876
|
-
// $price-desc-bottom-border: dotted 1px
|
1010
|
+
// $price-desc-bottom-border: dotted 1px $gainsboro;
|
877
1011
|
|
878
1012
|
// We use these to control the list item styles
|
879
|
-
// $price-item-color:
|
1013
|
+
// $price-item-color: $oil;
|
880
1014
|
// $price-item-padding: rem-calc(15);
|
881
1015
|
// $price-item-align: center;
|
882
1016
|
// $price-item-font-size: rem-calc(14);
|
883
1017
|
// $price-item-weight: $font-weight-normal;
|
884
|
-
// $price-item-bottom-border: dotted 1px
|
1018
|
+
// $price-item-bottom-border: dotted 1px $gainsboro;
|
885
1019
|
|
886
1020
|
// We use these to control the CTA area styles
|
887
|
-
// $price-cta-bg:
|
1021
|
+
// $price-cta-bg: $white;
|
888
1022
|
// $price-cta-align: center;
|
889
1023
|
// $price-cta-padding: rem-calc(20 20 0);
|
890
1024
|
|
891
|
-
// Progress Bar
|
1025
|
+
// 23. Progress Bar
|
1026
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
892
1027
|
|
893
1028
|
// $include-html-media-classes: $include-html-classes;
|
894
1029
|
|
895
1030
|
// We use this to set the progress bar height
|
896
1031
|
// $progress-bar-height: rem-calc(25);
|
897
|
-
// $progress-bar-color:
|
1032
|
+
// $progress-bar-color: $vapor ;
|
898
1033
|
|
899
1034
|
// We use these to control the border styles
|
900
|
-
// $progress-bar-border-color: scale-color(
|
1035
|
+
// $progress-bar-border-color: scale-color($white, $lightness: 20%);
|
901
1036
|
// $progress-bar-border-size: 1px;
|
902
1037
|
// $progress-bar-border-style: solid;
|
903
1038
|
// $progress-bar-border-radius: $global-radius;
|
@@ -912,26 +1047,61 @@
|
|
912
1047
|
// $progress-meter-success-color: $success-color;
|
913
1048
|
// $progress-meter-alert-color: $alert-color;
|
914
1049
|
|
915
|
-
//
|
1050
|
+
// 24. Range Slider
|
1051
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1052
|
+
|
1053
|
+
// $include-html-range-slider-classes: $include-html-classes;
|
1054
|
+
|
1055
|
+
// These variables define the slider bar styles
|
1056
|
+
// $range-slider-bar-width: 100%;
|
1057
|
+
// $range-slider-bar-height: rem-calc(16);
|
1058
|
+
|
1059
|
+
// $range-slider-bar-border-width: 1px;
|
1060
|
+
// $range-slider-bar-border-style: solid;
|
1061
|
+
// $range-slider-bar-border-color: $gainsboro;
|
1062
|
+
// $range-slider-radius: $global-radius;
|
1063
|
+
// $range-slider-round: $global-rounded;
|
1064
|
+
// $range-slider-bar-bg-color: $ghost;
|
1065
|
+
|
1066
|
+
// Vertical bar styles
|
1067
|
+
// $range-slider-vertical-bar-width: rem-calc(16);
|
1068
|
+
// $range-slider-vertical-bar-height: rem-calc(200);
|
1069
|
+
|
1070
|
+
// These variables define the slider handle styles
|
1071
|
+
// $range-slider-handle-width: rem-calc(32);
|
1072
|
+
// $range-slider-handle-height: rem-calc(22);
|
1073
|
+
// $range-slider-handle-position-top: rem-calc(-5);
|
1074
|
+
// $range-slider-handle-bg-color: $primary-color;
|
1075
|
+
// $range-slider-handle-border-width: 1px;
|
1076
|
+
// $range-slider-handle-border-style: solid;
|
1077
|
+
// $range-slider-handle-border-color: none;
|
1078
|
+
// $range-slider-handle-radius: $global-radius;
|
1079
|
+
// $range-slider-handle-round: $global-rounded;
|
1080
|
+
// $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
|
1081
|
+
// $range-slider-handle-cursor: pointer;
|
1082
|
+
|
1083
|
+
// 25. Reveal
|
1084
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
916
1085
|
|
917
1086
|
// $include-html-reveal-classes: $include-html-classes;
|
918
1087
|
|
919
1088
|
// We use these to control the style of the reveal overlay.
|
920
|
-
// $reveal-overlay-bg: rgba(
|
921
|
-
// $reveal-overlay-bg-old:
|
1089
|
+
// $reveal-overlay-bg: rgba($black, .45);
|
1090
|
+
// $reveal-overlay-bg-old: $black;
|
922
1091
|
|
923
1092
|
// We use these to control the style of the modal itself.
|
924
|
-
// $reveal-modal-bg:
|
1093
|
+
// $reveal-modal-bg: $white;
|
925
1094
|
// $reveal-position-top: rem-calc(100);
|
926
1095
|
// $reveal-default-width: 80%;
|
1096
|
+
// $reveal-max-width: $row-width;
|
927
1097
|
// $reveal-modal-padding: rem-calc(20);
|
928
|
-
// $reveal-box-shadow: 0 0 10px rgba(
|
1098
|
+
// $reveal-box-shadow: 0 0 10px rgba($black,.4);
|
929
1099
|
|
930
1100
|
// We use these to style the reveal close button
|
931
1101
|
// $reveal-close-font-size: rem-calc(40);
|
932
1102
|
// $reveal-close-top: rem-calc(8);
|
933
1103
|
// $reveal-close-side: rem-calc(11);
|
934
|
-
// $reveal-close-color:
|
1104
|
+
// $reveal-close-color: $base;
|
935
1105
|
// $reveal-close-weight: $font-weight-bold;
|
936
1106
|
|
937
1107
|
// We use this to set the default radius used throughout the core.
|
@@ -941,12 +1111,13 @@
|
|
941
1111
|
// We use these to control the modal border
|
942
1112
|
// $reveal-border-style: solid;
|
943
1113
|
// $reveal-border-width: 1px;
|
944
|
-
// $reveal-border-color:
|
1114
|
+
// $reveal-border-color: $steel;
|
945
1115
|
|
946
1116
|
// $reveal-modal-class: "reveal-modal";
|
947
1117
|
// $close-reveal-modal-class: "close-reveal-modal";
|
948
1118
|
|
949
|
-
// Side Nav
|
1119
|
+
// 26. Side Nav
|
1120
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
950
1121
|
|
951
1122
|
// $include-html-nav-classes: $include-html-classes;
|
952
1123
|
|
@@ -962,27 +1133,35 @@
|
|
962
1133
|
// $side-nav-link-color: $primary-color;
|
963
1134
|
// $side-nav-link-color-active: scale-color($side-nav-link-color, $lightness: 30%);
|
964
1135
|
// $side-nav-link-color-hover: scale-color($side-nav-link-color, $lightness: 30%);
|
1136
|
+
// $side-nav-link-bg-hover: hsla(0, 0, 0, 0.025);
|
1137
|
+
// $side-nav-link-margin: 0;
|
1138
|
+
// $side-nav-link-padding: rem-calc(7 14);
|
965
1139
|
// $side-nav-font-size: rem-calc(14);
|
966
1140
|
// $side-nav-font-weight: $font-weight-normal;
|
967
1141
|
// $side-nav-font-weight-active: $side-nav-font-weight;
|
968
1142
|
// $side-nav-font-family: $body-font-family;
|
969
|
-
// $side-nav-
|
970
|
-
|
1143
|
+
// $side-nav-font-family-active: $side-nav-font-family;
|
971
1144
|
|
1145
|
+
// We use these to control heading styles.
|
1146
|
+
// $side-nav-heading-color: $side-nav-link-color;
|
1147
|
+
// $side-nav-heading-font-size: $side-nav-font-size;
|
1148
|
+
// $side-nav-heading-font-weight: bold;
|
1149
|
+
// $side-nav-heading-text-transform: uppercase;
|
972
1150
|
|
973
1151
|
// We use these to control border styles
|
974
1152
|
// $side-nav-divider-size: 1px;
|
975
1153
|
// $side-nav-divider-style: solid;
|
976
|
-
// $side-nav-divider-color: scale-color(
|
1154
|
+
// $side-nav-divider-color: scale-color($white, $lightness: 10%);
|
977
1155
|
|
978
|
-
// Split Buttons
|
1156
|
+
// 27. Split Buttons
|
1157
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
979
1158
|
|
980
1159
|
// $include-html-button-classes: $include-html-classes;
|
981
1160
|
|
982
1161
|
// We use these to control different shared styles for Split Buttons
|
983
1162
|
// $split-button-function-factor: 10%;
|
984
|
-
// $split-button-pip-color:
|
985
|
-
// $split-button-pip-color-alt:
|
1163
|
+
// $split-button-pip-color: $white;
|
1164
|
+
// $split-button-pip-color-alt: $oil;
|
986
1165
|
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
|
987
1166
|
|
988
1167
|
// We use these to control tiny split buttons
|
@@ -1013,7 +1192,8 @@
|
|
1013
1192
|
// $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
|
1014
1193
|
// $split-button-pip-default-float-lrg: rem-calc(-6);
|
1015
1194
|
|
1016
|
-
// Sub Nav
|
1195
|
+
// 28. Sub Nav
|
1196
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1017
1197
|
|
1018
1198
|
// $include-html-nav-classes: $include-html-classes;
|
1019
1199
|
|
@@ -1024,42 +1204,40 @@
|
|
1024
1204
|
// We use this to control the definition
|
1025
1205
|
// $sub-nav-font-family: $body-font-family;
|
1026
1206
|
// $sub-nav-font-size: rem-calc(14);
|
1027
|
-
// $sub-nav-font-color:
|
1207
|
+
// $sub-nav-font-color: $aluminum;
|
1028
1208
|
// $sub-nav-font-weight: $font-weight-normal;
|
1029
1209
|
// $sub-nav-text-decoration: none;
|
1030
1210
|
// $sub-nav-padding: rem-calc(3 16);
|
1031
1211
|
// $sub-nav-border-radius: 3px;
|
1032
1212
|
// $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
|
1033
1213
|
|
1034
|
-
|
1035
1214
|
// We use these to control the active item styles
|
1036
1215
|
// $sub-nav-active-font-weight: $font-weight-normal;
|
1037
1216
|
// $sub-nav-active-bg: $primary-color;
|
1038
1217
|
// $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
|
1039
|
-
// $sub-nav-active-color:
|
1218
|
+
// $sub-nav-active-color: $white;
|
1040
1219
|
// $sub-nav-active-padding: $sub-nav-padding;
|
1041
1220
|
// $sub-nav-active-cursor: default;
|
1042
1221
|
|
1043
1222
|
// $sub-nav-item-divider: "";
|
1044
1223
|
// $sub-nav-item-divider-margin: rem-calc(12);
|
1045
1224
|
|
1046
|
-
//
|
1047
|
-
//
|
1048
|
-
//
|
1225
|
+
// 29. Switch
|
1226
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1049
1227
|
|
1050
1228
|
// $include-html-form-classes: $include-html-classes;
|
1051
1229
|
|
1052
1230
|
// Controlling border styles and background colors for the switch container
|
1053
|
-
// $switch-border-color: scale-color(
|
1231
|
+
// $switch-border-color: scale-color($white, $lightness: -20%);
|
1054
1232
|
// $switch-border-style: solid;
|
1055
1233
|
// $switch-border-width: 1px;
|
1056
|
-
// $switch-bg:
|
1234
|
+
// $switch-bg: $white;
|
1057
1235
|
|
1058
1236
|
// We use these to control the switch heights for our default classes
|
1059
|
-
// $switch-height-tny:
|
1060
|
-
// $switch-height-sml:
|
1061
|
-
// $switch-height-med:
|
1062
|
-
// $switch-height-lrg:
|
1237
|
+
// $switch-height-tny: rem-calc(22);
|
1238
|
+
// $switch-height-sml: rem-calc(28);
|
1239
|
+
// $switch-height-med: rem-calc(36);
|
1240
|
+
// $switch-height-lrg: rem-calc(44);
|
1063
1241
|
// $switch-bottom-margin: rem-calc(20);
|
1064
1242
|
|
1065
1243
|
// We use these to control default font sizes for our classes.
|
@@ -1070,7 +1248,7 @@
|
|
1070
1248
|
// $switch-label-side-padding: 6px;
|
1071
1249
|
|
1072
1250
|
// We use these to style the switch-paddle
|
1073
|
-
// $switch-paddle-bg:
|
1251
|
+
// $switch-paddle-bg: $white;
|
1074
1252
|
// $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
|
1075
1253
|
// $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
|
1076
1254
|
// $switch-paddle-border-width: 1px;
|
@@ -1078,52 +1256,53 @@
|
|
1078
1256
|
// $switch-paddle-transition-speed: .1s;
|
1079
1257
|
// $switch-paddle-transition-ease: ease-out;
|
1080
1258
|
// $switch-positive-color: scale-color($success-color, $lightness: 94%);
|
1081
|
-
// $switch-negative-color:
|
1259
|
+
// $switch-negative-color: $white-smoke;
|
1082
1260
|
|
1083
1261
|
// Outline Style for tabbing through switches
|
1084
|
-
// $switch-label-outline: 1px dotted
|
1262
|
+
// $switch-label-outline: 1px dotted $jumbo;
|
1085
1263
|
|
1086
|
-
// Tables
|
1264
|
+
// 30. Tables
|
1265
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1087
1266
|
|
1088
1267
|
// $include-html-table-classes: $include-html-classes;
|
1089
1268
|
|
1090
1269
|
// These control the background color for the table and even rows
|
1091
|
-
// $table-bg:
|
1092
|
-
// $table-even-row-bg:
|
1270
|
+
// $table-bg: $white;
|
1271
|
+
// $table-even-row-bg: $snow ;
|
1093
1272
|
|
1094
1273
|
// These control the table cell border style
|
1095
1274
|
// $table-border-style: solid;
|
1096
1275
|
// $table-border-size: 1px;
|
1097
|
-
// $table-border-color:
|
1276
|
+
// $table-border-color: $gainsboro;
|
1098
1277
|
|
1099
1278
|
// These control the table head styles
|
1100
|
-
// $table-head-bg:
|
1279
|
+
// $table-head-bg: $white-smoke ;
|
1101
1280
|
// $table-head-font-size: rem-calc(14);
|
1102
|
-
// $table-head-font-color:
|
1281
|
+
// $table-head-font-color: $jet;
|
1103
1282
|
// $table-head-font-weight: $font-weight-bold;
|
1104
1283
|
// $table-head-padding: rem-calc(8 10 10);
|
1105
1284
|
|
1106
1285
|
// These control the row padding and font styles
|
1107
1286
|
// $table-row-padding: rem-calc(9 10);
|
1108
1287
|
// $table-row-font-size: rem-calc(14);
|
1109
|
-
// $table-row-font-color:
|
1288
|
+
// $table-row-font-color: $jet;
|
1110
1289
|
// $table-line-height: rem-calc(18);
|
1111
1290
|
|
1112
|
-
// These are for controlling the display and margin of tables
|
1291
|
+
// These are for controlling the layout, display and margin of tables
|
1292
|
+
// $table-layout: auto;
|
1113
1293
|
// $table-display: table-cell;
|
1114
1294
|
// $table-margin-bottom: rem-calc(20);
|
1115
1295
|
|
1116
|
-
//
|
1117
|
-
//
|
1118
|
-
//
|
1296
|
+
// 31. Tabs
|
1297
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1119
1298
|
|
1120
1299
|
// $include-html-tabs-classes: $include-html-classes;
|
1121
1300
|
|
1122
1301
|
// $tabs-navigation-padding: rem-calc(16);
|
1123
|
-
// $tabs-navigation-bg-color:
|
1124
|
-
// $tabs-navigation-active-bg-color:
|
1302
|
+
// $tabs-navigation-bg-color: $silver ;
|
1303
|
+
// $tabs-navigation-active-bg-color: $white;
|
1125
1304
|
// $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
|
1126
|
-
// $tabs-navigation-font-color:
|
1305
|
+
// $tabs-navigation-font-color: $jet;
|
1127
1306
|
// $tabs-navigation-active-font-color: $tabs-navigation-font-color;
|
1128
1307
|
// $tabs-navigation-font-size: rem-calc(16);
|
1129
1308
|
// $tabs-navigation-font-family: $body-font-family;
|
@@ -1133,58 +1312,56 @@
|
|
1133
1312
|
|
1134
1313
|
// $tabs-vertical-navigation-margin-bottom: 1.25rem;
|
1135
1314
|
|
1136
|
-
//
|
1137
|
-
//
|
1138
|
-
//
|
1315
|
+
// 32. Thumbnails
|
1316
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1139
1317
|
|
1140
1318
|
// $include-html-media-classes: $include-html-classes;
|
1141
1319
|
|
1142
1320
|
// We use these to control border styles
|
1143
1321
|
// $thumb-border-style: solid;
|
1144
1322
|
// $thumb-border-width: 4px;
|
1145
|
-
// $thumb-border-color:
|
1146
|
-
// $thumb-box-shadow: 0 0 0 1px rgba(
|
1323
|
+
// $thumb-border-color: $white;
|
1324
|
+
// $thumb-box-shadow: 0 0 0 1px rgba($black,.2);
|
1147
1325
|
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
|
1148
1326
|
|
1149
1327
|
// Radius and transition speed for thumbs
|
1150
1328
|
// $thumb-radius: $global-radius;
|
1151
1329
|
// $thumb-transition-speed: 200ms;
|
1152
1330
|
|
1153
|
-
//
|
1154
|
-
//
|
1155
|
-
//
|
1331
|
+
// 33. Tooltips
|
1332
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1156
1333
|
|
1157
1334
|
// $include-html-tooltip-classes: $include-html-classes;
|
1158
1335
|
|
1159
|
-
// $has-tip-border-bottom: dotted 1px
|
1336
|
+
// $has-tip-border-bottom: dotted 1px $iron;
|
1160
1337
|
// $has-tip-font-weight: $font-weight-bold;
|
1161
|
-
// $has-tip-font-color:
|
1338
|
+
// $has-tip-font-color: $oil;
|
1162
1339
|
// $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
|
1163
1340
|
// $has-tip-font-color-hover: $primary-color;
|
1164
1341
|
// $has-tip-cursor-type: help;
|
1165
1342
|
|
1166
1343
|
// $tooltip-padding: rem-calc(12);
|
1167
|
-
// $tooltip-bg:
|
1344
|
+
// $tooltip-bg: $oil;
|
1168
1345
|
// $tooltip-font-size: rem-calc(14);
|
1169
1346
|
// $tooltip-font-weight: $font-weight-normal;
|
1170
|
-
// $tooltip-font-color:
|
1347
|
+
// $tooltip-font-color: $white;
|
1171
1348
|
// $tooltip-line-height: 1.3;
|
1172
1349
|
// $tooltip-close-font-size: rem-calc(10);
|
1173
1350
|
// $tooltip-close-font-weight: $font-weight-normal;
|
1174
|
-
// $tooltip-close-font-color:
|
1351
|
+
// $tooltip-close-font-color: $monsoon;
|
1175
1352
|
// $tooltip-font-size-sml: rem-calc(14);
|
1176
1353
|
// $tooltip-radius: $global-radius;
|
1177
1354
|
// $tooltip-rounded: $global-rounded;
|
1178
1355
|
// $tooltip-pip-size: 5px;
|
1356
|
+
// $tooltip-max-width: 300px;
|
1179
1357
|
|
1180
|
-
//
|
1181
|
-
//
|
1182
|
-
//
|
1358
|
+
// 34. Top Bar
|
1359
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1183
1360
|
|
1184
1361
|
// $include-html-top-bar-classes: $include-html-classes;
|
1185
1362
|
|
1186
1363
|
// Background color for the top bar
|
1187
|
-
// $topbar-bg-color:
|
1364
|
+
// $topbar-bg-color: $oil;
|
1188
1365
|
// $topbar-bg: $topbar-bg-color;
|
1189
1366
|
|
1190
1367
|
// Height and margin
|
@@ -1196,48 +1373,50 @@
|
|
1196
1373
|
// $topbar-title-font-size: rem-calc(17);
|
1197
1374
|
|
1198
1375
|
// Style the top bar dropdown elements
|
1199
|
-
// $topbar-dropdown-bg:
|
1200
|
-
// $topbar-dropdown-link-color:
|
1201
|
-
// $topbar-dropdown-link-bg:
|
1376
|
+
// $topbar-dropdown-bg: $oil;
|
1377
|
+
// $topbar-dropdown-link-color: $white;
|
1378
|
+
// $topbar-dropdown-link-bg: $oil;
|
1202
1379
|
// $topbar-dropdown-link-weight: $font-weight-normal;
|
1203
1380
|
// $topbar-dropdown-toggle-size: 5px;
|
1204
|
-
// $topbar-dropdown-toggle-color:
|
1381
|
+
// $topbar-dropdown-toggle-color: $white;
|
1205
1382
|
// $topbar-dropdown-toggle-alpha: 0.4;
|
1206
1383
|
|
1207
1384
|
// Set the link colors and styles for top-level nav
|
1208
|
-
// $topbar-link-color:
|
1209
|
-
// $topbar-link-color-hover:
|
1210
|
-
// $topbar-link-color-active:
|
1211
|
-
// $topbar-link-color-active-hover:
|
1385
|
+
// $topbar-link-color: $white;
|
1386
|
+
// $topbar-link-color-hover: $white;
|
1387
|
+
// $topbar-link-color-active: $white;
|
1388
|
+
// $topbar-link-color-active-hover: $white;
|
1212
1389
|
// $topbar-link-weight: $font-weight-normal;
|
1213
1390
|
// $topbar-link-font-size: rem-calc(13);
|
1214
1391
|
// $topbar-link-hover-lightness: -10%; // Darken by 10%
|
1215
1392
|
// $topbar-link-bg: $topbar-bg;
|
1216
|
-
// $topbar-link-bg-color-hover:
|
1393
|
+
// $topbar-link-bg-color-hover: $charcoal;
|
1217
1394
|
// $topbar-link-bg-hover: #272727;
|
1218
1395
|
// $topbar-link-bg-active: $primary-color;
|
1219
1396
|
// $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
|
1220
1397
|
// $topbar-link-font-family: $body-font-family;
|
1221
1398
|
// $topbar-link-text-transform: none;
|
1222
1399
|
// $topbar-link-padding: $topbar-height / 3;
|
1400
|
+
// $topbar-back-link-size: $h5-font-size;
|
1401
|
+
// $topbar-link-dropdown-padding: 20px;
|
1223
1402
|
|
1224
1403
|
// $topbar-button-font-size: 0.75rem;
|
1225
1404
|
// $topbar-button-top: 7px;
|
1226
1405
|
|
1227
|
-
// $topbar-dropdown-label-color:
|
1406
|
+
// $topbar-dropdown-label-color: $monsoon;
|
1228
1407
|
// $topbar-dropdown-label-text-transform: uppercase;
|
1229
1408
|
// $topbar-dropdown-label-font-weight: $font-weight-bold;
|
1230
1409
|
// $topbar-dropdown-label-font-size: rem-calc(10);
|
1231
|
-
// $topbar-dropdown-label-bg:
|
1410
|
+
// $topbar-dropdown-label-bg: $oil;
|
1232
1411
|
|
1233
1412
|
// Top menu icon styles
|
1234
1413
|
// $topbar-menu-link-transform: uppercase;
|
1235
1414
|
// $topbar-menu-link-font-size: rem-calc(13);
|
1236
1415
|
// $topbar-menu-link-weight: $font-weight-bold;
|
1237
|
-
// $topbar-menu-link-color:
|
1238
|
-
// $topbar-menu-icon-color:
|
1239
|
-
// $topbar-menu-link-color-toggled:
|
1240
|
-
// $topbar-menu-icon-color-toggled:
|
1416
|
+
// $topbar-menu-link-color: $white;
|
1417
|
+
// $topbar-menu-icon-color: $white;
|
1418
|
+
// $topbar-menu-link-color-toggled: $jumbo;
|
1419
|
+
// $topbar-menu-icon-color-toggled: $jumbo;
|
1241
1420
|
|
1242
1421
|
// Transitions and breakpoint styles
|
1243
1422
|
// $topbar-transition-speed: 300ms;
|
@@ -1253,44 +1432,10 @@
|
|
1253
1432
|
// $topbar-sticky-class: ".sticky";
|
1254
1433
|
// $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
|
1255
1434
|
|
1256
|
-
//
|
1257
|
-
//
|
1258
|
-
//
|
1435
|
+
// 36. Visibility Classes
|
1436
|
+
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1259
1437
|
|
1260
1438
|
// $include-html-visibility-classes: $include-html-classes;
|
1261
1439
|
// $include-table-visibility-classes: true;
|
1262
1440
|
// $include-legacy-visibility-classes: true;
|
1263
|
-
|
1264
|
-
//
|
1265
|
-
// RANGE SLIDER
|
1266
|
-
//
|
1267
|
-
|
1268
|
-
// $include-html-range-slider-classes: $include-html-classes;
|
1269
|
-
|
1270
|
-
// These variabels define the slider bar styles
|
1271
|
-
// $range-slider-bar-width: 100%;
|
1272
|
-
// $range-slider-bar-height: rem-calc(16);
|
1273
|
-
|
1274
|
-
// $range-slider-bar-border-width: 1px;
|
1275
|
-
// $range-slider-bar-border-style: solid;
|
1276
|
-
// $range-slider-bar-border-color: #ddd;
|
1277
|
-
// $range-slider-radius: $global-radius;
|
1278
|
-
// $range-slider-round: $global-rounded;
|
1279
|
-
// $range-slider-bar-bg-color: #fafafa;
|
1280
|
-
|
1281
|
-
// Vertical bar styles
|
1282
|
-
// $range-slider-vertical-bar-width: rem-calc(16);
|
1283
|
-
// $range-slider-vertical-bar-height: rem-calc(200);
|
1284
|
-
|
1285
|
-
// These variabels define the slider handle styles
|
1286
|
-
// $range-slider-handle-width: rem-calc(32);
|
1287
|
-
// $range-slider-handle-height: rem-calc(22);
|
1288
|
-
// $range-slider-handle-position-top: rem-calc(-5);
|
1289
|
-
// $range-slider-handle-bg-color: $primary-color;
|
1290
|
-
// $range-slider-handle-border-width: 1px;
|
1291
|
-
// $range-slider-handle-border-style: solid;
|
1292
|
-
// $range-slider-handle-border-color: none;
|
1293
|
-
// $range-slider-handle-radius: $global-radius;
|
1294
|
-
// $range-slider-handle-round: $global-rounded;
|
1295
|
-
// $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
|
1296
|
-
// $range-slider-handle-cursor: pointer;
|
1441
|
+
// $include-accessibility-classes: true;
|