-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
37 lines (31 loc) · 686 Bytes
/
style.css
File metadata and controls
37 lines (31 loc) · 686 Bytes
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
/**
* CSS for admin-specific functionality
*
* @package BrevWoo
* @link https://github.com/AlecRust/brevwoo
*/
.wp-core-ui select.brevwoo-select-lists-input {
width: 100%;
cursor: default;
resize: vertical;
}
.wp-core-ui select.brevwoo-select-lists-input:hover {
color: #2c3338;
}
.wp-core-ui select.brevwoo-select-lists-input optgroup option {
padding-left: 10px;
}
.form-table td .brevwoo-select-lists-help-note {
display: none;
}
@media (min-width: 783px) {
.wp-core-ui select.brevwoo-select-lists-input {
max-width: 350px;
min-height: 150px;
}
.form-table td .brevwoo-select-lists-help-note {
display: block;
font-size: 13px;
margin-top: 10px;
}
}