| .post-edit-button { | |
| display: inline-flex; | |
| align-items: center; | |
| box-sizing: border-box; | |
| color: var(--color-text-subtle); | |
| cursor: pointer; | |
| list-style-type: none; | |
| position: relative; | |
| &:hover, | |
| &:focus, | |
| &:active { | |
| .gridicon { | |
| fill: var(--color-accent); | |
| } | |
| .post-edit-button__label { | |
| color: var(--color-accent); | |
| } | |
| } | |
| .gridicon { | |
| fill: var(--color-neutral-light); | |
| } | |
| .post-edit-button__label { | |
| color: var(--color-text-subtle); | |
| @include breakpoint-deprecated( "<480px" ) { | |
| display: none; | |
| } | |
| } | |
| &.tooltip { | |
| @include tooltip-base; | |
| @include tooltip-top; | |
| } | |
| } | |
| .post-edit-button__label { | |
| font-size: 13px; | |
| margin-left: 4px; | |
| @include breakpoint-deprecated( "<480px" ) { | |
| display: none; | |
| } | |
| } | |
| .post-edit-button__icon { | |
| position: relative; | |
| } | |