-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
style.scss
157 lines (134 loc) · 3.08 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
.components-panel {
background: $white;
border: $border-width solid $gray-200;
> .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: $border-width solid $gray-200;
border-bottom: $border-width solid $gray-200;
h3 {
margin: 0 0 0.5em;
}
&.is-opened {
padding: $grid-unit-20;
}
}
.components-panel__header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 $grid-unit-20;
height: $grid-unit-60;
border-bottom: $border-width solid $gray-300;
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: -$border-width;
}
.components-panel__body > .components-panel__body-title {
display: block;
padding: 0;
font-size: inherit;
margin-top: 0;
margin-bottom: 0;
transition: 0.1s background ease-in-out;
@include reduce-motion("transition");
}
.components-panel__body.is-opened > .components-panel__body-title {
margin: -1 * $grid-unit-20;
margin-bottom: 5px;
}
// Hover States
.components-panel__body > .components-panel__body-title:hover {
// Override the default button hover style
background: $gray-100;
border: none;
}
.components-panel__body-toggle.components-button {
position: relative;
padding: $grid-unit-20 $grid-unit-60 $grid-unit-20 $grid-unit-20;
outline: none;
width: 100%;
font-weight: 500;
text-align: left;
color: $gray-900;
border: none;
box-shadow: none;
transition: 0.1s background ease-in-out;
@include reduce-motion("transition");
height: auto;
&:focus {
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
border-radius: 0;
}
.components-panel__arrow {
position: absolute;
right: $grid-unit-20;
top: 50%;
transform: translateY(-50%);
color: $gray-900;
fill: currentColor;
transition: 0.1s color ease-in-out;
@include reduce-motion("transition");
}
// 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__icon {
color: $gray-700;
margin: -2px 0 -2px 6px;
}
.components-panel__body-toggle-icon {
margin-right: -5px;
}
.components-panel__color-title {
float: left;
height: 19px;
}
.components-panel__row {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: $grid-unit-10;
min-height: $button-size;
select {
// Necessary for select to respond to flexbox
min-width: 0;
}
label {
margin-right: $grid-unit-15;
flex-shrink: 0;
max-width: 75%;
}
&:empty,
&:first-of-type {
margin-top: 0;
}
}
.components-panel .circle-picker {
padding-bottom: 20px;
}