admin.scss
40 lines
| 1 | .presto-inline-edit { |
| 2 | &__text { |
| 3 | display: inline; |
| 4 | margin: 0; |
| 5 | margin-right: 8px; |
| 6 | } |
| 7 | &__input { |
| 8 | flex-grow: 1; |
| 9 | max-width: 640px; |
| 10 | input { |
| 11 | height: 36px; |
| 12 | } |
| 13 | } |
| 14 | .presto-inline-edit__button { |
| 15 | margin-right: 4px; |
| 16 | } |
| 17 | &__edit { |
| 18 | cursor: pointer; |
| 19 | display: inline-flex; |
| 20 | justify-content: center; |
| 21 | align-items: center; |
| 22 | |
| 23 | width: 28px; |
| 24 | height: 28px; |
| 25 | border-radius: 50%; |
| 26 | border: none; |
| 27 | opacity: 0.5; |
| 28 | color: #fff; |
| 29 | background-color: var(--wp-admin-theme-color); |
| 30 | |
| 31 | &:hover { |
| 32 | opacity: 1; |
| 33 | background-color: var(--wp-admin-theme-color-darker-10); |
| 34 | } |
| 35 | } |
| 36 | &--editing { |
| 37 | align-items: stretch; |
| 38 | } |
| 39 | } |
| 40 |