PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / trunk
Secure Custom Fields vtrunk
6.9.1 6.9.0 6.8.9 6.8.7 6.8.8 6.8.6 6.8.4 6.8.5 trunk 6.4.0-beta1 6.4.0-beta2 6.4.1 6.4.1-beta3 6.4.1-beta4 6.4.1-beta5 6.4.1-beta6 6.4.1-beta7 6.4.2 6.5.0 6.5.1 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6 6.5.7 6.6.0 6.7.0 6.7.1 6.8.0 6.8.1 6.8.2 6.8.3
secure-custom-fields / assets / src / sass / _input.scss
secure-custom-fields / assets / src / sass Last commit date
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
_input.scss
56 lines
1 // Temp remove.
2 .acf-temp-remove {
3 position: relative;
4 opacity: 1;
5 -webkit-transition: all 0.25s ease;
6 -moz-transition: all 0.25s ease;
7 -o-transition: all 0.25s ease;
8 transition: all 0.25s ease;
9 overflow: hidden;
10
11 /* overlay prevents hover */
12 &:after {
13 display: block;
14 content: "";
15 position: absolute;
16 top: 0;
17 left: 0;
18 right: 0;
19 bottom: 0;
20 z-index: 99;
21 }
22 }
23
24 // Conditional Logic.
25 .hidden-by-conditional-logic {
26 display: none !important;
27
28 // Table cells may "appear empty".
29 &.appear-empty {
30 display: table-cell !important;
31 .acf-input {
32 display: none !important;
33 }
34 }
35 }
36
37 // Compat support for "Tabify" plugin.
38 .acf-postbox.acf-hidden {
39 display: none !important;
40 }
41
42 // Focus Attention.
43 .acf-attention {
44 transition: border 0.250s ease-out;
45 &.-focused {
46 border: #23282d solid 1px !important;
47 transition: none;
48 }
49 }
50 tr.acf-attention {
51 transition: box-shadow 0.250s ease-out;
52 position: relative;
53 &.-focused {
54 box-shadow: #23282d 0 0 0px 1px !important;
55 }
56 }