mui-sass 0.1.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +11 -0
  5. data/CHANGELOG.md +5 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +119 -0
  9. data/Rakefile +1 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +7 -0
  12. data/lib/mui-sass.rb +60 -0
  13. data/lib/mui/sass/engine.rb +13 -0
  14. data/lib/mui/sass/version.rb +5 -0
  15. data/mui-sass.gemspec +29 -0
  16. data/templates/project/manifest.rb +2 -0
  17. data/templates/project/styles.sass +1 -0
  18. data/vendor/assets/javascripts/mui.js +1593 -0
  19. data/vendor/assets/stylesheets/_mui.scss +27 -0
  20. data/vendor/assets/stylesheets/bootstrap-3.3.1/.bower.json +59 -0
  21. data/vendor/assets/stylesheets/bootstrap-3.3.1/LICENSE +21 -0
  22. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
  23. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
  24. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  25. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
  26. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  27. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  28. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
  29. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
  30. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
  31. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
  32. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  33. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
  34. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  35. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
  36. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  37. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  38. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
  39. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
  40. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
  41. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
  42. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
  43. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  44. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
  45. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
  46. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  47. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  48. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
  49. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  50. data/vendor/assets/stylesheets/bootstrap-3.3.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  51. data/vendor/assets/stylesheets/mui/_appbar.scss +72 -0
  52. data/vendor/assets/stylesheets/mui/_buttons.scss +201 -0
  53. data/vendor/assets/stylesheets/mui/_colors.scss +348 -0
  54. data/vendor/assets/stylesheets/mui/_dividers.scss +25 -0
  55. data/vendor/assets/stylesheets/mui/_dropdowns.scss +90 -0
  56. data/vendor/assets/stylesheets/mui/_forms.scss +467 -0
  57. data/vendor/assets/stylesheets/mui/_grid.scss +29 -0
  58. data/vendor/assets/stylesheets/mui/_helpers.scss +284 -0
  59. data/vendor/assets/stylesheets/mui/_layout.scss +21 -0
  60. data/vendor/assets/stylesheets/mui/_mixins.scss +17 -0
  61. data/vendor/assets/stylesheets/mui/_overlay.scss +19 -0
  62. data/vendor/assets/stylesheets/mui/_panel.scss +14 -0
  63. data/vendor/assets/stylesheets/mui/_ripple.scss +55 -0
  64. data/vendor/assets/stylesheets/mui/_scaffolding.scss +110 -0
  65. data/vendor/assets/stylesheets/mui/_semantic-markup.scss +45 -0
  66. data/vendor/assets/stylesheets/mui/_tables.scss +44 -0
  67. data/vendor/assets/stylesheets/mui/_tabs.scss +75 -0
  68. data/vendor/assets/stylesheets/mui/_typography.scss +51 -0
  69. data/vendor/assets/stylesheets/mui/_variables.scss +256 -0
  70. data/vendor/assets/stylesheets/mui/mixins/_buttons.scss +58 -0
  71. data/vendor/assets/stylesheets/mui/mixins/_grid-framework.scss +61 -0
  72. data/vendor/assets/stylesheets/mui/mixins/_typography.scss +132 -0
  73. data/vendor/assets/stylesheets/mui/mixins/_util.scss +4 -0
  74. data/vendor/assets/stylesheets/mui/normalize-3.0.2.scss +427 -0
  75. metadata +173 -0
@@ -0,0 +1,110 @@
1
+ /**
2
+ * MUI Scaffolding module
3
+ */
4
+
5
+ // ============================================================================
6
+ // GLOBAL
7
+ // ============================================================================
8
+
9
+ // Reset box sizing
10
+ * {
11
+ box-sizing: border-box;
12
+ }
13
+
14
+ *:before,
15
+ *:after {
16
+ box-sizing: border-box;
17
+ }
18
+
19
+ // Body reset
20
+ html {
21
+ font-size: 10px;
22
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
23
+ }
24
+
25
+ body {
26
+ font-family: $mui-base-font-family;
27
+ font-size: $mui-base-font-size;
28
+ font-weight: $mui-base-font-weight;
29
+ line-height: $mui-base-line-height;
30
+ color: $mui-base-font-color;
31
+ background-color: $mui-body-bg-color;
32
+ }
33
+
34
+ @if $mui-base-font-smoothing == true {
35
+ html,
36
+ body,
37
+ button, // safari issue
38
+ input, // safari issue
39
+ textarea { // safari issue
40
+ -webkit-font-smoothing: antialiased;
41
+ -moz-osx-font-smoothing: grayscale;
42
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
43
+ }
44
+ }
45
+
46
+
47
+
48
+
49
+ // ============================================================================
50
+ // TAG STYLES
51
+ // ============================================================================
52
+
53
+ // Reset fonts for relevant elements
54
+ input,
55
+ button,
56
+ select,
57
+ textarea {
58
+ font-family: inherit;
59
+ font-size: inherit;
60
+ line-height: inherit;
61
+ }
62
+
63
+ // Links
64
+ a {
65
+ color: $mui-link-font-color;
66
+ text-decoration: $mui-link-text-decoration;
67
+
68
+ &:hover,
69
+ &:focus {
70
+ color: $mui-link-font-color-hover;
71
+ text-decoration: $mui-link-text-decoration-hover;
72
+ }
73
+
74
+ &:focus {
75
+ @include tab-focus;
76
+ }
77
+ }
78
+
79
+ // paragraphs
80
+ p {
81
+ margin: 0 0 ($mui-base-line-height-computed / 2);
82
+ }
83
+
84
+ // lists
85
+ ul,
86
+ ol {
87
+ margin-top: 0;
88
+ margin-bottom: ($mui-base-line-height-computed / 2);
89
+ }
90
+
91
+ // Figures
92
+ // We reset this here because previously Normalize had no `figure` margins.
93
+ // This ensures we dont break anyones use of the element.
94
+ figure {
95
+ margin: 0;
96
+ }
97
+
98
+ // Images
99
+ img {
100
+ vertical-align: middle;
101
+ }
102
+
103
+ // Horizontal rules
104
+ hr {
105
+ margin-top: $mui-base-line-height-computed;
106
+ margin-bottom: $mui-base-line-height-computed;
107
+ border: 0;
108
+ height: 1px;
109
+ background-color: $mui-hr-color;
110
+ }
@@ -0,0 +1,45 @@
1
+ /**
2
+ * MUI Semantic module
3
+ */
4
+
5
+ // Strong
6
+ strong {
7
+ font-weight: 700;
8
+ }
9
+
10
+ // Abbreviations
11
+ abbr[title] {
12
+ cursor: help;
13
+ border-bottom: 1px dotted $mui-abbr-border-color;
14
+ }
15
+
16
+ // headers
17
+ h1 {
18
+ @extend .mui-text-display1;
19
+ }
20
+
21
+ h2 {
22
+ @extend .mui-text-headline;
23
+ }
24
+
25
+ h3 {
26
+ @extend .mui-text-title;
27
+ }
28
+
29
+ h4 {
30
+ @extend .mui-text-subhead;
31
+ }
32
+
33
+ h5 {
34
+ @extend .mui-text-body2;
35
+ }
36
+
37
+ h1, h2, h3 {
38
+ margin-top: $mui-base-line-height-computed;
39
+ margin-bottom: ($mui-base-line-height-computed / 2);
40
+ }
41
+
42
+ h4, h5, h6 {
43
+ margin-top: ($mui-base-line-height-computed / 2);
44
+ margin-bottom: ($mui-base-line-height-computed / 2);
45
+ }
@@ -0,0 +1,44 @@
1
+ /**
2
+ * MUI Tables module
3
+ */
4
+
5
+ // Global styles
6
+ th {
7
+ text-align: left;
8
+ }
9
+
10
+ // Table style
11
+ .mui-table {
12
+ width: 100%;
13
+ max-width: 100%;
14
+ margin-bottom: $mui-base-line-height-computed;
15
+
16
+ // Cells
17
+ > thead,
18
+ > tbody,
19
+ > tfoot {
20
+ > tr {
21
+ > th,
22
+ > td {
23
+ padding: $mui-table-cell-padding;
24
+ line-height: $mui-base-line-height;
25
+ }
26
+ }
27
+ }
28
+
29
+ // Bottom align for column headings
30
+ > thead > tr > th {
31
+ border-bottom: 2px solid $mui-table-border-color;
32
+ font-weight: 700;
33
+ }
34
+
35
+ // multiple tbody instances
36
+ > tbody + tbody {
37
+ border-top: 2px solid $mui-table-border-color;
38
+ }
39
+
40
+ // Bordered style
41
+ &.mui-table-bordered > tbody > tr > td {
42
+ border-bottom: 1px solid $mui-table-border-color;
43
+ }
44
+ }
@@ -0,0 +1,75 @@
1
+ /**
2
+ * MUI Tabs module
3
+ */
4
+
5
+ .mui-tabs {
6
+ list-style: none;
7
+ padding-left: 0;
8
+ margin-bottom: 0;
9
+ background-color: transparent;
10
+ white-space: nowrap;
11
+
12
+ > li {
13
+ display: inline-block;
14
+
15
+ > a {
16
+ display: block;
17
+ white-space: nowrap;
18
+ text-transform: uppercase;
19
+ font-weight: 500;
20
+ font-size: 14px;
21
+ color: $mui-tab-font-color;
22
+ cursor: default;
23
+ height: 48px;
24
+ line-height: 48px;
25
+ padding-left: 24px;
26
+ padding-right: 24px;
27
+
28
+ &:hover {
29
+ text-decoration: none;
30
+ }
31
+ }
32
+
33
+ &.mui-active {
34
+ border-bottom: 2px solid $mui-tab-border-color-active;
35
+
36
+ > a {
37
+ @if $mui-tab-font-color-active == null {
38
+ color: $mui-tab-font-color;
39
+ } @else {
40
+ color: $mui-tab-font-color-active;
41
+ }
42
+ }
43
+ }
44
+ }
45
+
46
+ &.mui-tabs-justified {
47
+ display: table;
48
+ width: 100%;
49
+ table-layout: fixed;
50
+
51
+ > li {
52
+ display: table-cell;
53
+
54
+ > a {
55
+ text-align: center;
56
+ padding-left: 0px;
57
+ padding-right: 0px;
58
+ }
59
+ }
60
+ }
61
+ }
62
+
63
+ .mui-tab-content {
64
+ > .mui-tab-pane {
65
+ display: none;
66
+
67
+ &.mui-active {
68
+ display: block;
69
+ }
70
+ }
71
+ }
72
+
73
+ [data-mui-toggle="tab"] {
74
+ @include mui-node-inserted();
75
+ }
@@ -0,0 +1,51 @@
1
+ /**
2
+ * MUI Typography module
3
+ */
4
+
5
+ .mui-text-display4 {
6
+ @include mui-text("display4");
7
+ }
8
+
9
+ .mui-text-display3 {
10
+ @include mui-text("display3");
11
+ }
12
+
13
+ .mui-text-display2 {
14
+ @include mui-text("display2");
15
+ }
16
+
17
+ .mui-text-display1 {
18
+ @include mui-text("display1");
19
+ }
20
+
21
+ .mui-text-headline {
22
+ @include mui-text("headline");
23
+ }
24
+
25
+ .mui-text-title {
26
+ @include mui-text("title");
27
+ }
28
+
29
+ .mui-text-subhead {
30
+ @include mui-text("subhead");
31
+ }
32
+
33
+ .mui-text-body2 {
34
+ @include mui-text("body2");
35
+ }
36
+
37
+ .mui-text-body1 {
38
+ @include mui-text("body1");
39
+ }
40
+
41
+ .mui-text-caption {
42
+ @include mui-text("caption");
43
+ }
44
+
45
+ .mui-text-menu {
46
+ @include mui-text("menu");
47
+ }
48
+
49
+ .mui-text-button {
50
+ @include mui-text("button");
51
+ }
@@ -0,0 +1,256 @@
1
+ // ============================================================================
2
+ // COLORS
3
+ // ============================================================================
4
+
5
+ $mui-primary-color: mui-color('blue', '500') !default;
6
+ $mui-primary-color-dark: mui-color('blue', '700') !default;
7
+ $mui-primary-color-light: mui-color('blue', '100') !default;
8
+
9
+ $mui-accent-color: mui-color('pink', 'A200') !default;
10
+ $mui-accent-color-dark: mui-color('pink', 'A400') !default;
11
+ $mui-accent-color-light: mui-color('pink', 'A100') !default;
12
+
13
+ $mui-danger-color: mui-color('red', '500') !default;
14
+
15
+
16
+
17
+
18
+ // ============================================================================
19
+ // MEDIA QUERY BREAKPOINTS
20
+ // ============================================================================
21
+
22
+ $mui-screen-xs: 480px !default;
23
+ $mui-screen-sm-min: 768px !default;
24
+ $mui-screen-md-min: 992px !default;
25
+ $mui-screen-lg-min: 1200px !default;
26
+
27
+
28
+
29
+
30
+ // ============================================================================
31
+ // GRID SYSTEM
32
+ // ============================================================================
33
+
34
+ $mui-grid-columns: 12 !default;
35
+ $mui-grid-gutter-width: 30px !default;
36
+ $mui-grid-float-breakpoint: $mui-screen-sm-min !default;
37
+
38
+
39
+
40
+
41
+ // ============================================================================
42
+ // CONTAINER SIZES
43
+ // ============================================================================
44
+
45
+ $mui-container-sm: $mui-screen-sm-min !default;
46
+ $mui-container-md: (940px + $mui-grid-gutter-width) !default;
47
+ $mui-container-lg: (1140px + $mui-grid-gutter-width) !default;
48
+
49
+
50
+
51
+
52
+ // ============================================================================
53
+ // SCAFFOLDING
54
+ // ============================================================================
55
+
56
+ $mui-body-bg-color: mui-color('white') !default;
57
+ $mui-link-font-color: $mui-primary-color !default;
58
+ $mui-link-text-decoration: none !default;
59
+ $mui-link-font-color-hover: $mui-primary-color-dark !default;
60
+ $mui-link-text-decoration-hover: underline !default;
61
+
62
+ $mui-hr-color: mui-color('black-alpha-12') !default;
63
+ $mui-abbr-border-color: $mui-primary-color !default;
64
+ $mui-cursor-disabled: not-allowed !default;
65
+ $mui-border-radius-default: 2px !default;
66
+
67
+
68
+
69
+
70
+ // ============================================================================
71
+ // TYPOGRAPHY
72
+ // ============================================================================
73
+
74
+ $mui-base-font-color: mui-color('black-alpha-87') !default;
75
+ $mui-base-font-family: "Helvetica Neue", Helvetica, Arial, Verdana, "Trebuchet MS" !default;
76
+ $mui-base-font-size: 14px !default;
77
+ $mui-base-font-weight: 400 !default;
78
+ $mui-base-line-height: 1.429 !default;
79
+ $mui-base-font-smoothing: false;
80
+
81
+
82
+
83
+
84
+ // ============================================================================
85
+ // BUTTONS
86
+ // ============================================================================
87
+
88
+ $mui-btn-height: 36px !default;
89
+ $mui-btn-height-lg: $mui-btn-height * 1.5 !default;
90
+
91
+ $mui-btn-border-radius: $mui-border-radius-default !default;
92
+ $mui-btn-padding-horizontal: 26px !default;
93
+
94
+ $mui-btn-margin-vertical: 6px !default;
95
+ $mui-btn-spacing-horizontal: 8px !default;
96
+
97
+ $mui-btn-default-bg-color: mui-color('white') !default;
98
+ $mui-btn-default-font-color: $mui-base-font-color !default;
99
+ $mui-btn-default-ripple-color: darken(mui-color('white'), 35%) !default;
100
+
101
+ $mui-btn-primary-bg-color: $mui-primary-color !default;
102
+ $mui-btn-primary-font-color: mui-color('white') !default;
103
+ $mui-btn-primary-ripple-color: mui-color('white') !default;
104
+
105
+ $mui-btn-danger-bg-color: $mui-danger-color !default;
106
+ $mui-btn-danger-font-color: mui-color('white') !default;
107
+ $mui-btn-danger-ripple-color: mui-color('white') !default;
108
+
109
+ $mui-btn-accent-bg-color: $mui-accent-color !default;
110
+ $mui-btn-accent-font-color: mui-color('white') !default;
111
+ $mui-btn-accent-ripple-color: mui-color('white') !default;
112
+
113
+ $mui-btn-flat-bg-color: transparent !default;
114
+ $mui-btn-flat-bg-color-hover: darken(mui-color('white'), 5%) !default;
115
+ $mui-btn-flat-ripple-color: darken(mui-color('white'), 35%) !default;
116
+
117
+ $mui-btn-floating-bg-color: $mui-accent-color !default;
118
+ $mui-btn-floating-font-color: mui-color('white') !default;
119
+ $mui-btn-floating-ripple-color: mui-color('white') !default;
120
+
121
+
122
+
123
+
124
+ // ============================================================================
125
+ // FORMS
126
+ // ============================================================================
127
+
128
+ $mui-input-bg-color: transparent !default;
129
+ $mui-input-bg-color-disabled: transparent !default;
130
+ $mui-input-font-color: $mui-base-font-color !default;
131
+ $mui-input-font-size: 16px !default;
132
+ $mui-input-height: 32px !default;
133
+
134
+ $mui-input-placeholder-color: mui-color('black-alpha-26') !default;
135
+
136
+ $mui-input-border-color: $mui-input-placeholder-color !default;
137
+ $mui-input-border-color-focus: $mui-primary-color !default;
138
+
139
+ $mui-textarea-height: 64px !default;
140
+
141
+ $mui-label-font-size: 12px !default;
142
+ $mui-label-font-color: mui-color('black-alpha-54') !default;
143
+ $mui-label-margin-bottom: 3px !default;
144
+
145
+ $mui-legend-font-size: $mui-base-font-size * 1.5 !default;
146
+ $mui-legend-font-color: $mui-base-font-color !default;
147
+
148
+ $mui-form-group-margin-bottom: 20px !default;
149
+
150
+
151
+
152
+
153
+ // ============================================================================
154
+ // PANELS
155
+ // ============================================================================
156
+
157
+ $mui-panel-bg-color: mui-color('white') !default;
158
+ $mui-panel-padding: 15px !default;
159
+ $mui-panel-border-radius: 0 !default;
160
+
161
+
162
+
163
+
164
+ // ============================================================================
165
+ // DIVIDERS
166
+ // ============================================================================
167
+
168
+ $mui-divider-color: mui-color('black-alpha-12') !default;
169
+
170
+
171
+
172
+
173
+ // ============================================================================
174
+ // DROPDOWNS
175
+ // ============================================================================
176
+
177
+ $mui-dropdown-bg-color: mui-color('white') !default;
178
+ $mui-dropdown-border-color: $mui-divider-color !default;
179
+ $mui-dropdown-border-radius: $mui-border-radius-default !default;
180
+
181
+ $mui-dropdown-link-font-color: $mui-base-font-color !default;
182
+ $mui-dropdown-link-font-color-hover: darken($mui-dropdown-link-font-color, 5%) !default;
183
+ $mui-dropdown-link-font-color-active: $mui-accent-color !default;
184
+ $mui-dropdown-link-font-color-disabled: mui-color('grey', '200') !default;
185
+
186
+ $mui-dropdown-link-bg-color-hover: mui-color('grey', '200') !default;
187
+ $mui-dropdown-link-bg-color-active: mui-color('white') !default;
188
+
189
+
190
+
191
+
192
+ // ============================================================================
193
+ // APPBAR
194
+ // ============================================================================
195
+
196
+ $mui-appbar-height: 64px !default;
197
+ $mui-appbar-height-xs-portrait: 56px !default;
198
+ $mui-appbar-height-xs-landscape: 48px !default;
199
+
200
+ $mui-appbar-bg-color: $mui-primary-color !default;
201
+ $mui-appbar-font-color: mui-color('white') !default;
202
+
203
+
204
+
205
+
206
+ // ============================================================================
207
+ // TABLES
208
+ // ============================================================================
209
+
210
+ $mui-table-cell-padding: 10px !default;
211
+ $mui-table-border-color: $mui-divider-color !default;
212
+
213
+
214
+
215
+
216
+ // ============================================================================
217
+ // TABS
218
+ // ============================================================================
219
+
220
+ $mui-tab-font-color: $mui-base-font-color !default;
221
+ $mui-tab-font-color-active: $mui-primary-color !default;
222
+ $mui-tab-border-color-active: $mui-primary-color !default;
223
+
224
+
225
+
226
+
227
+ // ============================================================================
228
+ // CARET
229
+ // ============================================================================
230
+
231
+ $mui-caret-width: 4px !default;
232
+
233
+
234
+
235
+
236
+ // ============================================================================
237
+ // OVERLAY
238
+ // ============================================================================
239
+
240
+ $mui-overlay-bg-color: rgba(mui-color('black'), 0.20) !default;
241
+
242
+
243
+
244
+
245
+ // ============================================================================
246
+ // INTERNAL VARIABLES
247
+ // ============================================================================
248
+
249
+ $mui-base-line-height-computed: floor(($mui-base-font-size * $mui-base-line-height));
250
+ $mui-screen-xs-max: ($mui-screen-sm-min - 1);
251
+ $mui-screen-sm-max: ($mui-screen-md-min - 1);
252
+ $mui-screen-md-max: ($mui-screen-lg-min - 1);
253
+
254
+ // for bootstrap
255
+ $grid-gutter-width: $mui-grid-gutter-width;
256
+ $grid-columns: $mui-grid-columns;