foundation-rails 5.0.2.0 → 5.0.3.0

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.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/lib/foundation/rails/version.rb +1 -1
  3. data/vendor/assets/javascripts/foundation/foundation.abide.js +27 -6
  4. data/vendor/assets/javascripts/foundation/foundation.accordion.js +1 -1
  5. data/vendor/assets/javascripts/foundation/foundation.alert.js +3 -3
  6. data/vendor/assets/javascripts/foundation/foundation.clearing.js +25 -12
  7. data/vendor/assets/javascripts/foundation/foundation.dropdown.js +25 -7
  8. data/vendor/assets/javascripts/foundation/foundation.interchange.js +6 -5
  9. data/vendor/assets/javascripts/foundation/foundation.joyride.js +19 -16
  10. data/vendor/assets/javascripts/foundation/foundation.js +12 -9
  11. data/vendor/assets/javascripts/foundation/foundation.magellan.js +13 -1
  12. data/vendor/assets/javascripts/foundation/foundation.offcanvas.js +2 -2
  13. data/vendor/assets/javascripts/foundation/foundation.orbit.js +42 -20
  14. data/vendor/assets/javascripts/foundation/foundation.reveal.js +80 -36
  15. data/vendor/assets/javascripts/foundation/foundation.tab.js +14 -5
  16. data/vendor/assets/javascripts/foundation/foundation.tooltip.js +9 -8
  17. data/vendor/assets/javascripts/foundation/foundation.topbar.js +5 -4
  18. data/vendor/assets/javascripts/vendor/modernizr.js +1405 -3
  19. data/vendor/assets/stylesheets/foundation.scss +2 -0
  20. data/vendor/assets/stylesheets/foundation/_functions.scss +3 -0
  21. data/vendor/assets/stylesheets/foundation/_settings.scss +244 -50
  22. data/vendor/assets/stylesheets/foundation/components/_accordion.scss +15 -15
  23. data/vendor/assets/stylesheets/foundation/components/_alert-boxes.scss +4 -4
  24. data/vendor/assets/stylesheets/foundation/components/_block-grid.scss +3 -2
  25. data/vendor/assets/stylesheets/foundation/components/_breadcrumbs.scss +3 -3
  26. data/vendor/assets/stylesheets/foundation/components/_button-groups.scss +10 -4
  27. data/vendor/assets/stylesheets/foundation/components/_buttons.scss +8 -6
  28. data/vendor/assets/stylesheets/foundation/components/_clearing.scss +1 -1
  29. data/vendor/assets/stylesheets/foundation/components/_dropdown-buttons.scss +0 -0
  30. data/vendor/assets/stylesheets/foundation/components/_dropdown.scss +5 -5
  31. data/vendor/assets/stylesheets/foundation/components/_flex-video.scss +0 -0
  32. data/vendor/assets/stylesheets/foundation/components/_forms.scss +43 -19
  33. data/vendor/assets/stylesheets/foundation/components/_global.scss +29 -18
  34. data/vendor/assets/stylesheets/foundation/components/_grid.scss +41 -25
  35. data/vendor/assets/stylesheets/foundation/components/_inline-lists.scss +0 -0
  36. data/vendor/assets/stylesheets/foundation/components/_joyride.scss +1 -1
  37. data/vendor/assets/stylesheets/foundation/components/_keystrokes.scss +5 -5
  38. data/vendor/assets/stylesheets/foundation/components/_labels.scss +0 -0
  39. data/vendor/assets/stylesheets/foundation/components/_magellan.scss +0 -0
  40. data/vendor/assets/stylesheets/foundation/components/_offcanvas.scss +110 -98
  41. data/vendor/assets/stylesheets/foundation/components/_orbit.scss +12 -10
  42. data/vendor/assets/stylesheets/foundation/components/_pagination.scss +1 -1
  43. data/vendor/assets/stylesheets/foundation/components/_panels.scss +6 -6
  44. data/vendor/assets/stylesheets/foundation/components/_pricing-tables.scss +0 -0
  45. data/vendor/assets/stylesheets/foundation/components/_progress-bars.scss +1 -1
  46. data/vendor/assets/stylesheets/foundation/components/_reveal.scss +2 -2
  47. data/vendor/assets/stylesheets/foundation/components/_side-nav.scss +4 -4
  48. data/vendor/assets/stylesheets/foundation/components/_split-buttons.scss +0 -0
  49. data/vendor/assets/stylesheets/foundation/components/_sub-nav.scss +9 -9
  50. data/vendor/assets/stylesheets/foundation/components/_switch.scss +30 -28
  51. data/vendor/assets/stylesheets/foundation/components/_tables.scss +2 -2
  52. data/vendor/assets/stylesheets/foundation/components/_tabs.scss +75 -73
  53. data/vendor/assets/stylesheets/foundation/components/_thumbs.scss +1 -2
  54. data/vendor/assets/stylesheets/foundation/components/_tooltips.scss +1 -1
  55. data/vendor/assets/stylesheets/foundation/components/_top-bar.scss +61 -47
  56. data/vendor/assets/stylesheets/foundation/components/_type.scss +13 -14
  57. data/vendor/assets/stylesheets/foundation/components/_visibility.scss +23 -8
  58. data/vendor/assets/stylesheets/normalize.scss +0 -0
  59. metadata +3 -5
  60. data/vendor/_settings.scss +0 -992
  61. data/vendor/assets/stylesheets/foundation/components/_functions.scss +0 -70
@@ -34,5 +34,7 @@
34
34
  "foundation/components/tabs",
35
35
  "foundation/components/thumbs",
36
36
  "foundation/components/tooltips",
37
+ "foundation/components/top-bar",
38
+ "foundation/components/type",
37
39
  "foundation/components/offcanvas",
38
40
  "foundation/components/visibility";
@@ -1,3 +1,6 @@
1
+ // This is the default html and body font-size for the base rem value.
2
+ $rem-base: 16px !default;
3
+
1
4
  $modules: () !default;
2
5
  @mixin exports($name) {
3
6
  @if (index($modules, $name) == false) {
@@ -1,9 +1,12 @@
1
- //
1
+ //
2
2
  // FOUNDATION SETTINGS
3
3
  //
4
4
 
5
- // Uncomment to use rem-calc() in your settings
6
- // @import "foundation/functions";
5
+ // This is the default html and body font-size for the base rem value.
6
+ // $rem-base: 16px;
7
+
8
+ // Allows the use of rem-calc() or lower-bound() in your settings
9
+ @import "foundation/functions";
7
10
 
8
11
  // $experimental: true;
9
12
 
@@ -18,9 +21,6 @@
18
21
  // The $base-line-height is 100% while $base-font-size is 150%
19
22
  // $base-line-height: 150%;
20
23
 
21
- // This is the default html and body font-size for the base rem value.
22
- // $rem-base: 16px;
23
-
24
24
  // We use this to control whether or not CSS classes come through in the gem files.
25
25
  // $include-html-classes: true;
26
26
  // $include-print-styles: true;
@@ -111,8 +111,8 @@
111
111
 
112
112
  // $accordion-navigation-padding: rem-calc(16);
113
113
  // $accordion-navigation-bg-color: #efefef ;
114
- // $accordion-navigation-hover-bg-color: darken($accordion-navigation-bg-color, 5%);
115
- // $accordion-navigation-active-bg-color: darken($accordion-navigation-bg-color, 3%);
114
+ // $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
115
+ // $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
116
116
  // $accordion-navigation-font-color: #222;
117
117
  // $accordion-navigation-font-size: rem-calc(16);
118
118
  // $accordion-navigation-font-family: $body-font-family;
@@ -134,15 +134,15 @@
134
134
  // $alert-font-weight: normal;
135
135
  // $alert-font-size: rem-calc(13);
136
136
  // $alert-font-color: #fff;
137
- // $alert-font-color-alt: darken($secondary-color, 60%);
137
+ // $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
138
138
 
139
139
  // We use this for close hover effect.
140
- // $alert-function-factor: 5%;
140
+ // $alert-function-factor: -14%;
141
141
 
142
142
  // We use these to control border styles.
143
143
  // $alert-border-style: solid;
144
144
  // $alert-border-width: 1px;
145
- // $alert-border-color: darken($primary-color, $alert-function-factor);
145
+ // $alert-border-color: scale-color($primary-color, $lightness: $alert-function-factor);
146
146
  // $alert-bottom-margin: rem-calc(20);
147
147
 
148
148
  // We use these to style the close buttons
@@ -173,17 +173,17 @@
173
173
  // $include-html-nav-classes: $include-html-classes;
174
174
 
175
175
  // We use this to set the background color for the breadcrumb container.
176
- // $crumb-bg: lighten($secondary-color, 5%);
176
+ // $crumb-bg: scale-color($secondary-color, $lightness: 55%);
177
177
 
178
178
  // We use these to set the padding around the breadcrumbs.
179
179
  // $crumb-padding: rem-calc(9 14 9);
180
180
  // $crumb-side-padding: rem-calc(12);
181
181
 
182
182
  // We use these to control border styles.
183
- // $crumb-function-factor: 10%;
183
+ // $crumb-function-factor: -10%;
184
184
  // $crumb-border-size: 1px;
185
185
  // $crumb-border-style: solid;
186
- // $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
186
+ // $crumb-border-color: scale-color($crumb-bg, $lightness: $crumb-function-factor);
187
187
  // $crumb-radius: $global-radius;
188
188
 
189
189
  // We use these to set various text styles for breadcrumbs.
@@ -198,6 +198,47 @@
198
198
  // $crumb-slash-color: #aaa;
199
199
  // $crumb-slash: "/";
200
200
 
201
+ //
202
+ // BUTTONS
203
+ //
204
+
205
+ // $include-html-button-classes: $include-html-classes;
206
+
207
+ // We use these to build padding for buttons.
208
+ // $button-tny: rem-calc(10);
209
+ // $button-sml: rem-calc(14);
210
+ // $button-med: rem-calc(16);
211
+ // $button-lrg: rem-calc(18);
212
+
213
+ // We use this to control the display property.
214
+ // $button-display: inline-block;
215
+ // $button-margin-bottom: rem-calc(20);
216
+
217
+ // We use these to control button text styles.
218
+ // $button-font-family: $body-font-family;
219
+ // $button-font-color: #fff;
220
+ // $button-font-color-alt: #333;
221
+ // $button-font-tny: rem-calc(11);
222
+ // $button-font-sml: rem-calc(13);
223
+ // $button-font-med: rem-calc(16);
224
+ // $button-font-lrg: rem-calc(20);
225
+ // $button-font-weight: normal;
226
+ // $button-font-align: center;
227
+
228
+ // We use these to control various hover effects.
229
+ // $button-function-factor: 5%;
230
+
231
+ // We use these to control button border styles.
232
+ // $button-border-width: 1px;
233
+ // $button-border-style: solid;
234
+
235
+ // We use this to set the default radius used throughout the core.
236
+ // $button-radius: $global-radius;
237
+ // $button-round: $global-rounded;
238
+
239
+ // We use this to set default opacity for disabled buttons.
240
+ // $button-disabled-opacity: 0.7;
241
+
201
242
  // Button Groups
202
243
 
203
244
  // $include-html-button-classes: $include-html-classes;
@@ -237,7 +278,7 @@
237
278
 
238
279
  // Dropdown
239
280
 
240
- // $include-html-button-classes: $include-html-classes;
281
+ // $include-html-dropdown-classes: $include-html-classes;
241
282
 
242
283
  // We use these to controls height and width styles.
243
284
  // $f-dropdown-max-width: 200px;
@@ -251,7 +292,7 @@
251
292
  // We use this to set the border styles for dropdowns.
252
293
  // $f-dropdown-border-style: solid;
253
294
  // $f-dropdown-border-width: 1px;
254
- // $f-dropdown-border-color: darken(#fff, 20%);
295
+ // $f-dropdown-border-color: scale-color(#fff, $lightness: -20%);
255
296
 
256
297
  // We use these to style the triangle pip.
257
298
  // $f-dropdown-triangle-size: 6px;
@@ -330,15 +371,15 @@
330
371
  // $form-label-pointer: pointer;
331
372
  // $form-label-font-size: rem-calc(14);
332
373
  // $form-label-font-weight: normal;
333
- // $form-label-font-color: lighten(#000, 30%);
374
+ // $form-label-font-color: scale-color(#000, $lightness: 30%);
334
375
  // $form-label-bottom-margin: rem-calc(8);
335
376
  // $input-font-family: inherit;
336
377
  // $input-font-color: rgba(0,0,0,0.75);
337
378
  // $input-font-size: rem-calc(14);
338
379
  // $input-bg-color: #fff;
339
- // $input-focus-bg-color: darken(#fff, 2%);
340
- // $input-border-color: darken(#fff, 20%);
341
- // $input-focus-border-color: darken(#fff, 40%);
380
+ // $input-focus-bg-color: scale-color(#fff, $lightness: -2%);
381
+ // $input-border-color: scale-color(#fff, $lightness: -20%);
382
+ // $input-focus-border-color: scale-color(#fff, $lightness: -40%);
342
383
  // $input-border-style: solid;
343
384
  // $input-border-width: 1px;
344
385
  // $input-disabled-bg: #ddd;
@@ -358,8 +399,8 @@
358
399
  // $legend-padding: rem-calc(0 3);
359
400
 
360
401
  // We use these to style the prefix and postfix input elements
361
- // $input-prefix-bg: darken(#fff, 5%);
362
- // $input-prefix-border-color: darken(#fff, 20%);
402
+ // $input-prefix-bg: scale-color(#fff, $lightness: -5%);
403
+ // $input-prefix-border-color: scale-color(#fff, $lightness: -20%);
363
404
  // $input-prefix-border-size: 1px;
364
405
  // $input-prefix-border-type: solid;
365
406
  // $input-prefix-overflow: hidden;
@@ -380,7 +421,7 @@
380
421
  // $glowing-effect-color: $input-focus-border-color;
381
422
 
382
423
  // Select variables
383
- // $select-bg-color: #fafafa ;
424
+ // $select-bg-color: #fafafa;
384
425
 
385
426
  // Inline Lists
386
427
 
@@ -445,16 +486,16 @@
445
486
  // $keystroke-font-size: rem-calc(14);
446
487
  // $keystroke-font-color: #222;
447
488
  // $keystroke-font-color-alt: #fff;
448
- // $keystroke-function-factor: 7%;
489
+ // $keystroke-function-factor: -7%;
449
490
 
450
491
  // We use this to control keystroke padding.
451
492
  // $keystroke-padding: rem-calc(2 4 0);
452
493
 
453
494
  // We use these to control background and border styles.
454
- // $keystroke-bg: darken(#fff, $keystroke-function-factor);
495
+ // $keystroke-bg: scale-color(#fff, $lightness: $keystroke-function-factor);
455
496
  // $keystroke-border-style: solid;
456
497
  // $keystroke-border-width: 1px;
457
- // $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
498
+ // $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
458
499
  // $keystroke-radius: $global-radius;
459
500
 
460
501
  // Labels
@@ -488,8 +529,8 @@
488
529
  // $tabbar-middle-padding: 0 rem-calc(10);
489
530
 
490
531
  // Off Canvas Divider Styles
491
- // $tabbar-right-section-border: solid 1px lighten($tabbar-bg, 10%);
492
- // $tabbar-left-section-border: solid 1px darken($tabbar-bg, 10%);
532
+ // $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
533
+ // $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
493
534
 
494
535
  // Off Canvas Tab Bar Headers
495
536
  // $tabbar-header-color: #FFF;
@@ -507,16 +548,16 @@
507
548
  // $off-canvas-label-text-transform: uppercase;
508
549
  // $off-canvas-label-font-weight: bold;
509
550
  // $off-canvas-label-bg: #444;
510
- // $off-canvas-label-border-top: 1px solid lighten(#444, 10%);
551
+ // $off-canvas-label-border-top: 1px solid scale-color(#444, $lightness: 14%);
511
552
  // $off-canvas-label-border-bottom: none;
512
553
  // $off-canvas-label-margin:0;
513
554
  // $off-canvas-link-padding: rem-calc(10, 15);
514
555
  // $off-canvas-link-color: rgba(#FFF, 0.7);
515
- // $off-canvas-link-border-bottom: 1px solid darken($off-canvas-bg, 5%);
556
+ // $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
516
557
 
517
558
  // Off Canvas Menu Icon Variables
518
559
  // $tabbar-menu-icon-color: #FFF;
519
- // $tabbar-menu-icon-hover: darken($tabbar-menu-icon-color, 30%);
560
+ // $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
520
561
 
521
562
  // $tabbar-menu-icon-text-indent: rem-calc(35);
522
563
  // $tabbar-menu-icon-width: $tabbar-height;
@@ -535,7 +576,7 @@
535
576
  // $off-canvas-overlay-background: rgba(#FFF, 0.2);
536
577
  // $off-canvas-overlay-background-hover: rgba(#FFF, 0.05);
537
578
 
538
- // Transition Variabls
579
+ // Transition Variables
539
580
  // $menu-slide: "transform 500ms ease";
540
581
 
541
582
  // Orbit
@@ -548,7 +589,7 @@
548
589
  // $orbit-caption-font-color: #fff;
549
590
  // $orbit-caption-font-size: rem-calc(14);
550
591
  // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
551
- // $orbit-caption-padding: rem-calc(10,14);
592
+ // $orbit-caption-padding: rem-calc(10 14);
552
593
  // $orbit-caption-height: auto;
553
594
 
554
595
  // We use these to control the left/right nav styles
@@ -593,7 +634,7 @@
593
634
  // We use these for the pagination anchor links
594
635
  // $pagination-link-pad: rem-calc(1 10 1);
595
636
  // $pagination-link-font-color: #999;
596
- // $pagination-link-active-bg: darken(#fff, 10%);
637
+ // $pagination-link-active-bg: scale-color(#fff, $lightness: -10%);
597
638
 
598
639
  // We use these for disabled anchor links
599
640
  // $pagination-link-unavailable-cursor: default;
@@ -612,13 +653,13 @@
612
653
  // $include-html-panel-classes: $include-html-classes;
613
654
 
614
655
  // We use these to control the background and border styles
615
- // $panel-bg: darken(#fff, 5%);
656
+ // $panel-bg: scale-color(#fff, $lightness: -5%);
616
657
  // $panel-border-style: solid;
617
658
  // $panel-border-size: 1px;
618
659
 
619
660
  // We use this % to control how much we darken things on hover
620
- // $panel-function-factor: 10%;
621
- // $panel-border-color: darken($panel-bg, $panel-function-factor);
661
+ // $panel-function-factor: -11%;
662
+ // $panel-border-color: scale-color($panel-bg, $lightness: $panel-function-factor);
622
663
 
623
664
  // We use these to set default inner padding and bottom margin
624
665
  // $panel-margin-bottom: rem-calc(20);
@@ -692,7 +733,7 @@
692
733
  // $progress-bar-color: #f6f6f6 ;
693
734
 
694
735
  // We use these to control the border styles
695
- // $progress-bar-border-color: darken(#fff, 20%);
736
+ // $progress-bar-border-color: scale-color(#fff, $lightness: -20%);
696
737
  // $progress-bar-border-size: 1px;
697
738
  // $progress-bar-border-style: solid;
698
739
  // $progress-bar-border-radius: $global-radius;
@@ -751,7 +792,7 @@
751
792
 
752
793
  // We use these to control link styles.
753
794
  // $side-nav-link-color: $primary-color;
754
- // $side-nav-link-color-active: lighten(#000, 30%);
795
+ // $side-nav-link-color-active: scale-color(#000, $lightness: 30%);
755
796
  // $side-nav-font-size: rem-calc(14);
756
797
  // $side-nav-font-weight: normal;
757
798
  // $side-nav-font-family: $body-font-family;
@@ -762,7 +803,7 @@
762
803
  // We use these to control border styles
763
804
  // $side-nav-divider-size: 1px;
764
805
  // $side-nav-divider-style: solid;
765
- // $side-nav-divider-color: darken(#fff, 10%);
806
+ // $side-nav-divider-color: scale-color(#fff, $lightness: -10%);
766
807
 
767
808
  // Split Buttons
768
809
 
@@ -817,14 +858,14 @@
817
858
  // $sub-nav-font-weight: normal;
818
859
  // $sub-nav-text-decoration: none;
819
860
  // $sub-nav-border-radius: 3px;
820
- // $sub-nav-font-color-hover: darken($sub-nav-font-color, 15%);
861
+ // $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
821
862
 
822
863
 
823
864
  // We use these to control the active item styles
824
865
 
825
866
  // $sub-nav-active-font-weight: normal;
826
867
  // $sub-nav-active-bg: $primary-color;
827
- // $sub-nav-active-bg-hover: darken($sub-nav-active-bg, 5%);
868
+ // $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
828
869
  // $sub-nav-active-color: #fff;
829
870
  // $sub-nav-active-padding: rem-calc(3 16);
830
871
  // $sub-nav-active-cursor: default;
@@ -832,6 +873,46 @@
832
873
  // $sub-nav-item-divider: "";
833
874
  // $sub-nav-item-divider-margin: rem-calc(12);
834
875
 
876
+ //
877
+ // SWITCH
878
+ //
879
+
880
+ // $include-html-form-classes: $include-html-classes;
881
+
882
+ // Controlling border styles and background colors for the switch container
883
+ // $switch-border-color: scale-color(#fff, $lightness: -20%);
884
+ // $switch-border-style: solid;
885
+ // $switch-border-width: 1px;
886
+ // $switch-bg: #fff;
887
+
888
+ // We use these to control the switch heights for our default classes
889
+ // $switch-height-tny: 22px;
890
+ // $switch-height-sml: 28px;
891
+ // $switch-height-med: 36px;
892
+ // $switch-height-lrg: 44px;
893
+ // $switch-bottom-margin: rem-calc(20);
894
+
895
+ // We use these to control default font sizes for our classes.
896
+ // $switch-font-size-tny: 11px;
897
+ // $switch-font-size-sml: 12px;
898
+ // $switch-font-size-med: 14px;
899
+ // $switch-font-size-lrg: 17px;
900
+ // $switch-label-side-padding: 6px;
901
+
902
+ // We use these to style the switch-paddle
903
+ // $switch-paddle-bg: #fff;
904
+ // $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
905
+ // $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
906
+ // $switch-paddle-border-width: 1px;
907
+ // $switch-paddle-border-style: solid;
908
+ // $switch-paddle-transition-speed: .1s;
909
+ // $switch-paddle-transition-ease: ease-out;
910
+ // $switch-positive-color: scale-color($success-color, $lightness: 94%);
911
+ // $switch-negative-color: #f5f5f5;
912
+
913
+ // Outline Style for tabbing through switches
914
+ // $switch-label-outline: 1px dotted #888;
915
+
835
916
  // Tables
836
917
 
837
918
  // $include-html-table-classes: $include-html-classes;
@@ -870,7 +951,8 @@
870
951
 
871
952
  // $tabs-navigation-padding: rem-calc(16);
872
953
  // $tabs-navigation-bg-color: #efefef ;
873
- // $tabs-navigation-hover-bg-color: darken($tabs-navigation-bg-color, 5%);
954
+ // $tabs-navigation-active-bg-color: #fff;
955
+ // $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
874
956
  // $tabs-navigation-font-color: #222;
875
957
  // $tabs-navigation-font-size: rem-calc(16);
876
958
  // $tabs-navigation-font-family: $body-font-family;
@@ -906,7 +988,7 @@
906
988
  // $has-tip-border-bottom: dotted 1px #ccc;
907
989
  // $has-tip-font-weight: bold;
908
990
  // $has-tip-font-color: #333;
909
- // $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
991
+ // $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
910
992
  // $has-tip-font-color-hover: $primary-color;
911
993
  // $has-tip-cursor-type: help;
912
994
 
@@ -937,8 +1019,6 @@
937
1019
  // $topbar-height: 45px;
938
1020
  // $topbar-margin-bottom: 0;
939
1021
 
940
- // Control Input height for top bar
941
-
942
1022
  // Controlling the styles for the title in the top bar
943
1023
  // $topbar-title-weight: normal;
944
1024
  // $topbar-title-font-size: rem-calc(17);
@@ -947,6 +1027,7 @@
947
1027
  // $topbar-dropdown-bg: #333;
948
1028
  // $topbar-dropdown-link-color: #fff;
949
1029
  // $topbar-dropdown-link-bg: #333;
1030
+ // $topbar-dropdown-link-weight: normal;
950
1031
  // $topbar-dropdown-toggle-size: 5px;
951
1032
  // $topbar-dropdown-toggle-color: #fff;
952
1033
  // $topbar-dropdown-toggle-alpha: 0.4;
@@ -960,7 +1041,7 @@
960
1041
  // $topbar-link-hover-lightness: -10%; // Darken by 10%
961
1042
  // $topbar-link-bg-hover: #272727 ;
962
1043
  // $topbar-link-bg-active: $primary-color;
963
- // $topbar-link-bg-active-hover: darken($primary-color, 5%);
1044
+ // $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
964
1045
  // $topbar-link-font-family: $body-font-family;
965
1046
 
966
1047
  // $topbar-button-font-size: 0.75rem;
@@ -987,9 +1068,122 @@
987
1068
  // $topbar-media-query: "only screen and (min-width: #{upper-bound($medium-range)})";
988
1069
 
989
1070
  // Divider Styles
990
- // $topbar-divider-border-bottom: solid 1px lighten($topbar-bg-color, 10%);
991
- // $topbar-divider-border-top: solid 1px darken($topbar-bg-color, 10%);
1071
+ // $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
1072
+ // $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
992
1073
 
993
1074
  // Sticky Class
994
1075
  // $topbar-sticky-class: ".sticky";
995
- // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1076
+ // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1077
+
1078
+ //
1079
+ // TYPOGRAPHY
1080
+ //
1081
+
1082
+ // $include-html-type-classes: $include-html-classes;
1083
+ // $include-open-sans: true;
1084
+
1085
+ // We use these to control header font styles
1086
+ // $header-font-family: join("Open Sans", $body-font-family);
1087
+ // $header-font-weight: 300;
1088
+ // $header-font-style: normal;
1089
+ // $header-font-color: #222;
1090
+ // $header-line-height: 1.4;
1091
+ // $header-top-margin: .2rem;
1092
+ // $header-bottom-margin: .5rem;
1093
+ // $header-text-rendering: optimizeLegibility;
1094
+
1095
+ // We use these to control header font sizes
1096
+ // $h1-font-size: rem-calc(44);
1097
+ // $h2-font-size: rem-calc(37);
1098
+ // $h3-font-size: rem-calc(27);
1099
+ // $h4-font-size: rem-calc(23);
1100
+ // $h5-font-size: rem-calc(18);
1101
+ // $h6-font-size: 1rem;
1102
+
1103
+ // These control how subheaders are styled.
1104
+ // $subheader-line-height: 1.4;
1105
+ // $subheader-font-color: scale-color($header-font-color, $lightness: 35%);
1106
+ // $subheader-font-weight: 300;
1107
+ // $subheader-top-margin: .2rem;
1108
+ // $subheader-bottom-margin: .5rem;
1109
+
1110
+ // A general <small> styling
1111
+ // $small-font-size: 60%;
1112
+ // $small-font-color: scale-color($header-font-color, $lightness: 35%);
1113
+
1114
+ // We use these to style paragraphs
1115
+ // $paragraph-font-family: inherit;
1116
+ // $paragraph-font-weight: normal;
1117
+ // $paragraph-font-size: 1rem;
1118
+ // $paragraph-line-height: 1.6;
1119
+ // $paragraph-margin-bottom: rem-calc(20);
1120
+ // $paragraph-aside-font-size: rem-calc(14);
1121
+ // $paragraph-aside-line-height: 1.35;
1122
+ // $paragraph-aside-font-style: italic;
1123
+ // $paragraph-text-rendering: optimizeLegibility;
1124
+
1125
+ // We use these to style <code> tags
1126
+ // $code-color: scale-color($alert-color, $lightness: -27%);
1127
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
1128
+ // $code-font-weight: bold;
1129
+
1130
+ // We use these to style anchors
1131
+ // $anchor-text-decoration: none;
1132
+ // $anchor-font-color: $primary-color;
1133
+ // $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
1134
+
1135
+ // We use these to style the <hr> element
1136
+ // $hr-border-width: 1px;
1137
+ // $hr-border-style: solid;
1138
+ // $hr-border-color: #ddd;
1139
+ // $hr-margin: rem-calc(20);
1140
+
1141
+ // We use these to style lists
1142
+ // $list-style-position: outside;
1143
+ // $list-side-margin: 1.1rem;
1144
+ // $list-ordered-side-margin: 1.4rem;
1145
+ // $list-side-margin-no-bullet: 0;
1146
+ // $list-nested-margin: rem-calc(20);
1147
+ // $definition-list-header-weight: bold;
1148
+ // $definition-list-header-margin-bottom: .3rem;
1149
+ // $definition-list-margin-bottom: rem-calc(12);
1150
+
1151
+ // We use these to style blockquotes
1152
+ // $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
1153
+ // $blockquote-padding: rem-calc(9 20 0 19);
1154
+ // $blockquote-border: 1px solid #ddd;
1155
+ // $blockquote-cite-font-size: rem-calc(13);
1156
+ // $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
1157
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
1158
+
1159
+ // Acronym styles
1160
+ // $acronym-underline: 1px dotted #ddd;
1161
+
1162
+ // We use these to control padding and margin
1163
+ // $microformat-padding: rem-calc(10 12);
1164
+ // $microformat-margin: rem-calc(0 0 20 0);
1165
+
1166
+ // We use these to control the border styles
1167
+ // $microformat-border-width: 1px;
1168
+ // $microformat-border-style: solid;
1169
+ // $microformat-border-color: #ddd;
1170
+
1171
+ // We use these to control full name font styles
1172
+ // $microformat-fullname-font-weight: bold;
1173
+ // $microformat-fullname-font-size: rem-calc(15);
1174
+
1175
+ // We use this to control the summary font styles
1176
+ // $microformat-summary-font-weight: bold;
1177
+
1178
+ // We use this to control abbr padding
1179
+ // $microformat-abbr-padding: rem-calc(0 1);
1180
+
1181
+ // We use this to control abbr font styles
1182
+ // $microformat-abbr-font-weight: bold;
1183
+ // $microformat-abbr-font-decoration: none;
1184
+
1185
+ //
1186
+ // VISIBILITY CLASSES
1187
+ //
1188
+
1189
+ // $include-html-visibility-classes: $include-html-classes;