pro
1 week ago
_acf-headerbar.scss
1 year ago
_acf-icon-picker.scss
1 year ago
_admin-inputs.scss
1 year ago
_admin-toolbar.scss
1 year ago
_btn.scss
1 year ago
_dark.scss
1 year ago
_edit-field-group.scss
1 year ago
_field-group.scss
1 year ago
_field-picker.scss
1 year ago
_field-type-icons.scss
1 year ago
_fields.scss
1 month ago
_forms.scss
11 months ago
_global.scss
1 year ago
_icons.scss
1 year ago
_input.scss
1 year ago
_list-table.scss
1 year ago
_media.scss
1 year ago
_mixins.scss
1 year ago
_post-types-taxonomies.scss
1 year ago
_postbox.scss
1 year ago
_pro-upgrade.scss
1 year ago
_sub-field-groups.scss
1 year ago
_tools.scss
1 year ago
_typography.scss
1 year ago
_updates.scss
1 year ago
_variables.scss
1 year ago
acf-dark.scss
1 year ago
acf-field-group.scss
7 months ago
acf-global.scss
2 months ago
acf-input.scss
1 month ago
_forms.scss
316 lines
| 1 | /*-------------------------------------------------------------------------------------------- |
| 2 | * |
| 3 | * User |
| 4 | * |
| 5 | *--------------------------------------------------------------------------------------------*/ |
| 6 | |
| 7 | .form-table > tbody { |
| 8 | |
| 9 | /* field */ |
| 10 | > .acf-field { |
| 11 | |
| 12 | /* label */ |
| 13 | > .acf-label { |
| 14 | padding: 20px 10px 20px 0; |
| 15 | width: 210px; |
| 16 | |
| 17 | /* rtl */ |
| 18 | html[dir="rtl"]="rtl""] & { |
| 19 | padding: 20px 0 20px 10px; |
| 20 | } |
| 21 | |
| 22 | label { |
| 23 | font-size: 14px; |
| 24 | color: #23282d; |
| 25 | } |
| 26 | |
| 27 | } |
| 28 | |
| 29 | |
| 30 | /* input */ |
| 31 | > .acf-input { |
| 32 | padding: 15px 10px; |
| 33 | |
| 34 | /* rtl */ |
| 35 | html[dir="rtl"]="rtl""] & { |
| 36 | padding: 15px 10px 15px 5%; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | } |
| 41 | |
| 42 | |
| 43 | /* tab wrap */ |
| 44 | > .acf-tab-wrap td { |
| 45 | padding: 15px 5% 15px 0; |
| 46 | |
| 47 | /* rtl */ |
| 48 | html[dir="rtl"]="rtl""] & { |
| 49 | padding: 15px 0 15px 5%; |
| 50 | } |
| 51 | |
| 52 | } |
| 53 | |
| 54 | |
| 55 | /* misc */ |
| 56 | .form-table th.acf-th { |
| 57 | width: auto; |
| 58 | } |
| 59 | |
| 60 | } |
| 61 | |
| 62 | #your-profile, |
| 63 | #createuser { |
| 64 | |
| 65 | /* override for user css */ |
| 66 | .acf-field input[type="text"]="text""], |
| 67 | .acf-field input[type="password"]="password""], |
| 68 | .acf-field input[type="number"]="number""], |
| 69 | .acf-field input[type="search"]="search""], |
| 70 | .acf-field input[type="email"]="email""], |
| 71 | .acf-field input[type="url"]="url""], |
| 72 | .acf-field select { |
| 73 | max-width: 25em; |
| 74 | } |
| 75 | |
| 76 | .acf-field textarea { |
| 77 | max-width: 500px; |
| 78 | } |
| 79 | |
| 80 | |
| 81 | /* allow sub fields to display correctly */ |
| 82 | .acf-field .acf-field input[type="text"]="text""], |
| 83 | .acf-field .acf-field input[type="password"]="password""], |
| 84 | .acf-field .acf-field input[type="number"]="number""], |
| 85 | .acf-field .acf-field input[type="search"]="search""], |
| 86 | .acf-field .acf-field input[type="email"]="email""], |
| 87 | .acf-field .acf-field input[type="url"]="url""], |
| 88 | .acf-field .acf-field textarea, |
| 89 | .acf-field .acf-field select { |
| 90 | max-width: none; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | #registerform { |
| 95 | |
| 96 | h2 { |
| 97 | margin: 1em 0; |
| 98 | } |
| 99 | |
| 100 | .acf-field { |
| 101 | margin-top: 0; |
| 102 | |
| 103 | .acf-label { |
| 104 | margin-bottom: 0; |
| 105 | |
| 106 | label { |
| 107 | font-weight: normal; |
| 108 | line-height: 1.5; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | /* |
| 113 | .acf-input { |
| 114 | input { |
| 115 | font-size: 24px; |
| 116 | padding: 5px; |
| 117 | height: auto; |
| 118 | } |
| 119 | } |
| 120 | */ |
| 121 | } |
| 122 | |
| 123 | p.submit { |
| 124 | text-align: right; |
| 125 | } |
| 126 | |
| 127 | } |
| 128 | |
| 129 | /*-------------------------------------------------------------------------------------------- |
| 130 | * |
| 131 | * Term |
| 132 | * |
| 133 | *--------------------------------------------------------------------------------------------*/ |
| 134 | |
| 135 | // add term |
| 136 | #acf-term-fields { |
| 137 | padding-right: 5%; |
| 138 | |
| 139 | > .acf-field { |
| 140 | |
| 141 | > .acf-label { |
| 142 | margin: 0; |
| 143 | |
| 144 | label { |
| 145 | font-size: 12px; |
| 146 | font-weight: normal; |
| 147 | } |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | } |
| 152 | |
| 153 | p.submit .spinner, |
| 154 | p.submit .acf-spinner { |
| 155 | vertical-align: top; |
| 156 | float: none; |
| 157 | margin: 4px 4px 0; |
| 158 | } |
| 159 | |
| 160 | |
| 161 | // edit term |
| 162 | #edittag .acf-fields.-left { |
| 163 | |
| 164 | > .acf-field { |
| 165 | padding-left: 220px; |
| 166 | |
| 167 | &:before { |
| 168 | width: 209px; |
| 169 | } |
| 170 | |
| 171 | > .acf-label { |
| 172 | width: 220px; |
| 173 | margin-left: -220px; |
| 174 | padding: 0 10px; |
| 175 | } |
| 176 | |
| 177 | > .acf-input { |
| 178 | padding: 0; |
| 179 | } |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | #edittag > .acf-fields.-left { |
| 184 | width: 96%; |
| 185 | |
| 186 | > .acf-field { |
| 187 | |
| 188 | > .acf-label { |
| 189 | padding-left: 0; |
| 190 | } |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | |
| 195 | /*-------------------------------------------------------------------------------------------- |
| 196 | * |
| 197 | * Comment |
| 198 | * |
| 199 | *--------------------------------------------------------------------------------------------*/ |
| 200 | |
| 201 | .editcomment td:first-child { |
| 202 | white-space: nowrap; |
| 203 | width: 131px; |
| 204 | } |
| 205 | |
| 206 | |
| 207 | /*-------------------------------------------------------------------------------------------- |
| 208 | * |
| 209 | * Widget |
| 210 | * |
| 211 | *--------------------------------------------------------------------------------------------*/ |
| 212 | |
| 213 | #widgets-right .widget .acf-field .description { |
| 214 | padding-left: 0; |
| 215 | padding-right: 0; |
| 216 | } |
| 217 | |
| 218 | .acf-widget-fields { |
| 219 | |
| 220 | > .acf-field { |
| 221 | |
| 222 | .acf-label { |
| 223 | margin-bottom: 5px; |
| 224 | |
| 225 | label { |
| 226 | font-weight: normal; |
| 227 | margin: 0; |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | /*-------------------------------------------------------------------------------------------- |
| 234 | * |
| 235 | * Nav Menu |
| 236 | * |
| 237 | *--------------------------------------------------------------------------------------------*/ |
| 238 | |
| 239 | .acf-menu-settings { |
| 240 | border-top: 1px solid #eee; |
| 241 | margin-top: 2em; |
| 242 | |
| 243 | // seamless |
| 244 | &.-seamless { |
| 245 | border-top: none; |
| 246 | margin-top: 15px; |
| 247 | |
| 248 | > h2 { display: none; } |
| 249 | } |
| 250 | |
| 251 | // Fix relationship conflict. |
| 252 | .list li { |
| 253 | display: block; |
| 254 | margin-bottom: 0; |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | .acf-fields.acf-menu-item-fields { |
| 259 | clear: both; |
| 260 | padding-top: 1px; // Fixes margin overlap. |
| 261 | |
| 262 | > .acf-field { |
| 263 | margin: 5px 0; |
| 264 | padding-right: 10px; |
| 265 | |
| 266 | .acf-label { |
| 267 | margin-bottom: 0; |
| 268 | label { |
| 269 | font-style: italic; |
| 270 | font-weight: normal; |
| 271 | } |
| 272 | } |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | /*--------------------------------------------------------------------------------------------- |
| 277 | * |
| 278 | * Attachment Form (single) |
| 279 | * |
| 280 | *---------------------------------------------------------------------------------------------*/ |
| 281 | |
| 282 | #post .compat-attachment-fields { |
| 283 | |
| 284 | .compat-field-acf-form-data { |
| 285 | display: none; |
| 286 | } |
| 287 | |
| 288 | &, |
| 289 | > tbody, |
| 290 | > tbody > tr, |
| 291 | > tbody > tr > th, |
| 292 | > tbody > tr > td { |
| 293 | display: block; |
| 294 | } |
| 295 | |
| 296 | > tbody > .acf-field { |
| 297 | margin: 15px 0; |
| 298 | |
| 299 | > .acf-label { |
| 300 | margin: 0; |
| 301 | |
| 302 | label { |
| 303 | margin: 0; |
| 304 | padding: 0; |
| 305 | |
| 306 | p { |
| 307 | margin: 0 0 3px !important; |
| 308 | } |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | > .acf-input { |
| 313 | margin: 0; |
| 314 | } |
| 315 | } |
| 316 | } |