dlegr250_material_design 0.1.41 → 0.1.42
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 590f6188dfbfa49570bac20d7f71dec731ce8ac1
|
4
|
+
data.tar.gz: 024982ed8c24da5a33dd2bcfa54a4f3c3c712fc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7208a6a1d41b17876470da9d31d7ffc30b12d4512a37d7d5bee3a6dd96598dee1414197dca918ee8c6cbc267d3995d0a52b9f7ba843bc3db66eb7f4b99dab006
|
7
|
+
data.tar.gz: f88068ee1537e06f9f1f699d64b385f5d4b74102ae1a5b57f681e4fe69cab7c3bd54632269221adc5be8436b42fb8727ea27719b708f517244b499f1bf567504
|
@@ -22,7 +22,7 @@
|
|
22
22
|
//----------------------------------------------------------------------
|
23
23
|
|
24
24
|
.blank-slate-container {
|
25
|
-
padding: $spacing-normal;
|
25
|
+
// padding: $spacing-normal;
|
26
26
|
text-align: center;
|
27
27
|
}
|
28
28
|
|
@@ -44,7 +44,7 @@
|
|
44
44
|
//----------------------------------------------------------------------
|
45
45
|
|
46
46
|
.blank-slate-title {
|
47
|
-
font-size: $font-size-
|
47
|
+
font-size: $font-size-normal;
|
48
48
|
font-weight: bold;
|
49
49
|
}
|
50
50
|
|
@@ -56,3 +56,10 @@
|
|
56
56
|
font-size: $font-size-normal;
|
57
57
|
padding-top: $spacing-xsmall;
|
58
58
|
}
|
59
|
+
|
60
|
+
// Blank slates - actions
|
61
|
+
//----------------------------------------------------------------------
|
62
|
+
|
63
|
+
.blank-slate-actions {
|
64
|
+
padding-top: $spacing-small;
|
65
|
+
}
|
@@ -149,6 +149,29 @@ ol {
|
|
149
149
|
text-align: right;
|
150
150
|
}
|
151
151
|
|
152
|
+
// Lists - list item action
|
153
|
+
// For list items that are links/actions
|
154
|
+
//----------------------------------------------------------------------
|
155
|
+
|
156
|
+
.list-item-action {
|
157
|
+
color: color("primary");
|
158
|
+
font-weight: bold;
|
159
|
+
letter-spacing: 0.5px;
|
160
|
+
text-transform: uppercase;
|
161
|
+
|
162
|
+
.list-item-icon {
|
163
|
+
color: color("primary");
|
164
|
+
}
|
165
|
+
|
166
|
+
&:hover {
|
167
|
+
background-color: color("hover");
|
168
|
+
}
|
169
|
+
|
170
|
+
&:active {
|
171
|
+
background-color: darken(color("hover"), 10%);
|
172
|
+
}
|
173
|
+
}
|
174
|
+
|
152
175
|
// Lists - sizes
|
153
176
|
//----------------------------------------------------------------------
|
154
177
|
|