PluginProbe
Advanced Custom Fields (ACF®) / 3.5.8
Advanced Custom Fields (ACF®) v3.5.8
6.8.9 6.8.8 6.8.7 6.8.6 6.8.5 6.8.4 6.8.3 6.8.2 6.8.1 5.8.5 5.8.6 5.8.7 5.8.8 5.8.9 5.9.0 5.9.1 5.9.2 5.9.3 5.9.4 5.9.5 5.9.6 5.9.7 5.9.8 5.9.9 6.0.0 All 230 releases
advanced-custom-fields / css / acf.css

acf.css in Advanced Custom Fields (ACF®) 3.5.8, at css/acf.css

190 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*--------------------------------------------------------------------------------------------
2 *
3 * ACF manage field groups
4 *
5 *--------------------------------------------------------------------------------------------*/
6
7 #icon-edit {
8 background: url(../images/sprite.png) 0 0 no-repeat;
9 }
10
11 #acf-cols {
12 position: relative; clear: both;
13 }
14
15 #acf-col-left {
16 margin-right: 300px;
17 }
18
19 #acf-col-left .tablenav,
20 #acf-col-left p.search-box {
21 display: none;
22 }
23
24 #acf-col-left .wp-list-table .check-column {
25 padding-left: 5px;
26 }
27
28 #acf-col-left .wp-list-table th#fields {
29 width: 25%;
30 }
31
32 #acf-col-left .tablenav.bottom {
33 display: block;
34 }
35
36 #acf-col-left form {
37 position: relative;
38 float: left;
39 width: 100%;
40 }
41
42 #acf-col-right {
43 float: right;
44 width: 281px;
45 padding-top: 37px !important;
46 }
47
48 h3.h2 {
49 font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;
50 font-size: 23px;
51 line-height: 29px;
52 padding: 9px 15px 4px 0;
53 margin: 0;
54 font-weight: normal;
55 }
56
57 h3.h2 span {
58 color: #ccc;
59 }
60
61 #acf-col-left .wp-list-table {
62 border-radius: 0;
63 border: 1px solid #E1E1E1;
64 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
65 }
66
67
68
69 table.acf_activate {
70 border: 0 none;
71 border-collapse:separate;
72 border-spacing:0;
73 vertical-align:top;
74 width: 100%;
75 background: #FEFEFE;
76 border-radius: 0;
77 }
78
79 table.acf_activate tr:nth-child(even) {
80 background: #F9F9F9
81 }
82
83 table.acf_activate tr:nth-child(odd) {
84 background: transparent;
85 }
86
87 table.acf_activate tr.field_save {
88 background: #EAF2FA;
89 }
90
91 table.acf_activate tr td,
92 table.acf_activate tr th {
93 padding: 8px;
94 }
95
96 table.acf_activate tr:last-child td {
97 border-bottom: 0 none;
98 }
99
100 table.acf_activate tr td:last-child {
101 border-right: 0 none;
102 }
103
104 table.acf_activate input[type="text"] {
105 padding: 7px;
106 width: 200px;
107 }
108
109 table.acf_activate input[type="submit"] {
110 margin-left: 5px;
111 margin-right: 5px;
112 }
113
114 .acf-form-table {
115 max-width: 1100px;
116 }
117
118 .acf-form-table > tbody > tr > th,
119 .acf-form-table > tbody > tr > td {
120 padding-bottom: 30px;
121 }
122
123 .acf-export-form {
124 display: block;
125 }
126
127 .acf-export-form select {
128 width: 100%;
129 }
130
131 body.custom-fields_page_acf-settings .wp-pointer-arrow {
132 left: 15px !important;
133 }
134
135 .wp-pointer-content ol {
136 padding: 0 15px;
137 margin-left: 1.5em;
138 }
139
140 .acf-form-table pre,
141 .acf-form-table .pre {
142 padding: 10px;
143 margin: 0;
144 font-family: Monaco,"Andale Mono","Courier New",monospace !important;
145 resize: none;
146 height: auto;
147 width: 100%;
148 padding: 0;
149 border: 0 none;
150 border-radius: 0;
151 }
152
153 .acf-form-table select option {
154 padding: 3px;
155 }
156
157
158 /*--------------------------------------------------------------------------
159 *
160 * Columns
161 *
162 *-------------------------------------------------------------------------*/
163
164 .row-actions .inline {
165 display: none;
166 }
167
168
169 /*--------------------------------------------------------------------------
170 *
171 * Retina
172 *
173 *-------------------------------------------------------------------------*/
174
175 @media
176 only screen and (-webkit-min-device-pixel-ratio: 2),
177 only screen and ( min--moz-device-pixel-ratio: 2),
178 only screen and ( -o-min-device-pixel-ratio: 2/1),
179 only screen and ( min-device-pixel-ratio: 2),
180 only screen and ( min-resolution: 192dpi),
181 only screen and ( min-resolution: 2dppx) {
182
183 #icon-edit,
184 #icon-acf {
185 background-image: url(../images/sprite@2x.png);
186 background-size: 100px 600px;
187 }
188
189
190 }