File size: 1,133 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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | @import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
.retention-setting-info-tooltip {
line-height: normal;
&__tooltip.tooltip.popover {
&.is-right .popover__arrow {
border-right-color: #fff;
}
&.is-top-right .popover__arrow {
border-top-color: #fff;
}
&.is-bottom-right .popover__arrow {
border-bottom-color: #fff;
}
.popover__inner {
padding: 16px;
color: var(--studio-gray-70);
background: #fff;
border-radius: 2px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
p {
padding-right: 24px;
font-size: 0.875rem;
color: var(--studio-gray-60);
margin: 0;
}
hr {
margin-bottom: 0.25rem;
}
a {
font-size: 0.875rem;
}
}
@include break-mobile() {
max-width: 270px;
}
}
&__toggle-tooltip {
vertical-align: middle;
&.button.is-borderless {
padding: 0;
height: 20px;
.gridicon {
top: 0;
color: var(--studio-gray-60);
}
}
}
&__close-tooltip {
position: absolute;
right: 16px;
top: 16px;
color: var(--studio-gray-40);
&.button {
height: 18px;
padding: 0;
}
}
}
|