dlegr250_material_design 0.5.25 → 0.5.26
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: 9fe8ca0568504db5aedc74942813fc16d3e3db03
|
4
|
+
data.tar.gz: 34fc3ee695b88c761fc665b2bed3b5de179799d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fc8ed8d5541ebf1248f7670d346e8f6da42b6a3271b547a6130f4bcd1af389a3210cb24634dfcf13ed85198ec3b1e01d7d8434e2ac7d80bfb2d19002b11a370
|
7
|
+
data.tar.gz: 4b2245961b6ee6f63d5549619d96a1cd0b6a1de3666a63bb01d0dde7a2c24a11cd08a11b41baeb1f96957a3301d530f32e3038ec78207d711321241a00519d11
|
@@ -1,29 +1,55 @@
|
|
1
1
|
.comment {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
@include rounded-corners();
|
2
|
+
margin: 0;
|
3
|
+
padding: $spacing-normal 0;
|
4
|
+
@include rounded-corners(0);
|
6
5
|
}
|
7
6
|
|
8
|
-
.comment-
|
9
|
-
|
7
|
+
.comment:first-child {
|
8
|
+
padding-top: 0;
|
9
|
+
}
|
10
|
+
|
11
|
+
.comment:last-child {
|
12
|
+
padding-bottom: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
.comment:not(:last-child) {
|
10
16
|
border-bottom: 1px solid color("divider");
|
17
|
+
}
|
18
|
+
|
19
|
+
.comment-header {
|
11
20
|
color: color("helper");
|
12
|
-
|
21
|
+
font-size: $font-size-small;
|
22
|
+
padding-bottom: $spacing-xsmall;
|
13
23
|
}
|
14
24
|
|
15
|
-
.comment-header-
|
16
|
-
|
17
|
-
|
25
|
+
.comment-header-author {
|
26
|
+
color: color("text");
|
27
|
+
font-weight: bold;
|
28
|
+
padding-right: $spacing-xsmall;
|
18
29
|
}
|
19
30
|
|
20
|
-
.comment-header-
|
21
|
-
|
22
|
-
|
31
|
+
.comment-header-timestamp {
|
32
|
+
color: color("helper");
|
33
|
+
padding-left: $spacing-xsmall;
|
23
34
|
}
|
24
35
|
|
25
36
|
.comment-content {
|
26
|
-
|
37
|
+
line-height: 1.3;
|
38
|
+
}
|
39
|
+
|
40
|
+
.comment-actions {
|
41
|
+
color: color("helper");
|
42
|
+
font-size: $font-size-small;
|
43
|
+
padding-top: $spacing-small;
|
44
|
+
|
45
|
+
a {
|
46
|
+
color: color("helper");
|
47
|
+
padding: $spacing-xsmall;
|
48
|
+
|
49
|
+
&:hover {
|
50
|
+
text-decoration: underline;
|
51
|
+
}
|
52
|
+
}
|
27
53
|
}
|
28
54
|
|
29
55
|
.comment.highlighted .comment-content {
|
@@ -73,6 +73,14 @@
|
|
73
73
|
}
|
74
74
|
}
|
75
75
|
|
76
|
+
// Sizes
|
77
|
+
@media (min-width: $width-small) {
|
78
|
+
.dialog-small { width: $width-small; }
|
79
|
+
.dialog-medium { width: $width-medium; }
|
80
|
+
.dialog-large { width: $width-large; }
|
81
|
+
.dialog-xlarge { width: $width-xlarge; }
|
82
|
+
}
|
83
|
+
|
76
84
|
// Dialogs - header
|
77
85
|
//----------------------------------------------------------------------
|
78
86
|
|