foundation-rails 5.5.1.0 → 5.5.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bower.json +2 -2
- data/lib/foundation/rails/version.rb +1 -1
- data/update-gem.sh +12 -7
- data/vendor/assets/javascripts/foundation.js +2 -2
- data/vendor/assets/javascripts/foundation/foundation.abide.js +62 -40
- data/vendor/assets/javascripts/foundation/foundation.accordion.js +7 -7
- data/vendor/assets/javascripts/foundation/foundation.alert.js +3 -3
- data/vendor/assets/javascripts/foundation/foundation.clearing.js +46 -48
- data/vendor/assets/javascripts/foundation/foundation.dropdown.js +71 -62
- data/vendor/assets/javascripts/foundation/foundation.equalizer.js +18 -14
- data/vendor/assets/javascripts/foundation/foundation.interchange.js +31 -25
- data/vendor/assets/javascripts/foundation/foundation.joyride.js +81 -73
- data/vendor/assets/javascripts/foundation/foundation.js +54 -41
- data/vendor/assets/javascripts/foundation/foundation.magellan.js +44 -39
- data/vendor/assets/javascripts/foundation/foundation.offcanvas.js +19 -19
- data/vendor/assets/javascripts/foundation/foundation.orbit.js +133 -129
- data/vendor/assets/javascripts/foundation/foundation.reveal.js +73 -51
- data/vendor/assets/javascripts/foundation/foundation.slider.js +63 -67
- data/vendor/assets/javascripts/foundation/foundation.tab.js +39 -19
- data/vendor/assets/javascripts/foundation/foundation.tooltip.js +30 -23
- data/vendor/assets/javascripts/foundation/foundation.topbar.js +66 -59
- data/vendor/assets/stylesheets/foundation/_functions.scss +1 -1
- data/vendor/assets/stylesheets/foundation/_settings.scss +99 -77
- data/vendor/assets/stylesheets/foundation/components/_alert-boxes.scss +2 -2
- data/vendor/assets/stylesheets/foundation/components/_block-grid.scss +1 -0
- data/vendor/assets/stylesheets/foundation/components/_breadcrumbs.scss +1 -1
- data/vendor/assets/stylesheets/foundation/components/_button-groups.scss +7 -4
- data/vendor/assets/stylesheets/foundation/components/_buttons.scss +2 -1
- data/vendor/assets/stylesheets/foundation/components/_clearing.scss +11 -2
- data/vendor/assets/stylesheets/foundation/components/_dropdown-buttons.scss +1 -0
- data/vendor/assets/stylesheets/foundation/components/_forms.scss +13 -6
- data/vendor/assets/stylesheets/foundation/components/_global.scss +3 -3
- data/vendor/assets/stylesheets/foundation/components/_icon-bar.scss +32 -2
- data/vendor/assets/stylesheets/foundation/components/_range-slider.scss +6 -4
- data/vendor/assets/stylesheets/foundation/components/_reveal.scss +15 -29
- data/vendor/assets/stylesheets/foundation/components/_split-buttons.scss +12 -0
- data/vendor/assets/stylesheets/foundation/components/_sub-nav.scss +1 -2
- data/vendor/assets/stylesheets/foundation/components/_tabs.scss +3 -1
- data/vendor/assets/stylesheets/foundation/components/_toolbar.scss +3 -1
- data/vendor/assets/stylesheets/foundation/components/_top-bar.scss +10 -3
- data/vendor/assets/stylesheets/foundation/components/_type.scss +1 -62
- data/vendor/assets/stylesheets/foundation/components/_visibility.scss +78 -12
- metadata +2 -3
- data/vendor/assets/_settings.scss +0 -1445
@@ -6,7 +6,7 @@
|
|
6
6
|
$rem-base: 16px !default;
|
7
7
|
|
8
8
|
// IMPORT ONCE
|
9
|
-
// We use this to prevent styles from being loaded multiple times for
|
9
|
+
// We use this to prevent styles from being loaded multiple times for components that rely on other components.
|
10
10
|
$modules: () !default;
|
11
11
|
@mixin exports($name) {
|
12
12
|
// Import from global scope
|
@@ -83,6 +83,8 @@ $include-html-global-classes: $include-html-classes;
|
|
83
83
|
// $total-columns: 12;
|
84
84
|
// $column-gutter: rem-calc(30);
|
85
85
|
|
86
|
+
// $last-child-float: $opposite-direction;
|
87
|
+
|
86
88
|
// c. Global
|
87
89
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
88
90
|
|
@@ -92,8 +94,8 @@ $include-html-global-classes: $include-html-classes;
|
|
92
94
|
// $font-family-monospace: Consolas, "Liberation Mono", Courier, monospace;
|
93
95
|
|
94
96
|
// We use these to define default font weights
|
95
|
-
// $font-weight-normal: normal
|
96
|
-
// $font-weight-bold: bold
|
97
|
+
// $font-weight-normal: normal;
|
98
|
+
// $font-weight-bold: bold;
|
97
99
|
|
98
100
|
// $white : #FFFFFF;
|
99
101
|
// $ghost : #FAFAFA;
|
@@ -185,6 +187,7 @@ $include-html-global-classes: $include-html-classes;
|
|
185
187
|
// We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
|
186
188
|
// $cursor-crosshair-value: crosshair;
|
187
189
|
// $cursor-default-value: default;
|
190
|
+
// $cursor-disabled-value: not-allowed;
|
188
191
|
// $cursor-pointer-value: pointer;
|
189
192
|
// $cursor-help-value: help;
|
190
193
|
// $cursor-text-value: text;
|
@@ -213,12 +216,12 @@ $include-html-global-classes: $include-html-classes;
|
|
213
216
|
// $h6-font-size: 1rem;
|
214
217
|
|
215
218
|
// We use these to control header size reduction on small screens
|
216
|
-
// $h1-font-reduction: rem-calc(10)
|
217
|
-
// $h2-font-reduction: rem-calc(10)
|
218
|
-
// $h3-font-reduction: rem-calc(5)
|
219
|
-
// $h4-font-reduction: rem-calc(5)
|
220
|
-
// $h5-font-reduction: 0
|
221
|
-
// $h6-font-reduction: 0
|
219
|
+
// $h1-font-reduction: rem-calc(10);
|
220
|
+
// $h2-font-reduction: rem-calc(10);
|
221
|
+
// $h3-font-reduction: rem-calc(5);
|
222
|
+
// $h4-font-reduction: rem-calc(5);
|
223
|
+
// $h5-font-reduction: 0;
|
224
|
+
// $h6-font-reduction: 0;
|
222
225
|
|
223
226
|
// These control how subheaders are styled.
|
224
227
|
// $subheader-line-height: 1.4;
|
@@ -256,7 +259,7 @@ $include-html-global-classes: $include-html-classes;
|
|
256
259
|
// $anchor-text-decoration: none;
|
257
260
|
// $anchor-text-decoration-hover: none;
|
258
261
|
// $anchor-font-color: $primary-color;
|
259
|
-
// $anchor-font-color-hover: scale-color($
|
262
|
+
// $anchor-font-color-hover: scale-color($anchor-font-color, $lightness: -14%);
|
260
263
|
|
261
264
|
// We use these to style the <hr> element
|
262
265
|
// $hr-border-width: 1px;
|
@@ -362,11 +365,11 @@ $include-html-global-classes: $include-html-classes;
|
|
362
365
|
// $alert-close-opacity: 0.3;
|
363
366
|
// $alert-close-opacity-hover: 0.5;
|
364
367
|
// $alert-close-padding: 9px 6px 4px;
|
368
|
+
// $alert-close-background: inherit;
|
365
369
|
|
366
370
|
// We use this to control border radius
|
367
371
|
// $alert-radius: $global-radius;
|
368
372
|
|
369
|
-
// We use this to control transition effects
|
370
373
|
// $alert-transition-speed: 300ms;
|
371
374
|
// $alert-transition-ease: ease-out;
|
372
375
|
|
@@ -379,7 +382,9 @@ $include-html-global-classes: $include-html-classes;
|
|
379
382
|
// We use this to control the maximum number of block grid elements per row
|
380
383
|
// $block-grid-elements: 12;
|
381
384
|
// $block-grid-default-spacing: rem-calc(20);
|
385
|
+
|
382
386
|
// $align-block-grid-to-grid: false;
|
387
|
+
// @if $align-block-grid-to-grid {$block-grid-default-spacing: $column-gutter;}
|
383
388
|
|
384
389
|
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
385
390
|
// $block-grid-media-queries: true;
|
@@ -444,8 +449,8 @@ $include-html-global-classes: $include-html-classes;
|
|
444
449
|
// We use these to control various hover effects.
|
445
450
|
// $button-function-factor: -20%;
|
446
451
|
|
447
|
-
// We use these to control button border
|
448
|
-
// $button-border-width:
|
452
|
+
// We use these to control button border styles.
|
453
|
+
// $button-border-width: 0;
|
449
454
|
// $button-border-style: solid;
|
450
455
|
// $button-bg-color: $primary-color;
|
451
456
|
// $button-bg-hover: scale-color($button-bg-color, $lightness: $button-function-factor);
|
@@ -456,6 +461,10 @@ $include-html-global-classes: $include-html-classes;
|
|
456
461
|
// $success-button-border-color: $success-button-bg-hover;
|
457
462
|
// $alert-button-bg-hover: scale-color($alert-color, $lightness: $button-function-factor);
|
458
463
|
// $alert-button-border-color: $alert-button-bg-hover;
|
464
|
+
// $warning-button-bg-hover: scale-color($warning-color, $lightness: $button-function-factor);
|
465
|
+
// $warning-button-border-color: $warning-button-bg-hover;
|
466
|
+
// $info-button-bg-hover: scale-color($info-color, $lightness: $button-function-factor);
|
467
|
+
// $info-button-border-color: $info-button-bg-hover;
|
459
468
|
|
460
469
|
// We use this to set the default radius used throughout the core.
|
461
470
|
// $button-radius: $global-radius;
|
@@ -564,6 +573,7 @@ $include-html-global-classes: $include-html-classes;
|
|
564
573
|
// $dropdown-button-pip-color: $white;
|
565
574
|
// $dropdown-button-pip-color-alt: $oil;
|
566
575
|
|
576
|
+
// We use these to set the size of the pip in dropdown buttons
|
567
577
|
// $button-pip-tny: rem-calc(6);
|
568
578
|
// $button-pip-sml: rem-calc(7);
|
569
579
|
// $button-pip-med: rem-calc(9);
|
@@ -635,6 +645,7 @@ $include-html-global-classes: $include-html-classes;
|
|
635
645
|
// $input-disabled-bg: $gainsboro;
|
636
646
|
// $input-disabled-cursor: $cursor-default-value;
|
637
647
|
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
|
648
|
+
// $input-include-glowing-effect: true;
|
638
649
|
|
639
650
|
// We use these to style the fieldset border and spacing.
|
640
651
|
// $fieldset-border-style: solid;
|
@@ -671,7 +682,6 @@ $include-html-global-classes: $include-html-classes;
|
|
671
682
|
// $input-error-message-font-color-alt: $oil;
|
672
683
|
|
673
684
|
// We use this to style the glowing effect of inputs when focused
|
674
|
-
// $input-include-glowing-effect: true;
|
675
685
|
// $glowing-effect-fade-time: 0.45s;
|
676
686
|
// $glowing-effect-color: $input-focus-border-color;
|
677
687
|
|
@@ -679,11 +689,11 @@ $include-html-global-classes: $include-html-classes;
|
|
679
689
|
// $select-bg-color: $ghost;
|
680
690
|
// $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%);
|
681
691
|
|
692
|
+
|
682
693
|
// 12. Icon Bar
|
683
694
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
684
695
|
|
685
696
|
// We use these to style the icon-bar and items
|
686
|
-
// $include-html-icon-bar-classes: $include-html-classes;
|
687
697
|
// $icon-bar-bg: $oil;
|
688
698
|
// $icon-bar-font-color: $white;
|
689
699
|
// $icon-bar-font-color-hover: $icon-bar-font-color;
|
@@ -697,6 +707,9 @@ $include-html-global-classes: $include-html-classes;
|
|
697
707
|
// $icon-bar-active-color: $primary-color;
|
698
708
|
// $icon-bar-item-padding: 1.25rem;
|
699
709
|
|
710
|
+
// We use this to set default opacity and cursor for disabled icons.
|
711
|
+
// $icon-bar-disabled-opacity: 0.7;
|
712
|
+
|
700
713
|
// 13. Inline Lists
|
701
714
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
702
715
|
|
@@ -798,11 +811,12 @@ $include-html-global-classes: $include-html-classes;
|
|
798
811
|
// $include-html-magellan-classes: $include-html-classes;
|
799
812
|
|
800
813
|
// $magellan-bg: $white;
|
801
|
-
// $magellan-padding:
|
814
|
+
// $magellan-padding: 10px;
|
802
815
|
|
803
816
|
// 18. Off-canvas
|
804
817
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
805
818
|
|
819
|
+
// Off Canvas Tab Bar Variables
|
806
820
|
// $include-html-off-canvas-classes: $include-html-classes;
|
807
821
|
|
808
822
|
// $tabbar-bg: $oil;
|
@@ -813,8 +827,9 @@ $include-html-global-classes: $include-html-classes;
|
|
813
827
|
// $tabbar-middle-padding: 0 rem-calc(10);
|
814
828
|
|
815
829
|
// Off Canvas Divider Styles
|
816
|
-
// $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
|
817
830
|
// $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
|
831
|
+
// $tabbar-right-section-border: $tabbar-left-section-border;
|
832
|
+
|
818
833
|
|
819
834
|
// Off Canvas Tab Bar Headers
|
820
835
|
// $tabbar-header-color: $white;
|
@@ -825,7 +840,6 @@ $include-html-global-classes: $include-html-classes;
|
|
825
840
|
// Off Canvas Menu Variables
|
826
841
|
// $off-canvas-width: rem-calc(250);
|
827
842
|
// $off-canvas-bg: $oil;
|
828
|
-
// $off-canvas-bg-hover: scale-color($tabbar-bg, $lightness: -30%);
|
829
843
|
|
830
844
|
// Off Canvas Menu List Variables
|
831
845
|
// $off-canvas-label-padding: 0.3rem rem-calc(15);
|
@@ -834,13 +848,13 @@ $include-html-global-classes: $include-html-classes;
|
|
834
848
|
// $off-canvas-label-font-size: rem-calc(12);
|
835
849
|
// $off-canvas-label-font-weight: $font-weight-bold;
|
836
850
|
// $off-canvas-label-bg: $tuatara;
|
837
|
-
// $off-canvas-label-border-top: 1px solid scale-color($
|
851
|
+
// $off-canvas-label-border-top: 1px solid scale-color($off-canvas-label-bg, $lightness: 14%);
|
838
852
|
// $off-canvas-label-border-bottom: none;
|
839
853
|
// $off-canvas-label-margin:0;
|
840
854
|
// $off-canvas-link-padding: rem-calc(10, 15);
|
841
855
|
// $off-canvas-link-color: rgba($white, 0.7);
|
842
856
|
// $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
|
843
|
-
// $off-canvas-back-bg:
|
857
|
+
// $off-canvas-back-bg: #444;
|
844
858
|
// $off-canvas-back-border-top: $off-canvas-label-border-top;
|
845
859
|
// $off-canvas-back-border-bottom: $off-canvas-label-border-bottom;
|
846
860
|
// $off-canvas-back-hover-bg: scale-color($off-canvas-back-bg, $lightness: -30%);
|
@@ -852,7 +866,7 @@ $include-html-global-classes: $include-html-classes;
|
|
852
866
|
// $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
|
853
867
|
|
854
868
|
// $tabbar-menu-icon-text-indent: rem-calc(35);
|
855
|
-
// $tabbar-menu-icon-width: $tabbar-
|
869
|
+
// $tabbar-menu-icon-width: $tabbar-icon-width;
|
856
870
|
// $tabbar-menu-icon-height: $tabbar-height;
|
857
871
|
// $tabbar-menu-icon-padding: 0;
|
858
872
|
|
@@ -906,15 +920,15 @@ $include-html-global-classes: $include-html-classes;
|
|
906
920
|
// $orbit-slide-number-font-color: $white;
|
907
921
|
// $orbit-slide-number-padding: rem-calc(5);
|
908
922
|
|
909
|
-
// Hide controls on small
|
910
|
-
// $orbit-nav-hide-for-small: true;
|
911
|
-
// $orbit-bullet-hide-for-small: true;
|
912
|
-
// $orbit-timer-hide-for-small: true;
|
913
|
-
|
914
923
|
// Graceful Loading Wrapper and preloader
|
915
924
|
// $wrapper-class: "slideshow-wrapper";
|
916
925
|
// $preloader-class: "preloader";
|
917
926
|
|
927
|
+
// Hide controls on small
|
928
|
+
// $orbit-nav-hide-for-small: true;
|
929
|
+
// $orbit-bullet-hide-for-small: true;
|
930
|
+
// $orbit-timer-hide-for-small: true;
|
931
|
+
|
918
932
|
// 20. Pagination
|
919
933
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
920
934
|
|
@@ -972,6 +986,7 @@ $include-html-global-classes: $include-html-classes;
|
|
972
986
|
|
973
987
|
// $panel-header-adjust: true;
|
974
988
|
// $callout-panel-link-color: $primary-color;
|
989
|
+
// $callout-panel-link-color-hover: scale-color($callout-panel-link-color, $lightness: -14%);
|
975
990
|
|
976
991
|
// 22. Pricing Tables
|
977
992
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
@@ -1002,6 +1017,7 @@ $include-html-global-classes: $include-html-classes;
|
|
1002
1017
|
// $price-money-size: rem-calc(32);
|
1003
1018
|
// $price-money-font-family: $body-font-family;
|
1004
1019
|
|
1020
|
+
|
1005
1021
|
// We use these to control the description styles
|
1006
1022
|
// $price-bg: $white;
|
1007
1023
|
// $price-desc-color: $monsoon;
|
@@ -1032,7 +1048,7 @@ $include-html-global-classes: $include-html-classes;
|
|
1032
1048
|
|
1033
1049
|
// We use this to set the progress bar height
|
1034
1050
|
// $progress-bar-height: rem-calc(25);
|
1035
|
-
// $progress-bar-color: $vapor
|
1051
|
+
// $progress-bar-color: $vapor;
|
1036
1052
|
|
1037
1053
|
// We use these to control the border styles
|
1038
1054
|
// $progress-bar-border-color: scale-color($white, $lightness: 20%);
|
@@ -1041,7 +1057,6 @@ $include-html-global-classes: $include-html-classes;
|
|
1041
1057
|
// $progress-bar-border-radius: $global-radius;
|
1042
1058
|
|
1043
1059
|
// We use these to control the margin & padding
|
1044
|
-
// $progress-bar-pad: rem-calc(2);
|
1045
1060
|
// $progress-bar-margin-bottom: rem-calc(10);
|
1046
1061
|
|
1047
1062
|
// We use these to set the meter colors
|
@@ -1055,7 +1070,7 @@ $include-html-global-classes: $include-html-classes;
|
|
1055
1070
|
|
1056
1071
|
// $include-html-range-slider-classes: $include-html-classes;
|
1057
1072
|
|
1058
|
-
// These
|
1073
|
+
// These variabels define the slider bar styles
|
1059
1074
|
// $range-slider-bar-width: 100%;
|
1060
1075
|
// $range-slider-bar-height: rem-calc(16);
|
1061
1076
|
|
@@ -1065,12 +1080,13 @@ $include-html-global-classes: $include-html-classes;
|
|
1065
1080
|
// $range-slider-radius: $global-radius;
|
1066
1081
|
// $range-slider-round: $global-rounded;
|
1067
1082
|
// $range-slider-bar-bg-color: $ghost;
|
1083
|
+
// $range-slider-active-segment-bg-color: scale-color($secondary-color, $lightness: -1%);
|
1068
1084
|
|
1069
1085
|
// Vertical bar styles
|
1070
1086
|
// $range-slider-vertical-bar-width: rem-calc(16);
|
1071
1087
|
// $range-slider-vertical-bar-height: rem-calc(200);
|
1072
1088
|
|
1073
|
-
// These
|
1089
|
+
// These variabels define the slider handle styles
|
1074
1090
|
// $range-slider-handle-width: rem-calc(32);
|
1075
1091
|
// $range-slider-handle-height: rem-calc(22);
|
1076
1092
|
// $range-slider-handle-position-top: rem-calc(-5);
|
@@ -1083,6 +1099,9 @@ $include-html-global-classes: $include-html-classes;
|
|
1083
1099
|
// $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
|
1084
1100
|
// $range-slider-handle-cursor: pointer;
|
1085
1101
|
|
1102
|
+
// $range-slider-disabled-opacity: 0.7;
|
1103
|
+
// $range-slider-disabled-cursor: $cursor-disabled-value;
|
1104
|
+
|
1086
1105
|
// 25. Reveal
|
1087
1106
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1088
1107
|
|
@@ -1102,8 +1121,8 @@ $include-html-global-classes: $include-html-classes;
|
|
1102
1121
|
|
1103
1122
|
// We use these to style the reveal close button
|
1104
1123
|
// $reveal-close-font-size: rem-calc(40);
|
1105
|
-
// $reveal-close-top: rem-calc(
|
1106
|
-
// $reveal-close-side: rem-calc(
|
1124
|
+
// $reveal-close-top: rem-calc(10);
|
1125
|
+
// $reveal-close-side: rem-calc(22);
|
1107
1126
|
// $reveal-close-color: $base;
|
1108
1127
|
// $reveal-close-weight: $font-weight-bold;
|
1109
1128
|
|
@@ -1129,7 +1148,7 @@ $include-html-global-classes: $include-html-classes;
|
|
1129
1148
|
|
1130
1149
|
// We use these to control list styles.
|
1131
1150
|
// $side-nav-list-type: none;
|
1132
|
-
// $side-nav-list-position:
|
1151
|
+
// $side-nav-list-position: outside;
|
1133
1152
|
// $side-nav-list-margin: rem-calc(0 0 7 0);
|
1134
1153
|
|
1135
1154
|
// We use these to control link styles.
|
@@ -1214,7 +1233,9 @@ $include-html-global-classes: $include-html-classes;
|
|
1214
1233
|
// $sub-nav-border-radius: 3px;
|
1215
1234
|
// $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
|
1216
1235
|
|
1236
|
+
|
1217
1237
|
// We use these to control the active item styles
|
1238
|
+
|
1218
1239
|
// $sub-nav-active-font-weight: $font-weight-normal;
|
1219
1240
|
// $sub-nav-active-bg: $primary-color;
|
1220
1241
|
// $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
|
@@ -1230,39 +1251,21 @@ $include-html-global-classes: $include-html-classes;
|
|
1230
1251
|
|
1231
1252
|
// $include-html-form-classes: $include-html-classes;
|
1232
1253
|
|
1233
|
-
// Controlling
|
1234
|
-
// $switch-
|
1235
|
-
// $switch-border-style: solid;
|
1236
|
-
// $switch-border-width: 1px;
|
1237
|
-
// $switch-bg: $white;
|
1254
|
+
// Controlling background color for the switch container
|
1255
|
+
// $switch-bg: $gainsboro;
|
1238
1256
|
|
1239
1257
|
// We use these to control the switch heights for our default classes
|
1240
|
-
// $switch-height-tny:
|
1241
|
-
// $switch-height-sml:
|
1242
|
-
// $switch-height-med:
|
1243
|
-
// $switch-height-lrg:
|
1244
|
-
// $switch-bottom-margin:
|
1245
|
-
|
1246
|
-
// We use these to control default font sizes for our classes.
|
1247
|
-
// $switch-font-size-tny: 11px;
|
1248
|
-
// $switch-font-size-sml: 12px;
|
1249
|
-
// $switch-font-size-med: 14px;
|
1250
|
-
// $switch-font-size-lrg: 17px;
|
1251
|
-
// $switch-label-side-padding: 6px;
|
1258
|
+
// $switch-height-tny: 1.5rem;
|
1259
|
+
// $switch-height-sml: 1.75rem;
|
1260
|
+
// $switch-height-med: 2rem;
|
1261
|
+
// $switch-height-lrg: 2.5rem;
|
1262
|
+
// $switch-bottom-margin: 1.5rem;
|
1252
1263
|
|
1253
1264
|
// We use these to style the switch-paddle
|
1254
1265
|
// $switch-paddle-bg: $white;
|
1255
|
-
// $switch-paddle-
|
1256
|
-
// $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
|
1257
|
-
// $switch-paddle-border-width: 1px;
|
1258
|
-
// $switch-paddle-border-style: solid;
|
1259
|
-
// $switch-paddle-transition-speed: .1s;
|
1266
|
+
// $switch-paddle-transition-speed: .15s;
|
1260
1267
|
// $switch-paddle-transition-ease: ease-out;
|
1261
|
-
// $switch-
|
1262
|
-
// $switch-negative-color: $white-smoke;
|
1263
|
-
|
1264
|
-
// Outline Style for tabbing through switches
|
1265
|
-
// $switch-label-outline: 1px dotted $jumbo;
|
1268
|
+
// $switch-active-color: $primary-color;
|
1266
1269
|
|
1267
1270
|
// 30. Tables
|
1268
1271
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
@@ -1279,12 +1282,25 @@ $include-html-global-classes: $include-html-classes;
|
|
1279
1282
|
// $table-border-color: $gainsboro;
|
1280
1283
|
|
1281
1284
|
// These control the table head styles
|
1282
|
-
// $table-head-bg: $white-smoke
|
1285
|
+
// $table-head-bg: $white-smoke;
|
1283
1286
|
// $table-head-font-size: rem-calc(14);
|
1284
1287
|
// $table-head-font-color: $jet;
|
1285
1288
|
// $table-head-font-weight: $font-weight-bold;
|
1286
1289
|
// $table-head-padding: rem-calc(8 10 10);
|
1287
1290
|
|
1291
|
+
// These control the table foot styles
|
1292
|
+
// $table-foot-bg: $table-head-bg;
|
1293
|
+
// $table-foot-font-size: $table-head-font-size;
|
1294
|
+
// $table-foot-font-color: $table-head-font-color;
|
1295
|
+
// $table-foot-font-weight: $table-head-font-weight;
|
1296
|
+
// $table-foot-padding: $table-head-padding;
|
1297
|
+
|
1298
|
+
// These control the caption
|
1299
|
+
// table-caption-bg: transparent;
|
1300
|
+
// $table-caption-font-color: $table-head-font-color;
|
1301
|
+
// $table-caption-font-size: rem-calc(16);
|
1302
|
+
// $table-caption-font-weight: bold;
|
1303
|
+
|
1288
1304
|
// These control the row padding and font styles
|
1289
1305
|
// $table-row-padding: rem-calc(9 10);
|
1290
1306
|
// $table-row-font-size: rem-calc(14);
|
@@ -1296,13 +1312,14 @@ $include-html-global-classes: $include-html-classes;
|
|
1296
1312
|
// $table-display: table-cell;
|
1297
1313
|
// $table-margin-bottom: rem-calc(20);
|
1298
1314
|
|
1315
|
+
|
1299
1316
|
// 31. Tabs
|
1300
1317
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1301
1318
|
|
1302
1319
|
// $include-html-tabs-classes: $include-html-classes;
|
1303
1320
|
|
1304
1321
|
// $tabs-navigation-padding: rem-calc(16);
|
1305
|
-
// $tabs-navigation-bg-color: $silver
|
1322
|
+
// $tabs-navigation-bg-color: $silver;
|
1306
1323
|
// $tabs-navigation-active-bg-color: $white;
|
1307
1324
|
// $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
|
1308
1325
|
// $tabs-navigation-font-color: $jet;
|
@@ -1375,16 +1392,6 @@ $include-html-global-classes: $include-html-classes;
|
|
1375
1392
|
// $topbar-title-weight: $font-weight-normal;
|
1376
1393
|
// $topbar-title-font-size: rem-calc(17);
|
1377
1394
|
|
1378
|
-
// Style the top bar dropdown elements
|
1379
|
-
// $topbar-dropdown-bg: $oil;
|
1380
|
-
// $topbar-dropdown-link-color: $white;
|
1381
|
-
// $topbar-dropdown-link-bg: $oil;
|
1382
|
-
// $topbar-dropdown-link-bg-hover: $oil;
|
1383
|
-
// $topbar-dropdown-link-weight: $font-weight-normal;
|
1384
|
-
// $topbar-dropdown-toggle-size: 5px;
|
1385
|
-
// $topbar-dropdown-toggle-color: $white;
|
1386
|
-
// $topbar-dropdown-toggle-alpha: 0.4;
|
1387
|
-
|
1388
1395
|
// Set the link colors and styles for top-level nav
|
1389
1396
|
// $topbar-link-color: $white;
|
1390
1397
|
// $topbar-link-color-hover: $white;
|
@@ -1394,19 +1401,29 @@ $include-html-global-classes: $include-html-classes;
|
|
1394
1401
|
// $topbar-link-font-size: rem-calc(13);
|
1395
1402
|
// $topbar-link-hover-lightness: -10%; // Darken by 10%
|
1396
1403
|
// $topbar-link-bg: $topbar-bg;
|
1397
|
-
// $topbar-link-bg-color-hover: $charcoal;
|
1398
1404
|
// $topbar-link-bg-hover: $oil;
|
1405
|
+
// $topbar-link-bg-color-hover: $charcoal;
|
1399
1406
|
// $topbar-link-bg-active: $primary-color;
|
1400
1407
|
// $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
|
1401
1408
|
// $topbar-link-font-family: $body-font-family;
|
1402
1409
|
// $topbar-link-text-transform: none;
|
1403
1410
|
// $topbar-link-padding: ($topbar-height / 3);
|
1404
|
-
// $topbar-back-link-size:
|
1405
|
-
// $topbar-link-dropdown-padding:
|
1406
|
-
|
1411
|
+
// $topbar-back-link-size: rem-calc(18);
|
1412
|
+
// $topbar-link-dropdown-padding: rem-calc(20);
|
1407
1413
|
// $topbar-button-font-size: 0.75rem;
|
1408
1414
|
// $topbar-button-top: 7px;
|
1409
1415
|
|
1416
|
+
// Style the top bar dropdown elements
|
1417
|
+
// $topbar-dropdown-bg: $oil;
|
1418
|
+
// $topbar-dropdown-link-color: $white;
|
1419
|
+
// $topbar-dropdown-link-color-hover: $topbar-link-color-hover;
|
1420
|
+
// $topbar-dropdown-link-bg: $oil;
|
1421
|
+
// $topbar-dropdown-link-bg-hover: $oil;
|
1422
|
+
// $topbar-dropdown-link-weight: $font-weight-normal;
|
1423
|
+
// $topbar-dropdown-toggle-size: 5px;
|
1424
|
+
// $topbar-dropdown-toggle-color: $white;
|
1425
|
+
// $topbar-dropdown-toggle-alpha: 0.4;
|
1426
|
+
|
1410
1427
|
// $topbar-dropdown-label-color: $monsoon;
|
1411
1428
|
// $topbar-dropdown-label-text-transform: uppercase;
|
1412
1429
|
// $topbar-dropdown-label-font-weight: $font-weight-bold;
|
@@ -1421,6 +1438,7 @@ $include-html-global-classes: $include-html-classes;
|
|
1421
1438
|
// $topbar-menu-icon-color: $white;
|
1422
1439
|
// $topbar-menu-link-color-toggled: $jumbo;
|
1423
1440
|
// $topbar-menu-icon-color-toggled: $jumbo;
|
1441
|
+
// $topbar-menu-icon-position: $opposite-direction; // Change to $default-float for a left menu icon
|
1424
1442
|
|
1425
1443
|
// Transitions and breakpoint styles
|
1426
1444
|
// $topbar-transition-speed: 300ms;
|
@@ -1428,18 +1446,22 @@ $include-html-global-classes: $include-html-classes;
|
|
1428
1446
|
// $topbar-breakpoint: #{lower-bound($medium-range)}; // Change to 9999px for always mobile layout
|
1429
1447
|
// $topbar-media-query: $medium-up;
|
1430
1448
|
|
1449
|
+
// Top-bar input styles
|
1450
|
+
// $topbar-input-height: rem-calc(28);
|
1451
|
+
|
1431
1452
|
// Divider Styles
|
1432
|
-
// $topbar-divider-border-bottom: solid 1px
|
1453
|
+
// $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
|
1433
1454
|
// $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
|
1434
1455
|
|
1435
1456
|
// Sticky Class
|
1436
1457
|
// $topbar-sticky-class: ".sticky";
|
1437
1458
|
// $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
|
1459
|
+
// $topbar-dropdown-arrows: true; //Set false to remove the \00bb >> text from dropdown subnavigation li//
|
1438
1460
|
|
1439
1461
|
// 36. Visibility Classes
|
1440
1462
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
1441
1463
|
|
1442
1464
|
// $include-html-visibility-classes: $include-html-classes;
|
1465
|
+
// $include-accessibility-classes: true;
|
1443
1466
|
// $include-table-visibility-classes: true;
|
1444
1467
|
// $include-legacy-visibility-classes: true;
|
1445
|
-
// $include-accessibility-classes: true;
|