PluginProbe
Advanced Custom Fields (ACF®) / 3.1.5
Advanced Custom Fields (ACF®) v3.1.5
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 / global.css
global.css
199 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*--------------------------------------------------------------------------------------------
2 *
3 * Global
4 *
5 *--------------------------------------------------------------------------------------------*/
6
7 .hl {
8 display: block;
9 list-style: none outside none;
10 margin: 0;
11 overflow: hidden;
12 padding: 0;
13 position: relative;
14 }
15
16 .hl li {
17 display: block;
18 float: left;
19 margin: 0;
20 padding: 0;
21 }
22
23 #icon-acf {
24 background: url(../images/acf-icon-32.png) 0 0 no-repeat !important;
25 }
26
27 /*--------------------------------------------------------------------------------------------
28 *
29 * WP Box
30 *
31 *--------------------------------------------------------------------------------------------*/
32
33 .wp-box {
34 background: none repeat scroll 0 0 #FFFFFF;
35 border: 1px solid #E1E1E1;
36 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
37 position: relative;
38 }
39 .wp-box .inner {
40 padding: 10px;
41 }
42 .wp-box .footer {
43 background: none repeat scroll 0 0 #F5F5F5;
44 border-top: 1px solid #E1E1E1;
45 overflow: hidden;
46 padding: 10px;
47 position: relative;
48 }
49 .wp-box .footer ul.left {
50 float: left;
51 }
52 .wp-box .footer ul li {
53 margin: 0;
54 padding: 0;
55 }
56 .wp-box .footer ul.left li {
57 margin-right: 10px;
58 }
59 .wp-box .footer ul.right {
60 float: right;
61 }
62 .wp-box .footer ul.right li {
63 margin-left: 10px;
64 }
65
66 .wp-box h2 {
67 margin: .25em 0 .75em;
68 padding: 0;
69 }
70
71 .wp-box h3 {
72 margin: 1.5em 0 0;
73 }
74
75 .wp-box p {
76 margin-top: 0.5em;
77 }
78
79 .wp-box-half.left {
80 width: 50%;
81 float: left;
82 }
83
84 .wp-box-half.right {
85 width: 50%;
86 height: 100%;
87 right: 0;
88 position: absolute;
89 background: none repeat scroll 0 0 #F9F9F9;
90 border-left: 1px solid #E1E1E1;
91 }
92
93 .wp-box-half.right .inner {
94
95 }
96
97 .wp-box select {
98 width: 99%;
99 height: auto !important;
100 }
101
102
103 /*---------------------------------------------------------------------------------------------
104 Table
105 ---------------------------------------------------------------------------------------------*/
106 table.acf_input {
107 border: 0 none;
108 }
109
110 table.acf_input tbody tr td {
111 padding: 10px;
112 }
113
114 table.acf_input tr.field_save {
115
116 }
117
118 table.acf_input tbody tr:last-child td {
119 border-bottom: 0 none;
120 }
121
122 table.acf_input tbody tr td.label {
123 width: 24%;
124 vertical-align: top;
125 border-right: #ebebeb solid 1px;
126 }
127
128 table.acf_input tbody tr td.label label{
129 display: block;
130 font-size: 12px;
131 font-weight: bold;
132 padding: 0;
133 margin: 0;
134 color: #333;
135
136 }
137
138 table.acf_input tbody tr td.label label span.required {
139 color: #f00;
140 display: inline;
141 margin-right: 5px;
142 }
143
144
145 table.acf_input tbody tr td.label p{
146 display: block;
147 font-size: 10px;
148 padding: 6px 0 !important;
149 margin: 0 !important;
150 font-style: normal;
151 line-height: 16px;
152 color: #666;
153 }
154
155 table.acf_input input[type=text],
156 table.acf_input textarea,
157 table.acf_input select{
158 width: 99.95%;
159 padding: 5px;
160 outline: none;
161 }
162
163 table.acf_input select {
164 padding: 2px;
165 }
166
167 table.acf_input input[type=text]:focus,
168 table.acf_input textarea:focus,
169 table.acf_input select:focus {
170 border-color:#98B6CB;
171 }
172
173
174 ul.radio_list {
175 position: relative;
176 overflow: hidden;
177 display: block;
178 padding: 3px 0;
179 margin: 0;
180 }
181
182 ul.radio_list input[type="radio"] {
183 margin-right: 5px;
184 }
185
186 ul.radio_list.horizontal li {
187 float: left;
188 margin-right: 20px;
189 }
190
191 ul.checkbox_list {
192 background: transparent !important;
193 margin: 0;
194 }
195
196 ul.checkbox_list input[type="checkbox"] {
197 margin-right: 5px;
198 }
199