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 |