PluginProbe
WP Ultimate Post Grid / 3.3.0
WP Ultimate Post Grid v3.3.0
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / assets / css / admin / manage / table.scss

table.scss in WP Ultimate Post Grid 3.3.0, at assets/css/admin/manage/table.scss

78 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wpupg-admin-table-totals {
2 font-style: italic;
3 }
4
5 .ReactTable.wpupg-admin-table {
6 border-color: #23282d;
7 border-radius: 4px;
8
9 .rt-thead,
10 .pagination-bottom {
11 background-color: #23282d;
12 color: white;
13 z-index: 3;
14 }
15
16 .rt-thead {
17 &.-header {
18 box-shadow: none;
19 }
20
21 .rt-th {
22 font-weight: 500;
23
24 &.wpupg-admin-table-help-text {
25 font-weight: 300;
26 font-size: 12px;
27 text-align: left;
28 display: flex;
29 align-items: center;
30 }
31 }
32
33 .rt-th.-sort-asc,
34 .rt-td.-sort-asc {
35 box-shadow: inset 0 4px 0 0 #0073aa;
36 background-color: #32373c;
37 }
38
39 .rt-th.-sort-desc,
40 .rt-td.-sort-desc {
41 box-shadow: inset 0 -4px 0 0 #0073aa;
42 background-color: #32373c;
43 }
44 }
45
46 .wpupg-admin-table-checkbox-container {
47 font-size: 0;
48 display: flex;
49 align-items: center;
50 justify-content: center;
51
52 input[type=checkbox]=checkbox] {
53 -webkit-appearance: checkbox;
54 appearance: checkbox;
55 margin-top: 2px;
56
57 &:before {
58 display: none;
59 }
60 }
61 }
62
63 .rt-td {
64 display: flex;
65 align-items: center;
66
67 overflow-wrap: break-word;
68 word-break: break-all;
69 white-space: normal
70 }
71
72 .pagination-bottom {
73 .-btn {
74 color: white;
75 background: rgba(255,255,255,0.1);
76 }
77 }
78 }