Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/static/sass/backend/options/devices.scss
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
.ct-devices li {
2
+
margin-bottom: 0;
3
+
4
+
&:before, &:after {
5
+
content: '';
6
+
border-radius: 2px;
7
+
box-sizing: border-box;
8
+
}
9
+
10
+
&.ct-desktop {
11
+
flex-direction: column;
12
+
13
+
&:before {
14
+
margin-bottom: 1px;
15
+
width: 17px;
16
+
height: 11px;
17
+
border: 2px solid currentColor;
18
+
}
19
+
20
+
&:after {
21
+
width: 9px;
22
+
height: 2px;
23
+
background: currentColor;
24
+
}
25
+
}
26
+
27
+
&.ct-tablet {
28
+
&:before {
29
+
width: 13px;
30
+
height: 14px;
31
+
border: 2px solid currentColor;
32
+
border-bottom-width: 3px;
33
+
}
34
+
35
+
&:after {
36
+
display: none;
37
+
}
38
+
}
39
+
40
+
&.ct-mobile {
41
+
&:before {
42
+
width: 10px;
43
+
height: 14px;
44
+
border: 2px solid currentColor;
45
+
border-bottom-width: 3px;
46
+
}
47
+
48
+
&:after {
49
+
display: none;
50
+
}
51
+
}
52
+
}