blaze-css-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +914 -0
  3. data/app/assets/stylesheets/animations.alerts.scss +73 -0
  4. data/app/assets/stylesheets/animations.bubbles.scss +31 -0
  5. data/app/assets/stylesheets/animations.calendars.scss +31 -0
  6. data/app/assets/stylesheets/animations.drawers.scss +13 -0
  7. data/app/assets/stylesheets/animations.hints.scss +5 -0
  8. data/app/assets/stylesheets/animations.menus.scss +31 -0
  9. data/app/assets/stylesheets/animations.modals.scss +31 -0
  10. data/app/assets/stylesheets/animations.navs.scss +19 -0
  11. data/app/assets/stylesheets/animations.overlays.scss +15 -0
  12. data/app/assets/stylesheets/animations.ranges.scss +13 -0
  13. data/app/assets/stylesheets/animations.tabs.scss +19 -0
  14. data/app/assets/stylesheets/animations.toasts.scss +33 -0
  15. data/app/assets/stylesheets/animations.toggles.scss +31 -0
  16. data/app/assets/stylesheets/animations.trees.scss +47 -0
  17. data/app/assets/stylesheets/blaze.animations.scss +14 -0
  18. data/app/assets/stylesheets/blaze.scss +35 -0
  19. data/app/assets/stylesheets/components.addresses.scss +9 -0
  20. data/app/assets/stylesheets/components.alerts.scss +21 -0
  21. data/app/assets/stylesheets/components.badges.scss +25 -0
  22. data/app/assets/stylesheets/components.bubbles.scss +22 -0
  23. data/app/assets/stylesheets/components.buttons.scss +80 -0
  24. data/app/assets/stylesheets/components.calendars.scss +50 -0
  25. data/app/assets/stylesheets/components.cards.scss +92 -0
  26. data/app/assets/stylesheets/components.drawers.scss +81 -0
  27. data/app/assets/stylesheets/components.headings.scss +33 -0
  28. data/app/assets/stylesheets/components.hints.scss +23 -0
  29. data/app/assets/stylesheets/components.inputs.scss +283 -0
  30. data/app/assets/stylesheets/components.links.scss +10 -0
  31. data/app/assets/stylesheets/components.lists.scss +57 -0
  32. data/app/assets/stylesheets/components.menus.scss +51 -0
  33. data/app/assets/stylesheets/components.modals.scss +53 -0
  34. data/app/assets/stylesheets/components.navs.scss +104 -0
  35. data/app/assets/stylesheets/components.overlays.scss +17 -0
  36. data/app/assets/stylesheets/components.pagination.scss +33 -0
  37. data/app/assets/stylesheets/components.ranges.scss +86 -0
  38. data/app/assets/stylesheets/components.tables.scss +53 -0
  39. data/app/assets/stylesheets/components.tabs.scss +45 -0
  40. data/app/assets/stylesheets/components.tags.scss +25 -0
  41. data/app/assets/stylesheets/components.toasts.scss +41 -0
  42. data/app/assets/stylesheets/components.toggles.scss +49 -0
  43. data/app/assets/stylesheets/components.tooltips.scss +21 -0
  44. data/app/assets/stylesheets/components.trees.scss +21 -0
  45. data/app/assets/stylesheets/components.typography.scss +73 -0
  46. data/app/assets/stylesheets/generic.global.scss +3 -0
  47. data/app/assets/stylesheets/mixins/_animations.alerts.scss +54 -0
  48. data/app/assets/stylesheets/mixins/_animations.bubbles.scss +54 -0
  49. data/app/assets/stylesheets/mixins/_animations.calendars.scss +46 -0
  50. data/app/assets/stylesheets/mixins/_animations.drawers.scss +15 -0
  51. data/app/assets/stylesheets/mixins/_animations.hints.scss +5 -0
  52. data/app/assets/stylesheets/mixins/_animations.menus.scss +46 -0
  53. data/app/assets/stylesheets/mixins/_animations.modals.scss +54 -0
  54. data/app/assets/stylesheets/mixins/_animations.navs.scss +15 -0
  55. data/app/assets/stylesheets/mixins/_animations.overlays.scss +28 -0
  56. data/app/assets/stylesheets/mixins/_animations.ranges.scss +43 -0
  57. data/app/assets/stylesheets/mixins/_animations.tabs.scss +15 -0
  58. data/app/assets/stylesheets/mixins/_animations.toasts.scss +45 -0
  59. data/app/assets/stylesheets/mixins/_animations.toggles.scss +29 -0
  60. data/app/assets/stylesheets/mixins/_animations.trees.scss +42 -0
  61. data/app/assets/stylesheets/mixins/_components.addresses.scss +12 -0
  62. data/app/assets/stylesheets/mixins/_components.alerts.scss +30 -0
  63. data/app/assets/stylesheets/mixins/_components.badges.scss +33 -0
  64. data/app/assets/stylesheets/mixins/_components.bubbles.scss +59 -0
  65. data/app/assets/stylesheets/mixins/_components.buttons.scss +197 -0
  66. data/app/assets/stylesheets/mixins/_components.calendars.scss +81 -0
  67. data/app/assets/stylesheets/mixins/_components.cards.scss +122 -0
  68. data/app/assets/stylesheets/mixins/_components.drawers.scss +116 -0
  69. data/app/assets/stylesheets/mixins/_components.headings.scss +39 -0
  70. data/app/assets/stylesheets/mixins/_components.hints.scss +25 -0
  71. data/app/assets/stylesheets/mixins/_components.inputs.scss +283 -0
  72. data/app/assets/stylesheets/mixins/_components.links.scss +44 -0
  73. data/app/assets/stylesheets/mixins/_components.lists.scss +53 -0
  74. data/app/assets/stylesheets/mixins/_components.menus.scss +63 -0
  75. data/app/assets/stylesheets/mixins/_components.modals.scss +63 -0
  76. data/app/assets/stylesheets/mixins/_components.navs.scss +165 -0
  77. data/app/assets/stylesheets/mixins/_components.overlays.scss +30 -0
  78. data/app/assets/stylesheets/mixins/_components.pagination.scss +45 -0
  79. data/app/assets/stylesheets/mixins/_components.ranges.scss +90 -0
  80. data/app/assets/stylesheets/mixins/_components.tables.scss +85 -0
  81. data/app/assets/stylesheets/mixins/_components.tabs.scss +53 -0
  82. data/app/assets/stylesheets/mixins/_components.tags.scss +41 -0
  83. data/app/assets/stylesheets/mixins/_components.toasts.scss +62 -0
  84. data/app/assets/stylesheets/mixins/_components.toggles.scss +75 -0
  85. data/app/assets/stylesheets/mixins/_components.tooltips.scss +89 -0
  86. data/app/assets/stylesheets/mixins/_components.trees.scss +39 -0
  87. data/app/assets/stylesheets/mixins/_components.typography.scss +101 -0
  88. data/app/assets/stylesheets/mixins/_generic.global.scss +15 -0
  89. data/app/assets/stylesheets/mixins/_objects.containers.scss +13 -0
  90. data/app/assets/stylesheets/mixins/_objects.grid.scss +104 -0
  91. data/app/assets/stylesheets/mixins/_objects.images.scss +5 -0
  92. data/app/assets/stylesheets/mixins/_objects.panels.scss +23 -0
  93. data/app/assets/stylesheets/mixins/_settings.animations.scss +5 -0
  94. data/app/assets/stylesheets/mixins/_settings.global.scss +876 -0
  95. data/app/assets/stylesheets/mixins/_tools.mediaqueries.scss +73 -0
  96. data/app/assets/stylesheets/mixins/_utilities.alignment.scss +24 -0
  97. data/app/assets/stylesheets/mixins/_utilities.boxing.scss +125 -0
  98. data/app/assets/stylesheets/objects.containers.scss +6 -0
  99. data/app/assets/stylesheets/objects.grid.responsive.scss +124 -0
  100. data/app/assets/stylesheets/objects.grid.scss +62 -0
  101. data/app/assets/stylesheets/objects.images.scss +5 -0
  102. data/app/assets/stylesheets/objects.panels.scss +17 -0
  103. data/app/assets/stylesheets/themes/blaze.example.scss +7 -0
  104. data/app/assets/stylesheets/utilities.alignment.scss +22 -0
  105. data/app/assets/stylesheets/utilities.boxing.scss +101 -0
  106. data/lib/blaze-css-rails.rb +2 -0
  107. data/lib/blaze-css-rails/engine.rb +6 -0
  108. data/lib/blaze-css-rails/version.rb +6 -0
  109. metadata +201 -0
@@ -0,0 +1,39 @@
1
+ @import "settings.global";
2
+
3
+ @mixin tree {
4
+ display: block;
5
+ padding: $tree-padding;
6
+ margin: $tree-margin;
7
+ list-style: none;
8
+ }
9
+
10
+ @mixin tree--nested {
11
+ padding: $tree-nested-padding;
12
+ }
13
+
14
+ @mixin tree__item {
15
+ padding: $tree-item-padding;
16
+
17
+ &:before {
18
+ content: "–";
19
+ display: inline-block;
20
+ padding: $tree-item-indicator-padding;
21
+ color: $tree-item-indicator-color;
22
+ transform-origin: 30% 50%;
23
+ }
24
+ }
25
+
26
+ @mixin tree__item--expandable {
27
+ &:before {
28
+ color: $tree-item-expandable-indicator-color;
29
+ content: "\276F";
30
+ }
31
+ }
32
+
33
+ @mixin tree__item--expanded {
34
+ &:before {
35
+ color: $tree-item-expanded-indicator-color;
36
+ content: "\276F";
37
+ transform: rotate(90deg);
38
+ }
39
+ }
@@ -0,0 +1,101 @@
1
+ @import "settings.global";
2
+
3
+ @mixin text {
4
+ font-family: $text-font-family;
5
+ font-weight: $text-font-weight;
6
+ color: $text-color;
7
+ line-height: $text-line-height;
8
+ -moz-osx-font-smoothing: grayscale;
9
+ -webkit-font-smoothing: antialiased;
10
+ text-rendering: optimizeLegibility;
11
+ }
12
+
13
+ @mixin text--mono {
14
+ font-family: $text-font-family-mono;
15
+ }
16
+
17
+ @mixin text--highlight($color: $highlight-color, $background-color: $highlight-background-color) {
18
+ background-color: $background-color;
19
+ color: $color;
20
+ padding: $spacing-xsmall $spacing-xsmall $spacing-tiny;
21
+ margin: 0 -$spacing-tiny;
22
+ }
23
+
24
+ @mixin text--quiet {
25
+ color: $color-quiet;
26
+ }
27
+
28
+ @mixin text--loud {
29
+ font-weight: $text-font-weight-heavy;
30
+ }
31
+
32
+ @mixin text--help {
33
+ cursor: help;
34
+ border-bottom: $border-width dashed $color-dark-grey;
35
+ }
36
+
37
+ @mixin paragraph {
38
+ display: block;
39
+ padding: $spacing-small 0;
40
+ margin: 0;
41
+ }
42
+
43
+ @mixin code ($color: $code-color, $background-color: $code-background-color) {
44
+ @include text--highlight($color, $background-color);
45
+ display: inline;
46
+ font-family: $text-font-family-mono;
47
+ font-weight: $text-font-weight;
48
+ }
49
+
50
+ @mixin code--multiline {
51
+ display: block;
52
+ white-space: pre;
53
+ padding: $spacing-small $spacing-medium;
54
+ overflow-x: auto;
55
+ border-radius: $border-radius;
56
+ }
57
+
58
+ @mixin keyboard-keys {
59
+ @include code ($keyboard-color, $keyboard-background-color);
60
+ border-radius: $keyboard-border-radius;
61
+ border-bottom: $keyboard-border;
62
+ }
63
+
64
+ @mixin quotation--color($border-color: $quotation-border-color) {
65
+ border-left: $quotation-border-width $quotation-border-style $border-color;
66
+ }
67
+
68
+ @mixin quotation {
69
+ display: block;
70
+ margin: $quotation-margin;
71
+ padding: $quotation-padding;
72
+ font-family: $quotation-font-family;
73
+ @include quotation--color;
74
+ }
75
+
76
+ @mixin quotation--primary {
77
+ @include quotation--color($quotation-primary-border-color);
78
+ }
79
+
80
+ @mixin quotation--secondary {
81
+ @include quotation--color($quotation-secondary-border-color);
82
+ }
83
+
84
+ @mixin quotation--success {
85
+ @include quotation--color($quotation-success-border-color);
86
+ }
87
+
88
+ @mixin quotation--error {
89
+ @include quotation--color($quotation-error-border-color);
90
+ }
91
+
92
+ @mixin quotation__body {
93
+ @include paragraph;
94
+ font-size: $quotation-font-size;
95
+ }
96
+
97
+ @mixin quotation__footer {
98
+ @include paragraph;
99
+ color: $quotation-footer-color;
100
+ font-style: $quotation-footer-font-style;
101
+ }
@@ -0,0 +1,15 @@
1
+ @import "settings.global";
2
+
3
+ @mixin ground-zero {
4
+ html {
5
+ box-sizing: border-box;
6
+ }
7
+
8
+ *, *:before, *:after {
9
+ box-sizing: inherit;
10
+ }
11
+
12
+ body {
13
+ margin: 0;
14
+ }
15
+ }
@@ -0,0 +1,13 @@
1
+ @import "settings.global";
2
+
3
+ @mixin container {
4
+ margin: auto;
5
+ }
6
+
7
+ @mixin container-sizes() {
8
+ @each $size, $width in $screen-limits {
9
+ &--#{$size} {
10
+ max-width: $width;
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,104 @@
1
+ @import "settings.global";
2
+
3
+ @mixin grid {
4
+ display: flex;
5
+ }
6
+
7
+ @mixin grid--wrap {
8
+ flex-wrap: wrap;
9
+ }
10
+
11
+ @mixin grid--top {
12
+ align-items: flex-start;
13
+ }
14
+
15
+ @mixin grid--center {
16
+ align-items: center;
17
+ }
18
+
19
+ @mixin grid--bottom {
20
+ align-items: flex-end;
21
+ }
22
+
23
+ @mixin grid__cell {
24
+ flex: 1;
25
+ padding-left: $grid-gutter;
26
+ padding-right: $grid-gutter;
27
+ }
28
+
29
+ @mixin grid__cell--no-gutter {
30
+ padding-left: 0;
31
+ padding-right: 0;
32
+ }
33
+
34
+ @mixin grid__cell--top {
35
+ align-self: flex-start;
36
+ }
37
+
38
+ @mixin grid__cell--center {
39
+ align-self: center;
40
+ }
41
+
42
+ @mixin grid__cell--bottom {
43
+ align-self: flex-end;
44
+ }
45
+
46
+ @mixin grid__cell--width-fixed {
47
+ flex: 0 1 auto;
48
+ }
49
+
50
+ @mixin grid__cell--fit {
51
+ flex: 1;
52
+ }
53
+
54
+ @mixin grid--full {
55
+ flex-wrap: wrap;
56
+ }
57
+
58
+ @mixin grid__cell--full {
59
+ flex: 0 0 100%;
60
+ max-width: 100%;
61
+ margin-left: 0;
62
+ }
63
+
64
+ @mixin grid__cell--hidden {
65
+ display: none;
66
+ }
67
+
68
+ @mixin grid__cell--visible {
69
+ display: initial;
70
+ }
71
+
72
+ @mixin grid__cell--width($width) {
73
+ flex: 0 0 $width;
74
+ max-width: $width;
75
+ }
76
+
77
+ @mixin grid__cells {
78
+ @each $width, $fraction in $grid-widths {
79
+ &--width-#{$width} {
80
+ @include grid__cell--width($fraction * 100%);
81
+ }
82
+ &--offset-#{$width} {
83
+ margin-left: $fraction * 100%;
84
+ }
85
+ }
86
+ }
87
+
88
+ @mixin grid__responsive-cells($screen-width) {
89
+ @each $width, $fraction in $grid-widths {
90
+ &--hidden\@#{$screen-width} {
91
+ display: none;
92
+ }
93
+ &--visible\@#{$screen-width} {
94
+ display: initial;
95
+ }
96
+ &--width-#{$width}\@#{$screen-width} {
97
+ flex: 0 0 $fraction * 100%;
98
+ max-width: $fraction * 100%;
99
+ }
100
+ &--offset-#{$width}\@#{$screen-width} {
101
+ margin-left: $fraction * 100%;
102
+ }
103
+ }
104
+ }
@@ -0,0 +1,5 @@
1
+ @mixin image {
2
+ display: inline-block;
3
+ max-width: 100%;
4
+ height: auto;
5
+ }
@@ -0,0 +1,23 @@
1
+ @import "settings.global";
2
+
3
+ @mixin panel-container {
4
+ position: relative;
5
+ }
6
+
7
+ @mixin panel {
8
+ top: 0;
9
+ right: 0;
10
+ bottom: 0;
11
+ left: 0;
12
+ overflow: auto;
13
+ -webkit-overflow-scrolling: touch;
14
+ position: absolute;
15
+ }
16
+
17
+ @mixin panel--nav-top {
18
+ top: $panel-nav-top;
19
+ }
20
+
21
+ @mixin panel--nav-bottom {
22
+ bottom: $panel-nav-bottom;
23
+ }
@@ -0,0 +1,5 @@
1
+ // Animations
2
+ $animation-duration-fast: 0.2s !default;
3
+ $animation-duration: 0.5s !default;
4
+ $animation-duration-slow: 0.9s !default;
5
+ $animation-easing: ease !default;
@@ -0,0 +1,876 @@
1
+ //
2
+ /// Screen Sizes
3
+ //
4
+ $screen-limit-xsmall: 20em !default;
5
+ $screen-limit-small: 30em !default;
6
+ $screen-limit-medium: 48em !default;
7
+ $screen-limit-large: 64em !default;
8
+ $screen-limit-xlarge: 78em !default;
9
+ $screen-limit-super: 116em !default;
10
+
11
+ $screen-adjustment: 0.01 !default;
12
+
13
+ $screen-limits: (
14
+ xsmall: $screen-limit-xsmall,
15
+ small: $screen-limit-small,
16
+ medium: $screen-limit-medium,
17
+ large: $screen-limit-large,
18
+ xlarge: $screen-limit-xlarge,
19
+ super: $screen-limit-super
20
+ );
21
+
22
+ //
23
+ // Spacing
24
+ //
25
+ $spacing-tiny: .1em !default;
26
+ $spacing-xsmall: .3em !default;
27
+ $spacing-small: .5em !default;
28
+ $spacing-medium: 1em !default;
29
+ $spacing-large: 1.5em !default;
30
+ $spacing-xlarge: 2em !default;
31
+ $spacing-super: 3em !default;
32
+
33
+ //
34
+ // Grid
35
+ //
36
+ $grid-gutter: 1em !default;
37
+ $grid-widths: (
38
+ 5: 5/100,
39
+ 10: 1/10,
40
+ 15: 15/100,
41
+ 20: 1/5,
42
+ 25: 1/4,
43
+ 30: 3/10,
44
+ 33: 1/3,
45
+ 35: 35/100,
46
+ 40: 2/5,
47
+ 45: 45/100,
48
+ 50: 1/2,
49
+ 55: 55/100,
50
+ 60: 3/5,
51
+ 65: 65/100,
52
+ 66: 2/3,
53
+ 70: 7/10,
54
+ 75: 3/4,
55
+ 80: 4/5,
56
+ 85: 85/100,
57
+ 90: 9/10,
58
+ 95: 95/100,
59
+ 100: 1
60
+ );
61
+
62
+ //
63
+ // Colors
64
+ //
65
+ $color-black: #111111 !default;
66
+ $color-white: #FFFFFF !default;
67
+ $color-beige: #F2F2EA !default;
68
+ $color-red: #EF4F52 !default;
69
+ $color-pink: #EC65C3 !default;
70
+ $color-purple: #AB47BC !default;
71
+ $color-blue: #42A5F5 !default;
72
+ $color-green: #66BB6A !default;
73
+ $color-yellow: #F6ED30 !default;
74
+ $color-orange: #FF7043 !default;
75
+ $color-brown: #8D6E63 !default;
76
+ $color-grey: lighten($color-black, 70) !default;
77
+
78
+ $color-tint: 9 !default;
79
+ $color-tint-dark: $color-tint !default;
80
+ $color-tint-darker: $color-tint * 2 !default;
81
+ $color-tint-light: $color-tint !default;
82
+ $color-tint-lighter: $color-tint * 2 !default;
83
+
84
+ $color-dark-grey: darken($color-grey, $color-tint-dark);
85
+ $color-dark-red: darken($color-red, $color-tint-dark);
86
+ $color-dark-pink: darken($color-pink, $color-tint-dark);
87
+ $color-dark-purple: darken($color-purple, $color-tint-dark);
88
+ $color-dark-blue: darken($color-blue, $color-tint-dark);
89
+ $color-dark-green: darken($color-green, $color-tint-dark);
90
+ $color-dark-yellow: darken($color-yellow, $color-tint-dark);
91
+ $color-dark-orange: darken($color-orange, $color-tint-dark);
92
+ $color-dark-brown: darken($color-brown, $color-tint-dark);
93
+
94
+ $color-darker-grey: darken($color-grey, $color-tint-darker);
95
+ $color-darker-red: darken($color-red, $color-tint-darker);
96
+ $color-darker-pink: darken($color-pink, $color-tint-darker);
97
+ $color-darker-purple: darken($color-purple, $color-tint-darker);
98
+ $color-darker-blue: darken($color-blue, $color-tint-darker);
99
+ $color-darker-green: darken($color-green, $color-tint-darker);
100
+ $color-darker-yellow: darken($color-yellow, $color-tint-darker);
101
+ $color-darker-orange: darken($color-orange, $color-tint-darker);
102
+ $color-darker-brown: darken($color-brown, $color-tint-darker);
103
+
104
+ $color-light-grey: lighten($color-grey, $color-tint-light);
105
+ $color-light-red: lighten($color-red, $color-tint-light);
106
+ $color-light-pink: lighten($color-pink, $color-tint-light);
107
+ $color-light-purple: lighten($color-purple, $color-tint-light);
108
+ $color-light-blue: lighten($color-blue, $color-tint-light);
109
+ $color-light-green: lighten($color-green, $color-tint-light);
110
+ $color-light-yellow: lighten($color-yellow, $color-tint-light);
111
+ $color-light-orange: lighten($color-orange, $color-tint-light);
112
+ $color-light-brown: lighten($color-brown, $color-tint-light);
113
+
114
+ $color-lighter-grey: lighten($color-grey, $color-tint-lighter);
115
+ $color-lighter-red: lighten($color-red, $color-tint-lighter);
116
+ $color-lighter-pink: lighten($color-pink, $color-tint-lighter);
117
+ $color-lighter-purple: lighten($color-purple, $color-tint-lighter);
118
+ $color-lighter-blue: lighten($color-blue, $color-tint-lighter);
119
+ $color-lighter-green: lighten($color-green, $color-tint-lighter);
120
+ $color-lighter-yellow: lighten($color-yellow, $color-tint-lighter);
121
+ $color-lighter-orange: lighten($color-orange, $color-tint-lighter);
122
+ $color-lighter-brown: lighten($color-brown, $color-tint-lighter);
123
+
124
+ $color-default: $color-dark-grey !default;
125
+ $color-primary: $color-blue !default;
126
+ $color-secondary: $color-orange !default;
127
+ $color-success: $color-green !default;
128
+ $color-error: $color-red !default;
129
+
130
+ $color-dark-primary: darken($color-primary, $color-tint-dark);
131
+ $color-darker-primary: darken($color-dark-primary, $color-tint-darker);
132
+ $color-light-primary: lighten($color-primary, $color-tint-light);
133
+ $color-lighter-primary: lighten($color-light-primary, $color-tint-lighter);
134
+
135
+ $color-dark-secondary: darken($color-secondary, $color-tint-dark);
136
+ $color-darker-secondary: darken($color-dark-secondary, $color-tint-darker);
137
+ $color-light-secondary: lighten($color-secondary, $color-tint-light);
138
+ $color-lighter-secondary: lighten($color-light-secondary, $color-tint-lighter);
139
+
140
+ $color-dark-success: darken($color-success, $color-tint-dark);
141
+ $color-darker-success: darken($color-dark-success, $color-tint-darker);
142
+ $color-light-success: lighten($color-success, $color-tint-light);
143
+ $color-lighter-success: lighten($color-light-success, $color-tint-lighter);
144
+
145
+ $color-dark-error: darken($color-error, $color-tint-dark);
146
+ $color-darker-error: darken($color-dark-error, $color-tint-darker);
147
+ $color-light-error: lighten($color-error, $color-tint-light);
148
+ $color-lighter-error: lighten($color-light-error, $color-tint-lighter);
149
+
150
+ $color-disabled: $color-dark-grey !default;
151
+ $color-quiet: $color-dark-grey !default;
152
+
153
+ //
154
+ // Borders
155
+ //
156
+ $border-width: 1px !default;
157
+ $border-style: solid !default;
158
+ $border-color: $color-dark-grey !default;
159
+
160
+ //
161
+ // Border radius
162
+ //
163
+ $border-radius: 4px !default;
164
+ $border-radius-rounded: 30em !default;
165
+
166
+ //
167
+ // Box shadows
168
+ //
169
+ $box-shadow: 0 0 1px transparentize($color-black, .7) !default;
170
+ $box-shadow-high: 0 0 1px transparentize($color-black, .7), 0 5px 10px -3px transparentize($color-black, .8) !default;
171
+ $box-shadow-higher: 0 0 1px transparentize($color-black, .7), 0 10px 25px -4px transparentize($color-black, .8) !default;
172
+ $box-shadow-highest: 0 0 1px transparentize($color-black, .7), 0 20px 55px -8px transparentize($color-black, .8) !default;
173
+
174
+ $box-shadow-solid: 0 0 1px transparentize($color-black, .3) !default;
175
+ $box-shadow-solid-high: 0 0 1px transparentize($color-black, .3), 0 5px 10px -3px transparentize($color-black, .2) !default;
176
+ $box-shadow-solid-higher: 0 0 1px transparentize($color-black, .3), 0 10px 25px -4px transparentize($color-black, .2) !default;
177
+ $box-shadow-solid-highest: 0 0 1px transparentize($color-black, .3), 0 20px 55px -8px transparentize($color-black, .2) !default;
178
+
179
+ //
180
+ // Focus styles
181
+ //
182
+ $border-color-focus: $color-blue !default;
183
+ $box-shadow-focus: inset 0 0 0 2px lighten($border-color-focus, $color-tint) !default;
184
+
185
+ //
186
+ // Z Indexes
187
+ //
188
+ $z-over-content: 100 !default;
189
+ $z-over-control: 200 !default;
190
+ $z-over-page: 300 !default;
191
+ $z-over-screen: 400 !default;
192
+ $z-over-everything: 500 !default;
193
+
194
+ //
195
+ // Typography
196
+ //
197
+ $text-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !default;
198
+ $text-font-family-serif: Georgia, Cambria, "Times New Roman", Times, serif !default;
199
+ $text-font-family-mono: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace !default;
200
+ $text-font-size-super: 3em !default;
201
+ $text-font-size-xlarge: 2em !default;
202
+ $text-font-size-large: 1.5em !default;
203
+ $text-font-size-medium: 1em !default;
204
+ $text-font-size-small: 0.9em !default;
205
+ $text-font-size-xsmall: 0.7em !default;
206
+ $text-font-weight: normal !default;
207
+ $text-font-weight-heavy: bold !default;
208
+ $text-line-height: 1.55 !default;
209
+ $text-color: $color-black !default;
210
+
211
+ $highlight-padding: $spacing-xsmall $spacing-xsmall $spacing-tiny !default;
212
+ $highlight-margin: 0 -$spacing-tiny !default;
213
+ $highlight-color: $color-black !default;
214
+ $highlight-background-color: $color-yellow !default;
215
+
216
+ $help-border: $border-width dashed $color-dark-grey !default;
217
+
218
+ $paragraph-padding: $spacing-small 0 !default;
219
+ $paragraph-margin: 0 !default;
220
+ $paragraph-font-style: normal !default;
221
+
222
+ $code-color: $text-color !default;
223
+ $code-background-color: $color-lighter-grey !default;
224
+ $code-font-family: $text-font-family-mono !default;
225
+ $code-font-weight: $text-font-weight !default;
226
+
227
+ $code-multiline-padding: $spacing-small $spacing-medium !default;
228
+ $code-multiline-border-radius: $border-radius !default;
229
+
230
+ $keyboard-color: $color-white !default;
231
+ $keyboard-background-color: $color-primary !default;
232
+
233
+ $keyboard-border-width: 2px !default;
234
+ $keyboard-border-style: $border-style !default;
235
+ $keyboard-border-color: $color-darker-primary !default;
236
+ $keyboard-border: $keyboard-border-width $keyboard-border-style $keyboard-border-color !default;
237
+ $keyboard-border-radius: $border-radius !default;
238
+
239
+ $quotation-padding: $spacing-medium $spacing-large !default;
240
+ $quotation-margin: 0 !default;
241
+ $quotation-color: $color-quiet !default;
242
+ $quotation-font-size: $text-font-size-large !default;
243
+ $quotation-font-family: $text-font-family-serif !default;
244
+ $quotation-border-width: 5px !default;
245
+ $quotation-border-style: $border-style !default;
246
+ $quotation-border-color: $color-default !default;
247
+ $quotation-primary-border-color: $color-primary !default;
248
+ $quotation-secondary-border-color: $color-secondary !default;
249
+ $quotation-success-border-color: $color-success !default;
250
+ $quotation-error-border-color: $color-error !default;
251
+
252
+ $quotation-footer-color: $color-quiet !default;
253
+ $quotation-footer-font-style: italic !default;
254
+
255
+ //
256
+ // Addresses
257
+ //
258
+ $address-font-style: normal !default;
259
+ $address-heading-font-weight: $text-font-weight-heavy !default;
260
+
261
+ //
262
+ // Alerts
263
+ //
264
+ $alert-margin: 0 0 $spacing-medium 0 !default;
265
+ $alert-padding: $spacing-medium $spacing-super $spacing-medium $spacing-medium !default;
266
+ $alert-background-color: $color-default !default;
267
+ $alert-primary-background-color: $color-primary !default;
268
+ $alert-secondary-background-color: $color-secondary !default;
269
+ $alert-error-background-color: $color-error !default;
270
+ $alert-success-background-color: $color-success !default;
271
+ $alert-color: $color-white !default;
272
+ $alert-border-radius: $border-radius !default;
273
+
274
+ //
275
+ // Badges
276
+ //
277
+ $badge-padding: $spacing-xsmall $spacing-small !default;
278
+ $badge-margin: 0 !default;
279
+ $badge-background-color: $color-default !default;
280
+ $badge-color: $color-white !default;
281
+ $badge-primary-background-color: $color-primary !default;
282
+ $badge-primary-color: $color-white !default;
283
+ $badge-secondary-background-color: $color-secondary !default;
284
+ $badge-secondary-color: $color-white !default;
285
+ $badge-success-background-color: $color-success !default;
286
+ $badge-success-color: $color-white !default;
287
+ $badge-error-background-color: $color-error !default;
288
+ $badge-error-color: $color-white !default;
289
+ $badge-font-size: 0.8em !default;
290
+ $badge-font-weight: $text-font-weight-heavy !default;
291
+ $badge-border-radius: $border-radius !default;
292
+ $badge-border-radius-rounded: $border-radius-rounded !default;
293
+
294
+ //
295
+ // Bubbles
296
+ //
297
+ $bubble-padding: $spacing-medium !default;
298
+ $bubble-background-color: $color-black !default;
299
+ $bubble-color: $color-white !default;
300
+ $bubble-text-align: center !default;
301
+ $bubble-border-radius: $border-radius !default;
302
+ $bubble-arrow-width: 10px !default;
303
+
304
+ //
305
+ // Buttons
306
+ //
307
+ $button-padding: $spacing-small !default;
308
+ $button-margin: 0 !default;
309
+
310
+ $button-color: $color-white !default;
311
+ $button-background-color: $color-default !default;
312
+ $button-primary-color: $color-white !default;
313
+ $button-primary-background-color: $color-primary !default;
314
+ $button-secondary-color: $color-white !default;
315
+ $button-secondary-background-color: $color-secondary !default;
316
+ $button-success-color: $color-white !default;
317
+ $button-success-background-color: $color-success !default;
318
+ $button-error-color: $color-white !default;
319
+ $button-error-background-color: $color-error !default;
320
+
321
+ $button-disabled-color: $color-disabled !default;
322
+ $button-disabled-background-color: $color-lighter-grey !default;
323
+ $button-disabled-border-color: $color-default !default;
324
+ $button-disabled-font-style: italic !default;
325
+
326
+ $button-font-family: inherit !default;
327
+ $button-font-size: 1em !default;
328
+ $button-line-height: normal !default;
329
+ $button-text-align: center !default;
330
+ $button-text-transform: uppercase !default;
331
+ $button-white-space: nowrap !default;
332
+
333
+ $button-border-width: $border-width !default;
334
+ $button-border-style: $border-style !default;
335
+ $button-border-color: transparent !default;
336
+ $button-border: $button-border-width $button-border-style $button-border-color !default;
337
+ $button-border-radius: $border-radius !default;
338
+
339
+ $button-focus-border-color: $border-color-focus !default;
340
+ $button-focus-box-shadow: $box-shadow-focus !default;
341
+
342
+ $button-ghost-color: $border-color !default;
343
+ $button-ghost-hover-color: $color-white !default;
344
+ $button-ghost-primary-color: $color-primary !default;
345
+ $button-ghost-primary-hover-color: $color-white !default;
346
+ $button-ghost-secondary-color: $color-secondary !default;
347
+ $button-ghost-secondary-hover-color: $color-white !default;
348
+ $button-ghost-success-color: $color-success !default;
349
+ $button-ghost-success-hover-color: $color-white !default;
350
+ $button-ghost-error-color: $color-error !default;
351
+ $button-ghost-error-hover-color: $color-white !default;
352
+ $button-ghost-border-width: $button-border-width !default;
353
+ $button-ghost-border-style: $button-border-style !default;
354
+
355
+ $button-rounded-border-radius: $border-radius-rounded !default;
356
+
357
+ $button-close-font-weight: $text-font-weight-heavy !default;
358
+ $button-close-font-size: 1.4em !default;
359
+
360
+ $button-icon-left-padding: $spacing-small !default;
361
+ $button-icon-right-padding: $spacing-small !default;
362
+
363
+ $button-super-font-size: $text-font-size-super !default;
364
+ $button-xlarge-font-size: $text-font-size-xlarge !default;
365
+ $button-large-font-size: $text-font-size-large !default;
366
+ $button-medium-font-size: $text-font-size-medium !default;
367
+ $button-small-font-size: $text-font-size-small !default;
368
+ $button-xsmall-font-size: $text-font-size-xsmall !default;
369
+
370
+ //
371
+ // Calendars
372
+ //
373
+ $calendar-padding: $spacing-xsmall !default;
374
+ $calendar-max-width: 400px !default;
375
+ $calendar-background-color: $color-white !default;
376
+ $calendar-color: $color-black !default;
377
+ $calendar-text-align: center !default;
378
+ $calendar-border-width: $border-width !default;
379
+ $calendar-border-style: $border-style !default;
380
+ $calendar-border-color: $border-color !default;
381
+ $calendar-border: $calendar-border-width $calendar-border-style $calendar-border-color !default;
382
+ $calendar-border-radius: $border-radius !default;
383
+
384
+ $calendar-control-padding: $spacing-medium $spacing-small !default;
385
+ $calendar-control-background-color: $color-white !default;
386
+ $calendar-control-color: $color-default !default;
387
+ $calendar-control-date-in-month-color: $color-black !default;
388
+ $calendar-control-font-size: $text-font-size-medium !default;
389
+ $calendar-control-border-width: $border-width !default;
390
+ $calendar-control-border-style: $border-style !default;
391
+ $calendar-control-border-color: $border-color !default;
392
+ $calendar-control-border: $calendar-control-border-width $calendar-control-border-style $calendar-control-border-color !default;
393
+ $calendar-control-border-hover: $calendar-control-border !default;
394
+ $calendar-control-border-radius: $border-radius !default;
395
+
396
+ $calendar-control-selected-background-color: $color-primary !default;
397
+ $calendar-control-selected-color: $color-white !default;
398
+ $calendar-control-selected-border-color: $color-primary !default;
399
+
400
+ $calendar-header-padding: $spacing-small 0 !default;
401
+
402
+ $calendar-day-font-weight: $text-font-weight-heavy !default;
403
+ $calendar-day-padding: $spacing-small 0 !default;
404
+
405
+ $calendar-today-border-color: $color-light-grey !default;
406
+
407
+ //
408
+ // Cards
409
+ //
410
+ $card-margin: $spacing-medium 0 0 0 !default;
411
+ $card-box-shadow: $box-shadow !default;
412
+ $card-border-radius: $border-radius !default;
413
+
414
+ $card-divider-background-color: $color-dark-grey !default;
415
+ $card-divider-color: $color-white !default;
416
+
417
+ $card-primary-divider-background-color: $color-primary !default;
418
+ $card-primary-divider-color: $color-white !default;
419
+ $card-primary-divider-border-bottom-color: $color-lighter-primary !default;
420
+
421
+ $card-secondary-divider-background-color: $color-secondary !default;
422
+ $card-secondary-divider-color: $color-white !default;
423
+ $card-secondary-divider-border-bottom-color: $color-lighter-secondary !default;
424
+
425
+ $card-success-divider-background-color: $color-success !default;
426
+ $card-success-divider-color: $color-white !default;
427
+ $card-success-divider-border-bottom-color: $color-lighter-success !default;
428
+
429
+ $card-error-divider-background-color: $color-error !default;
430
+ $card-error-divider-color: $color-white !default;
431
+ $card-error-divider-border-bottom-color: $color-lighter-error !default;
432
+
433
+ $card-divider-font-weight: $text-font-weight-heavy !default;
434
+
435
+ $card-item-border-width: $border-width !default;
436
+ $card-item-border-style: $border-style !default;
437
+ $card-item-border-color: $color-light-grey !default;
438
+ $card-item-border-bottom: $card-item-border-width $card-item-border-style $card-item-border-color !default;
439
+
440
+ $card-item-active-background-color: $card-item-border-color !default;
441
+ $card-item-padding: $spacing-small !default;
442
+
443
+ //
444
+ // Drawers
445
+ //
446
+ $drawer-width-horizontal: 80% !default;
447
+ $drawer-width-vertical: 260px !default;
448
+ $drawer-background-color: $color-white !default;
449
+ $drawer-color: $color-black !default;
450
+ $drawer-border-radius: $border-radius !default;
451
+ $drawer-z-index: $z-over-everything !default;
452
+
453
+ $drawer-heading-padding: $spacing-medium !default;
454
+
455
+ $drawer-body-padding: $spacing-small !default;
456
+
457
+ $drawer-footer-padding: $spacing-small !default;
458
+ $drawer-footer-block-padding: 0 !default;
459
+ $drawer-footer-block-button-border-radius: 0 !default;
460
+
461
+ //
462
+ // Headings
463
+ //
464
+ $heading-margin: 0 !default;
465
+ $heading-padding: $spacing-medium 0 $spacing-small !default;
466
+
467
+ $heading-font-weight: $text-font-weight !default;
468
+ $heading-font-size: $text-font-size-medium !default;
469
+
470
+ $heading-font-size-super: $text-font-size-medium * 4 !default;
471
+ $heading-font-size-xlarge: $text-font-size-medium * 3 !default;
472
+ $heading-font-size-large: $text-font-size-medium * 2 !default;
473
+ $heading-font-size-medium: $text-font-size-medium * 1.5 !default;
474
+ $heading-font-size-small: $text-font-size-medium * 1.25 !default;
475
+ $heading-font-size-xsmall: $text-font-size-medium * 1.05 !default;
476
+
477
+ $heading-subheading-padding: $spacing-small 0 !default;
478
+ $heading-subheading-color: $color-quiet !default;
479
+ $heading-subheading-font-size: $text-font-size-medium * 0.8 !default;
480
+
481
+ //
482
+ // Hints
483
+ //
484
+ $hint-padding: 0 $spacing-small !default;
485
+ $hint-color: $color-darker-grey !default;
486
+ $hint-font-size: $text-font-size-medium !default;
487
+
488
+ $hint-success-color: $color-success !default;
489
+ $hint-error-color: $color-error !default;
490
+
491
+ //
492
+ // Inputs
493
+ //
494
+ $label-padding: $spacing-medium 0 !default;
495
+ $label-field-margin: $spacing-small 0 0 0 !default;
496
+
497
+ $field-padding: $spacing-small !default;
498
+ $field-margin: 0 !default;
499
+
500
+ $field-color: inherit !default;
501
+ $field-background-color: $color-white !default;
502
+
503
+ $field-font-size-super: $text-font-size-super !default;
504
+ $field-font-size-xlarge: $text-font-size-xlarge !default;
505
+ $field-font-size-large: $text-font-size-large !default;
506
+ $field-font-size-medium: $text-font-size-medium !default;
507
+ $field-font-size-small: $text-font-size-small !default;
508
+ $field-font-size-xsmall: $text-font-size-xsmall !default;
509
+ $field-font-weight: $text-font-weight !default;
510
+
511
+ $field-border-width: $border-width !default;
512
+ $field-border-style: $border-style !default;
513
+ $field-border-color: $border-color !default;
514
+ $field-border: $field-border-width $field-border-style $field-border-color !default;
515
+ $field-border-radius: $border-radius !default;
516
+
517
+ $field-focus-border-color: $border-color-focus !default;
518
+ $field-focus-box-shadow: $box-shadow-focus !default;
519
+
520
+ $field-disabled-background-color: $color-lighter-grey !default;
521
+ $field-disabled-border-color: $border-color !default;
522
+ $field-disabled-color: $color-disabled !default;
523
+
524
+ $field-error-border-color: $color-error !default;
525
+ $field-error-color: $color-error !default;
526
+
527
+ $field-success-border-color: $color-success !default;
528
+ $field-success-color: $field-color !default;
529
+
530
+ $choice-padding: $spacing-small 0 !default;
531
+ $choice-margin: 0 !default;
532
+ $choice-font-size-super: $text-font-size-super !default;
533
+ $choice-font-size-xlarge: $text-font-size-xlarge !default;
534
+ $choice-font-size-large: $text-font-size-large !default;
535
+ $choice-font-size-medium: $text-font-size-medium !default;
536
+ $choice-font-size-small: $text-font-size-small !default;
537
+ $choice-font-size-xsmall: $text-font-size-xsmall !default;
538
+
539
+ $choice-error-color: $color-error !default;
540
+ $choice-success-color: $color-success !default;
541
+
542
+ $checkbox-margin: $spacing-tiny !default;
543
+ $checkbox-font-size: $text-font-size-medium !default;
544
+
545
+ $fieldset-padding: 0 !default;
546
+ $fieldset-margin: $spacing-small 0 !default;
547
+ $fieldset-width: 100% !default;
548
+ $fieldset-border: 0 !default;
549
+
550
+ $legend-padding: $spacing-xsmall 0 !default;
551
+
552
+ $form-element-padding: $spacing-medium 0 !default;
553
+ $form-element-label-padding: 0 0 $spacing-small 0 !default;
554
+
555
+ //
556
+ // Links
557
+ //
558
+ $link-color: $color-dark-primary !default;
559
+ $link-primary-color: $color-primary !default;
560
+ $link-secondary-color: $color-secondary !default;
561
+ $link-success-color: $color-success !default;
562
+ $link-error-color: $color-error !default;
563
+ $link-text-decoration: none !default;
564
+ $link-hover-text-decoration: underline !default;
565
+
566
+ //
567
+ // Lists
568
+ //
569
+ $list-margin: 0 !default;
570
+ $list-padding: 0 0 0 $spacing-medium !default;
571
+
572
+ $list-unstyled-padding: 0 !default;
573
+ $list-unstyled-list-style: none !default;
574
+
575
+ $list-nested-padding: $list-padding !default;
576
+
577
+ $list-item-padding: 0 !default;
578
+ $list-item-unstyled-list-style: none !default;
579
+
580
+ $list-ordered-item-padding: 0 $spacing-small 0 0 !default;
581
+
582
+ $list-inline-padding: 0 !default;
583
+ $list-inline-item-padding-right: $spacing-medium !default;
584
+
585
+ $list-inline-item-bullet-content: '\2022' !default;
586
+ $list-inline-item-bullet-padding: 0 $spacing-small 0 0 !default;
587
+
588
+ //
589
+ // Menus
590
+ //
591
+ $menu-width: 100% !default;
592
+ $menu-max-height: 280px !default;
593
+ $menu-margin: $spacing-xsmall 0 0 0 !default;
594
+ $menu-background-color: $color-white !default;
595
+ $menu-border-radius: $border-radius !default;
596
+ $menu-z-index: $z-over-content !default;
597
+
598
+ $menu-item-divider-color: $color-quiet !default;
599
+ $menu-item-divider-font-weight: $text-font-weight-heavy !default;
600
+
601
+ $menu-item-hover-background-color: $color-lighter-grey !default;
602
+
603
+ $menu-item-active-background-color: $color-lighter-grey !default;
604
+ $menu-item-active-font-weight: $text-font-weight-heavy !default;
605
+
606
+ $menu-item-disabled-color: $color-disabled !default;
607
+
608
+ //
609
+ // Modals
610
+ //
611
+ $modal-width: 80% !default;
612
+ $modal-background-color: $color-white !default;
613
+ $modal-border-width: 0 !default;
614
+ $modal-border-style: $border-style !default;
615
+ $modal-border-color: $border-color !default;
616
+ $modal-border: $modal-border-width $modal-border-style $modal-border-color !default;
617
+ $modal-border-radius: $border-radius !default;
618
+ $modal-z-index: $z-over-everything !default;
619
+
620
+ $modal-header-text-align: center !default;
621
+
622
+ $modal-body-padding: $spacing-medium !default;
623
+
624
+ $modal-footer-padding: $spacing-medium !default;
625
+ $modal-footer-block-padding: $spacing-large 0 0 0 !default;
626
+ $modal-footer-block-button-border-radius: 0 !default;
627
+
628
+ $modal-ghost-background-color: transparent !default;
629
+ $modal-ghost-color: $color-white !default;
630
+ $modal-ghost-heading-color: $color-white !default;
631
+
632
+ //
633
+ // Navs
634
+ //
635
+ $nav-width: 100% !default;
636
+ $nav-padding: 0 !default;
637
+ $nav-margin: 0 !default;
638
+ $nav-background-color: $color-black !default;
639
+ $nav-color: $color-white !default;
640
+ $nav-z-index: $z-over-page !default;
641
+
642
+ $nav-light-background-color: $color-beige !default;
643
+ $nav-light-color: $color-darker-brown !default;
644
+
645
+ $nav-item-padding: $spacing-medium !default;
646
+ $nav-item-letter-spacing: 1px !default;
647
+
648
+ $nav-item-hover-background-color: $color-darker-grey !default;
649
+ $nav-item-hover-color: $color-white !default;
650
+ $nav-item-primary-hover-background-color: $color-primary !default;
651
+ $nav-item-primary-hover-color: $color-white !default;
652
+ $nav-item-secondary-hover-background-color: $color-secondary !default;
653
+ $nav-item-secondary-hover-color: $color-white !default;
654
+ $nav-item-success-hover-background-color: $color-success !default;
655
+ $nav-item-success-hover-color: $color-white !default;
656
+ $nav-item-error-hover-background-color: $color-error !default;
657
+ $nav-item-error-hover-color: $color-white !default;
658
+
659
+ $nav-item-active-background-color: $color-darker-grey !default;
660
+ $nav-item-active-color: $color-white !default;
661
+ $nav-item-primary-active-background-color: $color-primary !default;
662
+ $nav-item-primary-active-color: $color-white !default;
663
+ $nav-item-secondary-active-background-color: $color-secondary !default;
664
+ $nav-item-secondary-active-color: $color-white !default;
665
+ $nav-item-success-active-background-color: $color-success !default;
666
+ $nav-item-success-active-color: $color-white !default;
667
+ $nav-item-error-active-background-color: $color-error !default;
668
+ $nav-item-error-active-color: $color-white !default;
669
+
670
+ //
671
+ // Overlays
672
+ //
673
+ $overlay-background-color: $color-black !default;
674
+ $overlay-z-index: $z-over-screen !default;
675
+ $overlay-transparent-background-color: transparent !default;
676
+
677
+ //
678
+ // Pagination
679
+ //
680
+ $pagination-padding: $spacing-medium !default;
681
+ $pagination-width: 100% !default;
682
+ $pagination-font-size: $text-font-size-small !default;
683
+
684
+ $pagination-control-color: $color-primary !default;
685
+
686
+ $pagination-page-color: $color-primary !default;
687
+
688
+ $pagination-page-current-background-color: $color-primary !default;
689
+ $pagination-page-current-color: $color-white !default;
690
+
691
+ $pagination-ellipsis-padding: 0 $spacing-medium !default;
692
+
693
+ //
694
+ // Panels
695
+ //
696
+ $panel-nav-top: ($nav-item-padding * 2) + ($text-line-height * 1em);
697
+ $panel-nav-bottom: $panel-nav-top;
698
+
699
+ //
700
+ // Ranges
701
+ //
702
+ $range-width: 100% !default;
703
+ $range-height: 10px !default;
704
+ $range-padding: $spacing-small 0 !default;
705
+ $range-background-color: $color-default !default;
706
+ $range-primary-background-color: $color-primary !default;
707
+ $range-secondary-background-color: $color-secondary !default;
708
+ $range-success-background-color: $color-success !default;
709
+ $range-error-background-color: $color-error !default;
710
+ $range-border-width: $border-width !default;
711
+ $range-border-style: $border-style !default;
712
+ $range-border-color: transparent !default;
713
+ $range-border: 0 !default;
714
+ $range-border-radius: $border-radius-rounded !default;
715
+ $range-box-shadow: none !default;
716
+ $range-disabled-background-color: $color-lighter-grey !default;
717
+
718
+ $range-thumb-height: 20px !default;
719
+ $range-thumb-width: 20px !default;
720
+ $range-thumb-margin: -5px 0 0 0 !default;
721
+ $range-thumb-background-color: $color-white !default;
722
+ $range-thumb-border-width: $border-width !default;
723
+ $range-thumb-border-style: $border-style !default;
724
+ $range-thumb-border-color: transparent !default;
725
+ $range-thumb-border: 0 !default;
726
+ $range-thumb-border-radius: $border-radius-rounded !default;
727
+ $range-thumb-box-shadow: 0 1px 4px -1px $color-black !default;
728
+ $range-thumb-focus-border-color: $border-color-focus !default;
729
+ $range-thumb-focus-box-shadow: $box-shadow-focus !default;
730
+
731
+ //
732
+ // Tables
733
+ //
734
+ $table-width: 100% !default;
735
+ $table-margin: 0 !default;
736
+ $table-padding: 0 !default;
737
+ $table-border-width: $border-width !default;
738
+ $table-border-style: $border-style !default;
739
+ $table-border-color: $border-color !default;
740
+ $table-border: 0 !default;
741
+
742
+ $table-caption-padding: $spacing-small 0 !default;
743
+ $table-caption-color: $color-quiet !default;
744
+ $table-caption-max-width: 100% !default;
745
+ $table-caption-font-size: $text-font-size-small !default;
746
+ $table-caption-text-align: left !default;
747
+
748
+ $table-cell-padding: $spacing-small !default;
749
+ $table-cell-text-align: left !default;
750
+
751
+ $table-heading-background-color: $color-light-grey !default;
752
+ $table-heading-color: initial !default;
753
+ $table-heading-border-width: $border-width !default;
754
+ $table-heading-border-style: $border-style !default;
755
+ $table-heading-border-color: $color-grey !default;
756
+ $table-heading-border: $table-heading-border-width $table-heading-border-style $table-heading-border-color !default;
757
+ $table-heading-font-weight: $text-font-weight-heavy !default;
758
+
759
+ $table-heading-striped-color: initial !default;
760
+ $table-heading-striped-background-color: $color-white !default;
761
+
762
+ $table-row-striped-color: initial !default;
763
+ $table-row-striped-background-color: $color-lighter-grey !default;
764
+
765
+ $table-row-clickable-color: $color-primary !default;
766
+ $table-row-clickable-background-color: initial !default;
767
+
768
+ $table-row-inactive-color: $color-disabled !default;
769
+ $table-row-inactive-background-color: initial !default;
770
+
771
+ $table-condensed-font-size: $text-font-size-small !default;
772
+ $table-condensed-cell-padding: $spacing-xsmall !default;
773
+
774
+ //
775
+ // Tabs
776
+ //
777
+ $tab-headings-text-align: center !default;
778
+
779
+ $tab-heading-padding: $spacing-medium !default;
780
+ $tab-heading-margin: 0 !default;
781
+ $tab-heading-box-shadow-color: $color-lighter-grey !default;
782
+
783
+ $tab-heading-active-box-shadow-color: $color-default !default;
784
+ $tab-heading-primary-active-box-shadow-color: $color-primary !default;
785
+ $tab-heading-secondary-active-box-shadow-color: $color-secondary !default;
786
+ $tab-heading-success-active-box-shadow-color: $color-success !default;
787
+ $tab-heading-error-active-box-shadow-color: $color-error !default;
788
+
789
+ $tab-heading-disabled-color: $color-disabled !default;
790
+ $tab-heading-disabled-background-color: initial !default;
791
+
792
+ $tab-padding: $spacing-medium !default;
793
+
794
+ //
795
+ // Tags
796
+ //
797
+ $tags-width: 100% !default;
798
+ $tags-text-align: left !default;
799
+
800
+ $tag-padding: $spacing-small $spacing-large $spacing-small $spacing-small !default;
801
+ $tag-margin: $spacing-tiny !default;
802
+
803
+ $tag-close-color: $color-light-grey !default;
804
+
805
+ $tags-container-width: 70% !default;
806
+
807
+ $tags-field-container-margin: $spacing-tiny !default;
808
+ $tags-field-container-width: 30% !default;
809
+
810
+ //
811
+ // Toasts
812
+ //
813
+ $toasts-width: 250px !default;
814
+ $toasts-background-color: transparent !default;
815
+ $toasts-z-index: $z-over-page !default;
816
+
817
+ $toast-padding: $spacing-medium !default;
818
+ $toast-margin: $spacing-small !default;
819
+ $toast-background-color: $color-default !default;
820
+ $toast-color: $color-white !default;
821
+ $toast-primary-background-color: $color-primary !default;
822
+ $toast-primary-color: $color-white !default;
823
+ $toast-secondary-background-color: $color-secondary !default;
824
+ $toast-secondary-color: $color-white !default;
825
+ $toast-success-background-color: $color-success !default;
826
+ $toast-success-color: $color-white !default;
827
+ $toast-error-background-color: $color-error !default;
828
+ $toast-error-color: $color-white !default;
829
+ $toast-border-radius: $border-radius !default;
830
+
831
+ //
832
+ // Toggles
833
+ //
834
+ $toggle-margin: 0 0.5em !default;
835
+
836
+ $toggle-track-background-color: $color-default !default;
837
+ $toggle-track-primary-background-color: $color-primary !default;
838
+ $toggle-track-secondary-background-color: $color-secondary !default;
839
+ $toggle-track-success-background-color: $color-success !default;
840
+ $toggle-track-error-background-color: $color-error !default;
841
+ $toggle-track-border-radius: $border-radius-rounded !default;
842
+ $toggle-track-unchecked-background-color: $color-lighter-grey !default;
843
+ $toggle-track-disabled-background-color: $color-lighter-grey !default;
844
+
845
+ $toggle-handle-background-color: $color-white !default;
846
+ $toggle-handle-border-radius: $border-radius-rounded !default;
847
+ $toggle-handle-box-shadow: 0 1px 4px -1px $color-black !default;
848
+ $toggle-handle-disabled-background-color: $color-lighter-grey !default;
849
+
850
+ //
851
+ // Tooltips
852
+ //
853
+ $tooltip-z-index: $z-over-page;
854
+ $tooltip-arrow-width: 0.6em;
855
+ $tooltip-body-padding: $spacing-small $spacing-medium;
856
+ $tooltip-body-background-color: $color-black;
857
+ $tooltip-body-color: $color-white;
858
+ $tooltip-body-border-width: 1px;
859
+ $tooltip-body-border-style: solid;
860
+ $tooltip-body-border-color: $tooltip-body-background-color;
861
+ $tooltip-body-border-radius: $border-radius;
862
+
863
+ //
864
+ // Trees
865
+ //
866
+ $tree-padding: 0 !default;
867
+ $tree-margin: 0 !default;
868
+
869
+ $tree-nested-padding: 0 0 0 $spacing-medium !default;
870
+
871
+ $tree-item-padding: 0 !default;
872
+ $tree-item-indicator-padding: 0 $spacing-small 0 0 !default;
873
+ $tree-item-indicator-color: $color-light-grey !default;
874
+
875
+ $tree-item-expandable-indicator-color: $color-grey !default;
876
+ $tree-item-expanded-indicator-color: $color-darker-grey !default;