2021-01-07 09:23:02 -05:00
|
|
|
.info-badge,
|
|
|
|
.beta-badge {
|
2021-01-21 07:21:22 -05:00
|
|
|
display: inline-block;
|
2021-01-07 09:23:02 -05:00
|
|
|
width: @line-height-computed * 0.75;
|
|
|
|
height: @line-height-computed * 0.75;
|
2021-12-02 10:19:04 -05:00
|
|
|
line-height: @font-size-small;
|
|
|
|
font-size: @line-height-computed * 0.75;
|
2021-01-07 09:23:02 -05:00
|
|
|
text-align: center;
|
|
|
|
color: #fff;
|
|
|
|
|
2021-12-02 10:19:04 -05:00
|
|
|
&::before {
|
|
|
|
line-height: @font-size-small;
|
|
|
|
font-size: @font-size-small;
|
|
|
|
}
|
|
|
|
|
2021-01-07 09:23:02 -05:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.info-badge {
|
|
|
|
background-color: @info-badge-bg;
|
|
|
|
border-radius: @line-height-computed * 0.75;
|
|
|
|
font-family: @font-family-serif;
|
|
|
|
font-style: italic;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: 'i';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-12 05:23:25 -04:00
|
|
|
.info-badge-fade-bg {
|
|
|
|
.info-badge;
|
|
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
|
|
}
|
|
|
|
|
2021-01-07 09:23:02 -05:00
|
|
|
.beta-badge {
|
|
|
|
background-color: @orange;
|
|
|
|
border-radius: @border-radius-base;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: 'β';
|
|
|
|
}
|
|
|
|
}
|
2022-02-21 06:16:49 -05:00
|
|
|
|
|
|
|
.tooltip-wide .tooltip-inner {
|
|
|
|
min-width: 275px;
|
|
|
|
}
|