dlegr250_material_design 0.5.11 → 0.5.12
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbced2df7daa9b4968dfae1c2f396092fb0436e0
|
4
|
+
data.tar.gz: 28fa2fafc760a8e1a0fe58929adb44dd6330f83b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2053214c58f104fe1125912157dedd775aea64e2a2516cd74606593d39bb4848a152e4dfc89ab86b6e0e9cc04028dd297d06ef3eab6ec027acf2b36de39a7fb
|
7
|
+
data.tar.gz: d437e969694f33f3c974501f73a4d6975250cdb4959c49014ae6d871bafe5abe8b99bbfea17e6b1c1868911a70cf6386864190873e682a74bd9f4f3d254be85b
|
@@ -150,6 +150,7 @@
|
|
150
150
|
.font-size-xsmall { font-size: $font-size-xsmall !important; }
|
151
151
|
.font-size-small { font-size: $font-size-small !important; }
|
152
152
|
.font-size-normal { font-size: $font-size-normal !important; }
|
153
|
+
.font-size-16 { font-size: 16px !important; }
|
153
154
|
.font-size-large { font-size: $font-size-large !important; }
|
154
155
|
.font-size-xlarge { font-size: $font-size-xlarge !important; }
|
155
156
|
|
@@ -122,14 +122,28 @@ ol {
|
|
122
122
|
}
|
123
123
|
|
124
124
|
// Hoverable
|
125
|
-
.list-hoverable
|
126
|
-
|
127
|
-
|
125
|
+
.list-hoverable {
|
126
|
+
.list-item {
|
127
|
+
&:hover { background-color: color("hover"); }
|
128
|
+
&:active { background-color: darken(color("hover"), 3%); }
|
129
|
+
}
|
130
|
+
|
131
|
+
.button-icon {
|
132
|
+
&:hover { background-color: darken(color("hover"), 7%); }
|
133
|
+
&:active { background-color: darken(color("hover"), 12%); }
|
134
|
+
}
|
128
135
|
}
|
129
136
|
|
130
|
-
.list-hoverable-blue
|
131
|
-
|
132
|
-
|
137
|
+
.list-hoverable-blue {
|
138
|
+
.list-item {
|
139
|
+
&:hover { background-color: color("hover-blue"); }
|
140
|
+
&:active { background-color: darken(color("hover-blue"), 3%); }
|
141
|
+
}
|
142
|
+
|
143
|
+
.button-icon {
|
144
|
+
&:hover { background-color: darken(color("hover-blue"), 7%); }
|
145
|
+
&:active { background-color: darken(color("hover-blue"), 12%); }
|
146
|
+
}
|
133
147
|
}
|
134
148
|
|
135
149
|
// Aligned top instead of centered
|