File size: 1,073 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 54 |
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
.plugin-common-actions__all-actions {
vertical-align: middle;
display: flex;
color: var(--studio-gray-40);
margin: 0 0.1em;
@include break-large() {
display: inline-flex;
height: 100%;
}
}
a.plugin-common-actions__menu-item {
margin: 0 -1px;
border-style: solid;
border-color: var(--studio-gray-5);
border-width: 0 0 1px;
font-size: 0.875rem;
height: 40px;
box-sizing: border-box;
color: var(--studio-black);
display: flex;
align-items: center;
padding: 0 16px;
min-width: 200px;
&:last-child {
margin-block-end: 5px;
border-bottom-width: 0;
}
&:first-child {
margin-block-start: 5px;
}
&:hover,
&:focus {
border-style: solid;
border-color: var(--studio-gray-5);
border-width: 0 0 1px;
background: var(--studio-black);
cursor: pointer;
color: var(--studio-white);
&:last-child {
border-bottom-width: 0;
}
}
svg.gridicon {
vertical-align: middle;
position: absolute;
inset-block-start: unset;
inset-inline-end: 10px;
}
}
|