File size: 779 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
.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;
}
|