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 / _pro-upgrade.scss
secure-custom-fields / assets / src / sass Last commit date
pro 3 weeks 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 2 months 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 8 months ago acf-global.scss 2 months ago acf-input.scss 2 months ago
_pro-upgrade.scss
60 lines
1 /*--------------------------------------------------------------------------------------------
2 *
3 * Header pro upgrade button
4 *
5 *--------------------------------------------------------------------------------------------*/
6 .acf-admin-toolbar {
7
8 a.acf-admin-toolbar-upgrade-btn {
9 display: inline-flex;
10 align-items: center;
11 align-self: stretch;
12 padding: {
13 top: 0;
14 right: 16px;
15 bottom: 0;
16 left: 16px;
17 };
18 background: $gradient-pro;
19 box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
20 border-radius: $radius-md;
21 text-decoration: none;
22
23 @media screen and (max-width: 768px) {
24 display: none;
25 }
26
27 &:focus {
28 border: none;
29 outline: none;
30 box-shadow: none;
31 }
32
33 p {
34 margin: 0;
35 padding: {
36 top: 8px;
37 bottom: 8px;
38 }
39
40 @extend .p4;
41 font-weight: 400;
42 text-transform: none;
43 color: #fff;
44 }
45
46 .acf-icon {
47 $icon-size: 18px;
48 width: $icon-size;
49 height: $icon-size;
50 margin: {
51 right: 6px;
52 left: -2px;
53 };
54 background-color: $gray-50;
55 }
56
57 }
58
59 }
60