material-sass 4.0.0.beta → 4.0.0.beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +2 -2
- data/Rakefile +12 -12
- data/{app/assets → assets}/javascripts/material-sprockets.js +0 -0
- data/{app/assets → assets}/javascripts/material.js +54 -4
- data/{app/assets → assets}/javascripts/material.min.js +1 -1
- data/{app/assets → assets}/javascripts/material/addons/picker.date.js +0 -0
- data/{app/assets → assets}/javascripts/material/addons/picker.js +0 -0
- data/{app/assets → assets}/javascripts/material/addons/textarea-autosize.js +0 -0
- data/{app/assets → assets}/javascripts/material/addons/waves.js +0 -0
- data/assets/javascripts/material/components/expansion-panel.js +50 -0
- data/{app/assets → assets}/javascripts/material/components/floating-label.js +1 -1
- data/{app/assets → assets}/javascripts/material/components/navdrawer.js +0 -0
- data/{app/assets → assets}/javascripts/material/components/selection-control-focus.js +2 -3
- data/{app/assets → assets}/javascripts/material/components/tab-switch.js +0 -0
- data/{app/assets → assets}/javascripts/material/components/util.js +0 -0
- data/{app/assets → assets}/javascripts/material/initializers/picker.js +0 -0
- data/{app/assets → assets}/javascripts/material/initializers/textarea-autosize.js +0 -0
- data/{app/assets → assets}/javascripts/material/initializers/waves.js +0 -0
- data/{app/assets → assets}/stylesheets/material.min.css +0 -0
- data/{app/assets → assets}/stylesheets/material.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/_colours.scss +7 -11
- data/{app/assets → assets}/stylesheets/material/_functions.scss +8 -14
- data/{app/assets → assets}/stylesheets/material/_mixins.scss +1 -1
- data/{app/assets → assets}/stylesheets/material/_print.scss +4 -4
- data/{app/assets → assets}/stylesheets/material/_utilities.scss +0 -2
- data/{app/assets → assets}/stylesheets/material/_variables.scss +0 -2
- data/{app/assets → assets}/stylesheets/material/base/_base.scss +24 -49
- data/{app/assets → assets}/stylesheets/material/base/_grid.scss +1 -5
- data/{app/assets → assets}/stylesheets/material/base/_typography.scss +1 -11
- data/{app/assets → assets}/stylesheets/material/bootstrap/_alert.scss +14 -16
- data/{app/assets → assets}/stylesheets/material/bootstrap/_badge.scss +19 -7
- data/{app/assets → assets}/stylesheets/material/bootstrap/_breadcrumb.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/bootstrap/_carousel.scss +0 -6
- data/{app/assets → assets}/stylesheets/material/bootstrap/_close.scss +0 -4
- data/{app/assets → assets}/stylesheets/material/bootstrap/_code.scss +0 -9
- data/{app/assets → assets}/stylesheets/material/bootstrap/_custom-form.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/bootstrap/_form.scss +4 -16
- data/{app/assets → assets}/stylesheets/material/bootstrap/_image.scss +10 -14
- data/{app/assets → assets}/stylesheets/material/bootstrap/_jumbotron.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/bootstrap/_media.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/bootstrap/_nav.scss +4 -10
- data/{app/assets → assets}/stylesheets/material/bootstrap/_pagination.scss +0 -1
- data/{app/assets → assets}/stylesheets/material/bootstrap/_popover.scss +4 -10
- data/{app/assets → assets}/stylesheets/material/bootstrap/_responsive-embed.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/bootstrap/_transition.scss +2 -0
- data/{app/assets → assets}/stylesheets/material/material.scss +1 -10
- data/{app/assets → assets}/stylesheets/material/material/_button-flat.scss +3 -2
- data/{app/assets → assets}/stylesheets/material/material/_button-float.scss +4 -4
- data/{app/assets → assets}/stylesheets/material/material/_button-group.scss +40 -95
- data/{app/assets → assets}/stylesheets/material/material/_button.scss +8 -24
- data/{app/assets → assets}/stylesheets/material/material/_card.scss +28 -48
- data/{app/assets → assets}/stylesheets/material/material/_chip.scss +3 -7
- data/{app/assets → assets}/stylesheets/material/material/_data-table.scss +40 -37
- data/{app/assets → assets}/stylesheets/material/material/_dialog.scss +79 -53
- data/assets/stylesheets/material/material/_expansion-panel.scss +247 -0
- data/{app/assets → assets}/stylesheets/material/material/_menu.scss +99 -96
- data/{app/assets → assets}/stylesheets/material/material/_navdrawer.scss +26 -54
- data/{app/assets → assets}/stylesheets/material/material/_picker.scss +8 -13
- data/{app/assets → assets}/stylesheets/material/material/_progress-circular.scss +0 -1
- data/{app/assets → assets}/stylesheets/material/material/_progress.scss +41 -53
- data/{app/assets → assets}/stylesheets/material/material/_selection-control.scss +4 -25
- data/{app/assets → assets}/stylesheets/material/material/_stepper.scss +1 -9
- data/{app/assets → assets}/stylesheets/material/material/_tab.scss +16 -16
- data/assets/stylesheets/material/material/_text-field-box.scss +59 -0
- data/{app/assets → assets}/stylesheets/material/material/_text-field-floating-label.scss +28 -13
- data/{app/assets → assets}/stylesheets/material/material/_text-field-input-group.scss +40 -49
- data/assets/stylesheets/material/material/_text-field-textarea.scss +15 -0
- data/{app/assets → assets}/stylesheets/material/material/_text-field.scss +23 -42
- data/{app/assets → assets}/stylesheets/material/material/_toolbar.scss +50 -37
- data/{app/assets → assets}/stylesheets/material/material/_tooltip.scss +6 -12
- data/{app/assets → assets}/stylesheets/material/mixins/_background-variant.scss +6 -5
- data/{app/assets → assets}/stylesheets/material/mixins/_border-radius.scss +2 -1
- data/{app/assets → assets}/stylesheets/material/mixins/_breakpoint.scss +7 -6
- data/{app/assets → assets}/stylesheets/material/mixins/_clearfix.scss +0 -0
- data/assets/stylesheets/material/mixins/_float.scss +13 -0
- data/{app/assets → assets}/stylesheets/material/mixins/_form.scss +37 -5
- data/{app/assets → assets}/stylesheets/material/mixins/_grid-framework.scss +30 -24
- data/{app/assets → assets}/stylesheets/material/mixins/_grid.scss +8 -8
- data/{app/assets → assets}/stylesheets/material/mixins/_hex-to-rgba.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/mixins/_hover.scss +19 -19
- data/{app/assets → assets}/stylesheets/material/mixins/_image.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/mixins/_list.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/mixins/_material-icons.scss +4 -2
- data/{app/assets → assets}/stylesheets/material/mixins/_nav-divider.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/mixins/_reset-text.scss +1 -1
- data/{app/assets → assets}/stylesheets/material/mixins/_screenreader.scss +1 -2
- data/{app/assets → assets}/stylesheets/material/mixins/_strip-unit.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/mixins/_text-alignment.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/mixins/_text-emphasis.scss +6 -5
- data/{app/assets → assets}/stylesheets/material/mixins/_text-hide.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/mixins/_text-truncate.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/mixins/_transition.scss +0 -8
- data/{app/assets → assets}/stylesheets/material/mixins/_typography.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/utilities/_align.scss +2 -0
- data/{app/assets → assets}/stylesheets/material/utilities/_background.scss +0 -4
- data/{app/assets → assets}/stylesheets/material/utilities/_border.scss +2 -2
- data/{app/assets → assets}/stylesheets/material/utilities/_clearfix.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/utilities/_display.scss +6 -2
- data/{app/assets → assets}/stylesheets/material/utilities/_flex.scss +10 -6
- data/{app/assets → assets}/stylesheets/material/utilities/_float.scss +3 -3
- data/{app/assets → assets}/stylesheets/material/utilities/_material-icons.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/utilities/_position.scss +14 -0
- data/{app/assets → assets}/stylesheets/material/utilities/_screenreader.scss +0 -0
- data/{app/assets → assets}/stylesheets/material/utilities/_sizing.scss +2 -0
- data/{app/assets → assets}/stylesheets/material/utilities/_spacing.scss +32 -31
- data/{app/assets → assets}/stylesheets/material/utilities/_text.scss +2 -13
- data/{app/assets → assets}/stylesheets/material/utilities/_visibility.scss +2 -0
- data/{app/assets → assets}/stylesheets/material/utilities/_waves.scss +3 -3
- data/assets/stylesheets/material/variables/_elevation-shadow.scss +69 -0
- data/{app/assets → assets}/stylesheets/material/variables/_grid.scss +0 -4
- data/assets/stylesheets/material/variables/_palette.scss +66 -0
- data/{app/assets → assets}/stylesheets/material/variables/_spacer.scss +6 -11
- data/assets/stylesheets/material/variables/_transition.scss +27 -0
- data/{app/assets → assets}/stylesheets/material/variables/_typography.scss +21 -27
- data/{app/assets → assets}/stylesheets/material/variables/_variable-bootstrap.scss +22 -50
- data/{app/assets → assets}/stylesheets/material/variables/_variable-material.scss +108 -141
- data/lib/material-sass.rb +52 -4
- data/lib/material-sass/engine.rb +8 -8
- data/lib/material-sass/version.rb +1 -1
- data/material-sass.gemspec +3 -0
- metadata +145 -149
- data/app/assets/fonts/material-icons/MaterialIcons-Regular.eot +0 -0
- data/app/assets/fonts/material-icons/MaterialIcons-Regular.ijmap +0 -1
- data/app/assets/fonts/material-icons/MaterialIcons-Regular.svg +0 -2373
- data/app/assets/fonts/material-icons/MaterialIcons-Regular.ttf +0 -0
- data/app/assets/fonts/material-icons/MaterialIcons-Regular.woff +0 -0
- data/app/assets/fonts/material-icons/MaterialIcons-Regular.woff2 +0 -0
- data/app/assets/fonts/material-icons/README.md +0 -9
- data/app/assets/fonts/material-icons/codepoints +0 -932
- data/app/assets/fonts/roboto/Roboto-Bold.eot +0 -0
- data/app/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
- data/app/assets/fonts/roboto/Roboto-Bold.woff +0 -0
- data/app/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
- data/app/assets/fonts/roboto/Roboto-Light.eot +0 -0
- data/app/assets/fonts/roboto/Roboto-Light.ttf +0 -0
- data/app/assets/fonts/roboto/Roboto-Light.woff +0 -0
- data/app/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
- data/app/assets/fonts/roboto/Roboto-Medium.eot +0 -0
- data/app/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
- data/app/assets/fonts/roboto/Roboto-Medium.woff +0 -0
- data/app/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
- data/app/assets/fonts/roboto/Roboto-Regular.eot +0 -0
- data/app/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
- data/app/assets/fonts/roboto/Roboto-Regular.woff +0 -0
- data/app/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
- data/app/assets/fonts/roboto/Roboto-Thin.eot +0 -0
- data/app/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
- data/app/assets/fonts/roboto/Roboto-Thin.woff +0 -0
- data/app/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
- data/app/assets/images/bg/amber.jpg +0 -0
- data/app/assets/images/bg/brand.jpg +0 -0
- data/app/assets/images/bg/green.jpg +0 -0
- data/app/assets/images/bg/purple.jpg +0 -0
- data/app/assets/images/bg/red.jpg +0 -0
- data/app/assets/images/bg/teal.jpg +0 -0
- data/app/assets/stylesheets/material/material/_expansion-panel.scss +0 -118
- data/app/assets/stylesheets/material/material/_text-field-textarea.scss +0 -18
- data/app/assets/stylesheets/material/mixins/_pull.scss +0 -7
- data/app/assets/stylesheets/material/variables/_elevation-shadow.scss +0 -91
- data/app/assets/stylesheets/material/variables/_palette.scss +0 -45
- data/app/assets/stylesheets/material/variables/_transition.scss +0 -29
@@ -4,8 +4,6 @@
|
|
4
4
|
@include make-grid-columns;
|
5
5
|
}
|
6
6
|
|
7
|
-
|
8
|
-
|
9
7
|
// Container
|
10
8
|
|
11
9
|
@if $enable-grid-classes {
|
@@ -21,8 +19,6 @@
|
|
21
19
|
}
|
22
20
|
}
|
23
21
|
|
24
|
-
|
25
|
-
|
26
22
|
// Row
|
27
23
|
|
28
24
|
@if $enable-grid-classes {
|
@@ -35,7 +31,7 @@
|
|
35
31
|
margin-left: 0;
|
36
32
|
|
37
33
|
> .col,
|
38
|
-
> [class*=
|
34
|
+
> [class*='col-'] {
|
39
35
|
padding-right: 0;
|
40
36
|
padding-left: 0;
|
41
37
|
}
|
@@ -20,8 +20,6 @@
|
|
20
20
|
}
|
21
21
|
}
|
22
22
|
|
23
|
-
|
24
|
-
|
25
23
|
// Emphasis
|
26
24
|
|
27
25
|
mark,
|
@@ -34,7 +32,7 @@ mark,
|
|
34
32
|
small,
|
35
33
|
.small {
|
36
34
|
font-size: $small-font-size;
|
37
|
-
font-weight:
|
35
|
+
font-weight: $font-weight-regular;
|
38
36
|
}
|
39
37
|
|
40
38
|
.initialism {
|
@@ -42,8 +40,6 @@ small,
|
|
42
40
|
text-transform: uppercase;
|
43
41
|
}
|
44
42
|
|
45
|
-
|
46
|
-
|
47
43
|
// Headings
|
48
44
|
|
49
45
|
.typography-display-4 {
|
@@ -86,8 +82,6 @@ small,
|
|
86
82
|
@include typography-caption;
|
87
83
|
}
|
88
84
|
|
89
|
-
|
90
|
-
|
91
85
|
// Headings - bootstrap classes
|
92
86
|
|
93
87
|
h1,
|
@@ -157,8 +151,6 @@ h6,
|
|
157
151
|
@include typography-title;
|
158
152
|
}
|
159
153
|
|
160
|
-
|
161
|
-
|
162
154
|
// Hr
|
163
155
|
|
164
156
|
hr {
|
@@ -168,8 +160,6 @@ hr {
|
|
168
160
|
margin-bottom: $paragraph-margin-y;
|
169
161
|
}
|
170
162
|
|
171
|
-
|
172
|
-
|
173
163
|
// List
|
174
164
|
|
175
165
|
.list-inline {
|
@@ -2,40 +2,33 @@
|
|
2
2
|
@include border-radius($alert-border-radius);
|
3
3
|
|
4
4
|
border: 0;
|
5
|
-
box-shadow: map-get($alert-elevation-shadow, shadow);
|
6
5
|
display: block;
|
7
6
|
margin-bottom: $alert-margin-y;
|
8
7
|
padding: $alert-padding-y $alert-padding-x;
|
8
|
+
position: relative;
|
9
9
|
}
|
10
10
|
|
11
|
-
// Colour
|
12
11
|
@each $color, $values in $theme-colors {
|
13
12
|
.alert-#{$color} {
|
14
|
-
@include color-yiq(map-get(theme-color($color), lighter));
|
15
|
-
|
16
13
|
background-color: map-get(theme-color($color), lighter);
|
17
|
-
|
18
|
-
.alert-link {
|
19
|
-
color: map-get(theme-color($color), darker);
|
20
|
-
}
|
14
|
+
color: color-yiq(map-get(theme-color($color), lighter));
|
21
15
|
}
|
22
16
|
}
|
23
17
|
|
24
|
-
|
25
|
-
|
26
18
|
// Dismissible
|
27
19
|
|
28
20
|
.alert-dismissible {
|
21
|
+
padding-right: ($alert-padding-x * 2 + $close-font-size);
|
22
|
+
|
29
23
|
.close {
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
24
|
+
color: inherit;
|
25
|
+
padding: ($alert-padding-y - ($close-font-size - $font-size-base * $line-height-base) / 2) $alert-padding-x;
|
26
|
+
position: absolute;
|
27
|
+
top: 0;
|
28
|
+
right: 0;
|
34
29
|
}
|
35
30
|
}
|
36
31
|
|
37
|
-
|
38
|
-
|
39
32
|
// Misc
|
40
33
|
|
41
34
|
.alert-heading {
|
@@ -43,5 +36,10 @@
|
|
43
36
|
}
|
44
37
|
|
45
38
|
.alert-link {
|
39
|
+
color: inherit;
|
46
40
|
font-weight: $alert-link-font-weight;
|
41
|
+
|
42
|
+
@include active-focus-hover {
|
43
|
+
color: inherit;
|
44
|
+
}
|
47
45
|
}
|
@@ -1,13 +1,13 @@
|
|
1
1
|
.badge {
|
2
2
|
@include border-radius($badge-border-radius);
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
display: inline-block;
|
4
|
+
align-items: center;
|
5
|
+
display: inline-flex;
|
7
6
|
font-size: inherit;
|
8
7
|
font-weight: $badge-font-weight;
|
9
8
|
line-height: inherit;
|
10
|
-
padding: $badge-padding-
|
9
|
+
padding-right: $badge-padding-x;
|
10
|
+
padding-left: $badge-padding-x;
|
11
11
|
text-align: center;
|
12
12
|
vertical-align: baseline;
|
13
13
|
white-space: nowrap;
|
@@ -24,11 +24,23 @@
|
|
24
24
|
}
|
25
25
|
}
|
26
26
|
|
27
|
-
// Colour
|
28
27
|
@each $color, $values in $theme-colors {
|
29
28
|
.badge-#{$color} {
|
30
|
-
@include color-yiq(map-get(theme-color($color), color));
|
31
|
-
|
32
29
|
background-color: map-get(theme-color($color), color);
|
30
|
+
color: color-yiq(map-get(theme-color($color), color));
|
31
|
+
|
32
|
+
&[href] {
|
33
|
+
@include active-focus-hover {
|
34
|
+
background-color: map-get(theme-color($color), darker);
|
35
|
+
color: color-yiq(map-get(theme-color($color), darker));
|
36
|
+
text-decoration: none;
|
37
|
+
}
|
38
|
+
}
|
33
39
|
}
|
34
40
|
}
|
41
|
+
|
42
|
+
// Pill badges with extra rounded corners
|
43
|
+
|
44
|
+
.badge-pill {
|
45
|
+
@include border-radius(1em);
|
46
|
+
}
|
File without changes
|
@@ -65,8 +65,6 @@
|
|
65
65
|
top: 0;
|
66
66
|
}
|
67
67
|
|
68
|
-
|
69
|
-
|
70
68
|
// Left/right controls
|
71
69
|
|
72
70
|
.carousel-control-next,
|
@@ -124,8 +122,6 @@
|
|
124
122
|
content: $carousel-control-prev-icon;
|
125
123
|
}
|
126
124
|
|
127
|
-
|
128
|
-
|
129
125
|
// Optional captions
|
130
126
|
|
131
127
|
.carousel-caption {
|
@@ -138,8 +134,6 @@
|
|
138
134
|
z-index: 1;
|
139
135
|
}
|
140
136
|
|
141
|
-
|
142
|
-
|
143
137
|
// Optional indicators
|
144
138
|
|
145
139
|
.carousel-indicators {
|
@@ -1,10 +1,3 @@
|
|
1
|
-
code,
|
2
|
-
kbd,
|
3
|
-
pre,
|
4
|
-
samp {
|
5
|
-
font-family: $font-family-monospace;
|
6
|
-
}
|
7
|
-
|
8
1
|
code {
|
9
2
|
@include border-radius($code-border-radius);
|
10
3
|
|
@@ -35,8 +28,6 @@ pre {
|
|
35
28
|
color: $pre-color;
|
36
29
|
display: block;
|
37
30
|
font-size: $code-font-size;
|
38
|
-
margin-top: 0;
|
39
|
-
margin-bottom: $pre-margin-y;
|
40
31
|
|
41
32
|
code {
|
42
33
|
background-color: transparent;
|
File without changes
|
@@ -3,12 +3,6 @@
|
|
3
3
|
.form-check {
|
4
4
|
display: block;
|
5
5
|
margin-bottom: $textfield-margin-y;
|
6
|
-
|
7
|
-
&.disabled {
|
8
|
-
.form-check-label {
|
9
|
-
color: $textfield-color-disabled;
|
10
|
-
}
|
11
|
-
}
|
12
6
|
}
|
13
7
|
|
14
8
|
.form-check-inline {
|
@@ -34,9 +28,11 @@
|
|
34
28
|
display: inline-flex;
|
35
29
|
font-size: inherit;
|
36
30
|
line-height: inherit;
|
37
|
-
}
|
38
|
-
|
39
31
|
|
32
|
+
.form-check.disabled & {
|
33
|
+
color: $textfield-color-disabled;
|
34
|
+
}
|
35
|
+
}
|
40
36
|
|
41
37
|
// Form group
|
42
38
|
|
@@ -57,8 +53,6 @@
|
|
57
53
|
}
|
58
54
|
}
|
59
55
|
|
60
|
-
|
61
|
-
|
62
56
|
// Inline
|
63
57
|
|
64
58
|
.form-inline {
|
@@ -103,8 +97,6 @@
|
|
103
97
|
}
|
104
98
|
}
|
105
99
|
|
106
|
-
|
107
|
-
|
108
100
|
// Label
|
109
101
|
|
110
102
|
.col-form-label {
|
@@ -137,8 +129,6 @@
|
|
137
129
|
padding-bottom: $textfield-padding-y;
|
138
130
|
}
|
139
131
|
|
140
|
-
|
141
|
-
|
142
132
|
// Misc
|
143
133
|
|
144
134
|
.form-text {
|
@@ -162,8 +152,6 @@
|
|
162
152
|
display: block;
|
163
153
|
}
|
164
154
|
|
165
|
-
|
166
|
-
|
167
155
|
// Validation
|
168
156
|
|
169
157
|
.invalid-feedback {
|
@@ -1,17 +1,3 @@
|
|
1
|
-
.img-fluid {
|
2
|
-
@include img-fluid;
|
3
|
-
}
|
4
|
-
|
5
|
-
.img-thumbnail {
|
6
|
-
@include img-fluid;
|
7
|
-
|
8
|
-
box-shadow: $thumbnail-box-shadow;
|
9
|
-
}
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
// figure
|
14
|
-
|
15
1
|
.figure {
|
16
2
|
display: inline-block;
|
17
3
|
}
|
@@ -26,3 +12,13 @@
|
|
26
12
|
line-height: 1;
|
27
13
|
margin-bottom: $figure-img-margin-y;
|
28
14
|
}
|
15
|
+
|
16
|
+
.img-fluid {
|
17
|
+
@include img-fluid;
|
18
|
+
}
|
19
|
+
|
20
|
+
.img-thumbnail {
|
21
|
+
@include img-fluid;
|
22
|
+
|
23
|
+
box-shadow: $thumbnail-box-shadow;
|
24
|
+
}
|
File without changes
|
File without changes
|
@@ -20,8 +20,6 @@
|
|
20
20
|
}
|
21
21
|
}
|
22
22
|
|
23
|
-
|
24
|
-
|
25
23
|
// Justified
|
26
24
|
|
27
25
|
.nav-fill {
|
@@ -39,8 +37,6 @@
|
|
39
37
|
}
|
40
38
|
}
|
41
39
|
|
42
|
-
|
43
|
-
|
44
40
|
// Pills
|
45
41
|
|
46
42
|
.nav-pills {
|
@@ -55,10 +51,6 @@
|
|
55
51
|
background-color: $nav-pills-bg-hover;
|
56
52
|
}
|
57
53
|
|
58
|
-
&:active {
|
59
|
-
opacity: 1;
|
60
|
-
}
|
61
|
-
|
62
54
|
&.active {
|
63
55
|
color: $nav-pills-color-active;
|
64
56
|
opacity: 1;
|
@@ -69,6 +61,10 @@
|
|
69
61
|
color: $nav-link-color-disabled;
|
70
62
|
opacity: 1;
|
71
63
|
}
|
64
|
+
|
65
|
+
&:active {
|
66
|
+
opacity: 1;
|
67
|
+
}
|
72
68
|
}
|
73
69
|
|
74
70
|
.show > .nav-link {
|
@@ -77,8 +73,6 @@
|
|
77
73
|
}
|
78
74
|
}
|
79
75
|
|
80
|
-
|
81
|
-
|
82
76
|
// N.B. Tabs are defined in Material design
|
83
77
|
// (https://material.google.com/components/tabs.html)
|
84
78
|
// therefore, tabs are styled in /assets/sass/material/_tab.scss
|
@@ -17,6 +17,10 @@
|
|
17
17
|
top: 0;
|
18
18
|
left: 0;
|
19
19
|
z-index: map-get($dialog-elevation-shadow, elevation);
|
20
|
+
|
21
|
+
@include media-breakpoint-up(md) {
|
22
|
+
margin: $tooltip-margin-desktop;
|
23
|
+
}
|
20
24
|
}
|
21
25
|
|
22
26
|
.popover-body {
|
@@ -41,13 +45,3 @@
|
|
41
45
|
padding-bottom: $dialog-padding-y;
|
42
46
|
}
|
43
47
|
}
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
// Desktop
|
48
|
-
|
49
|
-
@include media-breakpoint-up(md) {
|
50
|
-
.popover {
|
51
|
-
margin: $tooltip-margin-desktop;
|
52
|
-
}
|
53
|
-
}
|
File without changes
|
@@ -3,16 +3,12 @@
|
|
3
3
|
@import 'mixins';
|
4
4
|
@import 'variables';
|
5
5
|
|
6
|
-
|
7
|
-
|
8
6
|
// Base CSS
|
9
7
|
|
10
8
|
@import 'base/base';
|
11
9
|
@import 'base/grid';
|
12
10
|
@import 'base/typography';
|
13
11
|
|
14
|
-
|
15
|
-
|
16
12
|
// Bootstrap components
|
17
13
|
// Components covered in Bootstrap's css but not in Material design
|
18
14
|
|
@@ -33,8 +29,6 @@
|
|
33
29
|
@import 'bootstrap/responsive-embed';
|
34
30
|
@import 'bootstrap/transition';
|
35
31
|
|
36
|
-
|
37
|
-
|
38
32
|
// Material components
|
39
33
|
// Components covered in Material design (https://material.google.com/components)
|
40
34
|
|
@@ -56,20 +50,17 @@
|
|
56
50
|
@import 'material/stepper';
|
57
51
|
@import 'material/tab';
|
58
52
|
@import 'material/text-field';
|
53
|
+
@import 'material/text-field-box';
|
59
54
|
@import 'material/text-field-floating-label';
|
60
55
|
@import 'material/text-field-input-group';
|
61
56
|
@import 'material/text-field-textarea';
|
62
57
|
@import 'material/toolbar';
|
63
58
|
@import 'material/tooltip';
|
64
59
|
|
65
|
-
|
66
|
-
|
67
60
|
// Utilities
|
68
61
|
|
69
62
|
@import 'utilities';
|
70
63
|
|
71
|
-
|
72
|
-
|
73
64
|
// Very basic print styles
|
74
65
|
|
75
66
|
@import 'print';
|