PluginProbe
WP Ultimate Post Grid / 4.1.1
WP Ultimate Post Grid v4.1.1
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 / app.scss

app.scss in WP Ultimate Post Grid 4.1.1, at assets/css/admin/manage/app.scss

106 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .toplevel_page_wpultimatepostgrid {
2 #update-nag,
3 .update-nag,
4 .updated,
5 .error,
6 .is-dismissible {
7 display: none;
8 }
9 }
10
11 #wpupg-admin-manage-content {
12 .wpupg-admin-manage-header {
13 display: flex;
14 flex-wrap: wrap-reverse;
15 justify-content: space-between;
16 align-items: center;
17 margin-bottom: 15px;
18
19 .wpupg-admin-manage-header-buttons {
20 display: flex;
21 align-items: center;
22 margin-bottom: 10px;
23
24 .button:not(.button-primary) {
25 margin-right: 10px;
26 }
27 }
28 }
29
30 .wpupg-admin-manage-page {
31 .wpupg-admin-manage-table-container {
32 .wpupg-admin-manage-table {
33 height: calc(100vh - 50px);
34
35 .wpupg-admin-manage-actions {
36 width: 100%;
37 display: flex;
38 justify-content: space-evenly;
39 align-items: center;
40 }
41
42 .wpupg-admin-manage-text-filter {
43 width: 100%;
44 }
45 }
46 }
47 }
48
49 .wpupg-admin-manage-requirement {
50 margin: 0 auto;
51 text-align: center;
52
53 div {
54 font-weight: bold;
55 }
56 }
57 }
58
59 @media screen and (min-width: 782px) {
60 #wpupg-admin-manage-content {
61 .wpupg-admin-manage-header {
62 flex-wrap: nowrap;
63 .wpupg-admin-manage-header-buttons {
64 margin-bottom: 0;
65 }
66 }
67 }
68 }
69
70 @media screen and (min-height: 768px) {
71 #wpupg-admin-manage {
72 height: calc(100vh - 65px);
73 display: flex;
74 flex-direction: column;
75
76 #wpupg-admin-manage-content {
77 flex: 1;
78
79 .wpupg-admin-manage-page {
80 height: 100%;
81 display: flex;
82 flex-direction: column;
83
84 .wpupg-admin-manage-table-container {
85 flex: 1;
86 display: flex;
87 flex-direction: column;
88
89 .wpupg-admin-manage-table-inner {
90 flex: 1;
91 position: relative;
92
93 .wpupg-admin-manage-table {
94 position: absolute;
95 top: 0;
96 bottom: 0;
97 left: 0;
98 right: 0;
99 height: 100%;
100 }
101 }
102 }
103 }
104 }
105 }
106 }