dlegr250_material_design 0.4.88 → 0.4.89
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: c3e9c3cf7fe4851b438e277de23fe9a682a7fca9
|
4
|
+
data.tar.gz: ae1588c9fea98620b61079ff845faf8de1bc3917
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a349868c3361af1da79c2629c0fb21a1fbbfaa446bb4485a3eee6f1b3275b9c2312537892cb79c3ab592e836d29569f8a87e6fe61eac76732d85eb587d137f6
|
7
|
+
data.tar.gz: d705b2cbd5a605120e34fb201c635a2b390f99b68a97f69014db2c59fddca0807f488c9991b0e64316a50bbf59761125e4feefcf60898cedc2aa2b7f9c5651f0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
//======================================================================
|
2
2
|
// EXAMPLE:
|
3
|
-
// <div class="badge badge-blue">10</div>
|
3
|
+
// <div class="badge badge-blue badge-small">10</div>
|
4
4
|
//======================================================================
|
5
5
|
|
6
6
|
// Badges - base
|
@@ -9,31 +9,22 @@
|
|
9
9
|
.badge {
|
10
10
|
display: inline-block;
|
11
11
|
font-size: $font-size-normal;
|
12
|
+
letter-spacing: 0.5px;
|
12
13
|
min-width: 18px;
|
13
14
|
padding: $spacing-small;
|
14
15
|
text-align: center;
|
16
|
+
vertical-align: middle;
|
15
17
|
@include rounded-corners;
|
16
18
|
}
|
17
19
|
|
18
|
-
.badge-
|
19
|
-
|
20
|
+
.badge-xsmall {
|
21
|
+
font-size: $font-size-small;
|
22
|
+
height: 28px;
|
23
|
+
line-height: 28px;
|
24
|
+
min-width: $button-height * 0.6;
|
25
|
+
padding: 0 $spacing-xsmall;
|
20
26
|
}
|
21
27
|
|
22
|
-
// .badge-small {
|
23
|
-
// font-size: $font-size-small;
|
24
|
-
// min-width: 14px;
|
25
|
-
// padding: $spacing-xsmall;
|
26
|
-
// }
|
27
|
-
//
|
28
|
-
// .button-xsmall {
|
29
|
-
// font-size: $font-size-small;
|
30
|
-
// height: 28px;
|
31
|
-
// line-height: 28px;
|
32
|
-
// min-width: $button-height * 0.6;
|
33
|
-
// padding: 0 $spacing-xsmall;
|
34
|
-
// }
|
35
|
-
|
36
|
-
// Using dense name to be consistent with MD spec
|
37
28
|
.badge-small {
|
38
29
|
font-size: $font-size-small;
|
39
30
|
height: $button-height-dense !important;
|
@@ -96,12 +96,6 @@ $buttons: ".button";
|
|
96
96
|
|
97
97
|
.button-normal {}
|
98
98
|
|
99
|
-
// Special case: submit.button with display: inline-flex would align left.
|
100
|
-
// input[type="submit"].button,
|
101
|
-
// .fab {
|
102
|
-
// display: inline-block;
|
103
|
-
// }
|
104
|
-
|
105
99
|
// Buttons - icon buttons
|
106
100
|
//----------------------------------------------------------------------
|
107
101
|
|