-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin-style.css
116 lines (97 loc) · 1.83 KB
/
admin-style.css
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
.user-orders-by-role {
max-width: 1200px;
margin: 20px auto;
background: #fff;
padding: 20px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.user-orders-by-role .wp-heading-inline {
display: inline-block;
margin-right: 10px;
}
.user-orders-by-role .page-title-action {
top: -3px;
margin-left: 10px;
position: relative;
}
.user-orders-by-role .page-title-action .dashicons {
font-size: 1.2em;
vertical-align: text-bottom;
margin-right: 5px;
}
.user-orders-controls {
display: flex;
justify-content: space-between;
align-items: center;
margin: 20px 0;
padding: 15px;
background-color: #f0f0f1;
border: 1px solid #ccd0d4;
border-radius: 4px;
}
.filter-form {
display: flex;
align-items: center;
}
#role-select {
margin-right: 10px;
min-width: 200px;
}
.export-form {
margin-left: auto;
}
#export-csv-button {
background-color: #2271b1;
color: #fff;
border-color: #2271b1;
}
#export-csv-button:hover {
background-color: #135e96;
border-color: #135e96;
}
.no-users-message {
margin-top: 20px;
padding: 20px;
background-color: #f0f0f1;
border-left: 4px solid #646970;
box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
}
.no-users-message p {
font-size: 16px;
font-weight: 600;
margin: 0;
}
.wp-list-table {
border: 1px solid #ccd0d4;
box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
margin-top: 20px;
}
.wp-list-table th {
font-weight: 600;
}
.wp-list-table .inactive-user {
background-color: #ffcccc;
}
.change-role-button {
font-size: 13px;
padding: 4px 8px;
}
.tablenav-pages {
float: right;
margin: 1em 0;
}
@media screen and (max-width: 782px) {
.user-orders-controls {
flex-direction: column;
align-items: flex-start;
}
.filter-form,
.export-form {
width: 100%;
margin-bottom: 10px;
}
#role-select {
width: 100%;
margin-bottom: 10px;
}
}