PluginProbe
Edit Flow / trunk
Edit Flow vtrunk
0.11.1 0.11.0 0.7.2 0.7.3 0.7.4 0.7.5 0.7.6 0.8 0.8.1 0.8.2 0.9 0.9.1 0.9.2 0.9.3 0.9.4 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9 trunk 0.1.5 0.10.0 0.10.1 0.10.2 All 44 releases
edit-flow / modules / settings / lib / settings.css

settings.css in Edit Flow trunk, at modules/settings/lib/settings.css

189 lines 3.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .float-right {
2 float:right;
3 }
4
5 .float-left {
6 float: left;
7 }
8
9 .clear-left {
10 clear: left;
11 }
12
13 .clear-right {
14 clear: right;
15 }
16
17 .clear-both {
18 clear: both;
19 }
20
21 /* Feature cards grid layout */
22 .edit-flow-modules {
23 display: grid;
24 grid-template-columns: repeat(4, 1fr);
25 gap: 15px;
26 margin-top: 20px;
27 }
28
29 /* Responsive grid for smaller screens */
30 @media screen and (max-width: 1400px) {
31 .edit-flow-modules {
32 grid-template-columns: repeat(3, 1fr);
33 }
34 }
35
36 @media screen and (max-width: 1100px) {
37 .edit-flow-modules {
38 grid-template-columns: repeat(2, 1fr);
39 }
40 }
41
42 @media screen and (max-width: 782px) {
43 .edit-flow-modules {
44 grid-template-columns: 1fr;
45 }
46 }
47
48 .edit-flow-modules .edit-flow-module {
49 min-height: 180px;
50 position: relative;
51 border: 1px solid #c3c4c7;
52 padding: 15px;
53 background-color: #fff;
54 border-radius: 4px;
55 }
56
57 .edit-flow-modules .edit-flow-module p {
58 font-size: 14px;
59 color: #3c434a;
60 line-height: 1.6;
61 }
62
63 .edit-flow-modules .edit-flow-module h4 {
64 color: #1d2327;
65 font-size: 16px;
66 font-weight: 600;
67 line-height: 1.4;
68 margin: 0 0 8px 0;
69 padding: 0;
70 }
71
72 .edit-flow-modules .edit-flow-module .edit-flow-module-actions {
73 position: absolute;
74 bottom: 15px;
75 left: 15px;
76 right: 15px;
77 display: flex;
78 justify-content: flex-end;
79 align-items: center;
80 gap: 12px;
81 }
82
83 /* Configure links as regular links instead of buttons */
84 .edit-flow-modules .edit-flow-module a.configure-edit-flow-module {
85 color: #2271b1;
86 text-decoration: none;
87 font-size: 13px;
88 margin-right: auto;
89 }
90
91 .edit-flow-modules .edit-flow-module a.configure-edit-flow-module:hover {
92 color: #135e96;
93 text-decoration: underline;
94 }
95
96 /* Enable/Disable buttons on the right */
97 .edit-flow-modules .edit-flow-module .enable-disable-edit-flow-module {
98 flex-shrink: 0;
99 }
100
101 .edit-flow-admin .inline-edit-row fieldset label span.title {
102 width: 6em;
103 }
104
105 .edit-flow-admin .inline-edit-row fieldset label span.input-text-wrap {
106 margin-left: 6em;
107 }
108
109 .edit-flow-admin .explanation,
110 .edit-flow-admin .explanation p {
111 font-size: 16px;
112 line-height: 22px;
113 }
114
115 .edit-flow-admin .explanation {
116 margin-bottom: 1em;
117 }
118
119 .edit-flow-admin .explanation p {
120 margin: 0.5em 0;
121 }
122
123 .edit-flow-admin .tablenav {
124 display: none;
125 }
126
127 /* Display drag handles for the cursor on sortable list tables for our custom taxonomies */
128 .edit-flow-admin table.wp-list-table tbody.ui-sortable tr.term-static {
129 cursor: move;
130 }
131
132 .edit-flow-admin table.wp-list-table tbody.ui-sortable tr.ui-sortable-helper td,
133 .edit-flow-admin table.wp-list-table tbody.ui-sortable tr.ui-sortable-helper .row-actions {
134 visibility: hidden;
135 }
136
137 .edit-flow-admin table.wp-list-table tbody.ui-sortable tr.ui-sortable-helper {
138 border: 1px solid #DFDFDF;
139 }
140
141 .edit-flow-admin table.wp-list-table tbody.ui-sortable tr.ui-sortable-helper td.column-name {
142 visibility: visible;
143 border-bottom: none;
144 }
145
146 /* Display disabled inputs with a very light gray background */
147 .edit-flow-admin input[disabled] {
148 background-color: #eee;
149 }
150
151 .edit-flow-modules .edit-flow-module input.button,
152 .edit-flow-modules .edit-flow-module a.button {
153 font-weight: normal;
154 margin: 0;
155 }
156
157 /* Module specific image styles */
158
159 .button-inline-block {
160 display: inline-block;
161 }
162
163 h3.nav-tab-wrapper {
164 margin-top: 0;
165 }
166
167 .form-wrap .form-field {
168 margin: 0;
169 padding-top: 3px;
170 padding-bottom: 3px;
171 padding-left: 0;
172 padding-right: 0;
173 }
174
175 .form-error p {
176 font-weight:bold;
177 color: #CC0000;
178 }
179
180 .form-wrap p.submit a {
181 font-style: normal;
182 }
183
184 /* Admin Menu Icon */
185 #adminmenu .toplevel_page_ef-settings .wp-menu-image img {
186 width: 16px;
187 height: 16px;
188 }
189