dlegr250_material_design 0.1.30 → 0.1.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/dlegr250_material_design/version.rb +1 -1
- data/vendor/assets/stylesheets/base/global_classes.scss +8 -8
- data/vendor/assets/stylesheets/base/variables.scss +1 -0
- data/vendor/assets/stylesheets/components/buttons.scss +13 -1
- data/vendor/assets/stylesheets/components/tabs.scss +10 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42356827fbce63fba42fb09c1158e854a5f1e9e7
|
|
4
|
+
data.tar.gz: 287fb5dc414a9a7c52b845aa2497d12b115bc300
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b12e2005387266699492bc735f158e0fa80fbbe701934a03b621e2f5e9ec9b26c1e238fa66648ac8cb2e83fdde5ed1effeb2cc5ed3ee2b43a95670cd4a738bdb
|
|
7
|
+
data.tar.gz: 730f1d233e1b97a2d7ed93eb3dc9cf46960c69acc2163d7711d8927a5c6192cf005921538d9088ff1949ba93779d82a16bfa4907fbc74e99bf2e872a3beb0645
|
|
@@ -153,14 +153,14 @@
|
|
|
153
153
|
// Disabled elements
|
|
154
154
|
//----------------------------------------------------------------------
|
|
155
155
|
|
|
156
|
-
:disabled,
|
|
157
|
-
.disabled {
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
}
|
|
156
|
+
// :disabled,
|
|
157
|
+
// .disabled {
|
|
158
|
+
// background-color: rgba(0, 0, 0, 0.12) !important;
|
|
159
|
+
// color: rgba(0, 0, 0, 0.26) !important;
|
|
160
|
+
// cursor: not-allowed !important;
|
|
161
|
+
// pointer-events: none !important;
|
|
162
|
+
// @include box-shadow(none !important);
|
|
163
|
+
// }
|
|
164
164
|
|
|
165
165
|
// Colored background or text
|
|
166
166
|
//----------------------------------------------------------------------
|
|
@@ -56,7 +56,7 @@ $buttons: ".button";
|
|
|
56
56
|
.icon-left {
|
|
57
57
|
margin-right: $spacing-xsmall;
|
|
58
58
|
}
|
|
59
|
-
|
|
59
|
+
|
|
60
60
|
.icon-right {
|
|
61
61
|
margin-left: $spacing-xsmall;
|
|
62
62
|
}
|
|
@@ -233,3 +233,15 @@ $buttons: ".button";
|
|
|
233
233
|
}
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
|
+
|
|
237
|
+
// Buttons - disabled
|
|
238
|
+
//----------------------------------------------------------------------
|
|
239
|
+
|
|
240
|
+
.button:disabled,
|
|
241
|
+
.button.disabled {
|
|
242
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
243
|
+
color: color("disabled");
|
|
244
|
+
cursor: not-allowed;
|
|
245
|
+
pointer-events: none;
|
|
246
|
+
@include box-shadow(none);
|
|
247
|
+
}
|
|
@@ -42,8 +42,6 @@
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
47
45
|
// Tabs - colored
|
|
48
46
|
//----------------------------------------------------------------------
|
|
49
47
|
|
|
@@ -66,3 +64,13 @@
|
|
|
66
64
|
}
|
|
67
65
|
}
|
|
68
66
|
}
|
|
67
|
+
|
|
68
|
+
// Tabs - disabled
|
|
69
|
+
//----------------------------------------------------------------------
|
|
70
|
+
|
|
71
|
+
.tab:disabled,
|
|
72
|
+
.tab.disabled {
|
|
73
|
+
color: color("disabled");
|
|
74
|
+
cursor: default;
|
|
75
|
+
pointer-events: none;
|
|
76
|
+
}
|