-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathblock.native.scss
More file actions
86 lines (72 loc) · 1.29 KB
/
block.native.scss
File metadata and controls
86 lines (72 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.blockHolder {
flex: 1 1 auto;
}
.solidBorderColor {
border-color: $blue-wordpress;
}
.solidBorderColorDark {
border-color: $blue-30;
}
.dashedBorderColor {
border-color: $gray;
}
.dashedBorderColorDark {
border-color: $gray-70;
}
.dimmed {
opacity: $dimmed-opacity;
}
.blockTitle {
background-color: $gray;
padding-left: 8px;
padding-top: 4px;
padding-bottom: 4px;
}
.aztec_container {
flex: 1;
}
.blockCode {
font-family: $default-monospace-font;
}
.blockText {
min-height: 50px;
}
.toolbar {
border-left-width: 0;
margin-right: auto;
padding-left: 2px;
height: 44px;
}
.pipe {
margin-top: auto;
margin-bottom: auto;
margin-left: 2px;
height: 28px;
width: 1px;
background-color: #e9eff3;
opacity: 0.4;
}
.neutralToolbar {
margin-left: - $block-edge-to-content;
margin-right: - $block-edge-to-content;
}
.solidBorder {
position: absolute;
top: -$solid-border-space;
bottom: 0;
left: -$solid-border-space;
right: -$solid-border-space;
border-width: $block-selected-border-width;
border-radius: 4px;
border-style: solid;
}
.dashedBorder {
position: absolute;
top: -$dashed-border-space;
bottom: -$dashed-border-space;
left: -$dashed-border-space;
right: -$dashed-border-space;
border-width: $block-selected-border-width;
border-radius: 2px;
border-style: dashed;
}