forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
135 lines (114 loc) · 2.41 KB
/
style.scss
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
.components-panel {
background: $white;
border: 1px solid $light-gray-500;
> .components-panel__header:first-child,
> .components-panel__body:first-child {
margin-top: -1px;
}
> .components-panel__header:last-child,
> .components-panel__body:last-child {
border-bottom-width: 0;
}
}
.components-panel + .components-panel {
margin-top: -1px;
}
.components-panel__body {
border-top: 1px solid $light-gray-500;
border-bottom: 1px solid $light-gray-500;
h3 {
margin: 0 0 .5em 0;
}
&.is-opened {
padding: $panel-padding;
}
}
.components-panel__header {
display: flex;
justify-content: space-between;
align-items: center;
background: $light-gray-300;
padding: 0 $panel-padding;
height: 50px;
border-top: 1px solid $light-gray-500;
border-bottom: 1px solid $light-gray-500;
h2 {
margin: 0;
font-size: inherit;
color: inherit;
}
}
.components-panel__body + .components-panel__body,
.components-panel__body + .components-panel__header,
.components-panel__header + .components-panel__body,
.components-panel__header + .components-panel__header {
margin-top: -1px;
}
.components-panel__body > .components-panel__body-title {
display: block;
padding: 0;
font-size: inherit;
margin-bottom: 0;
}
.components-panel__body.is-opened > .components-panel__body-title {
margin: -1 * $panel-padding;
margin-bottom: 0;
}
.components-panel__body-toggle.components-button {
position: relative;
padding: 15px;
outline: none;
width: 100%;
font-weight: 600;
text-align: left;
.dashicon {
position: absolute;
right: $item-spacing;
top: 50%;
transform: translateY( -50% );
}
// mirror the arrow horizontally in RTL languages
/* rtl:begin:ignore */
body.rtl & .dashicons-arrow-right {
transform: scaleX(-1);
-ms-filter: fliph;
filter: FlipH;
margin-top: -10px;
}
/* rtl:end:ignore */
}
.components-panel__body-toggle-icon {
margin-right: -5px;
}
.components-panel__color-title {
float: left;
height: 19px;
}
.components-panel__color-area {
width: 25px;
height: 16px;
margin-left: 15px;
border: 1px solid #DADADA;
display: inline-block;
}
.components-panel__row {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
select {
// Necessary for select to respond to flexbox
min-width: 0;
}
label {
margin-right: 10px;
flex-shrink: 0;
max-width: 75%;
}
&:empty {
margin-top: 0;
}
}
.components-panel .circle-picker {
padding-bottom: 20px;
}