mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
98e631a9c7
* Update new logs pane: remove beta icons, add specific surveys * Remove unneeded reset of log entries * Remove unneeded reset of the autocompile linting error flag * Lower compile event sampling rate ahead of prod release * Never send logs UI subvariant when user is getting the existing UI GitOrigin-RevId: ab726761ba372c6806e56fc0cf841099cc30df50
40 lines
684 B
Text
40 lines
684 B
Text
.info-badge,
|
|
.beta-badge {
|
|
display: inline-block;
|
|
width: @line-height-computed * 0.75;
|
|
height: @line-height-computed * 0.75;
|
|
line-height: @line-height-computed * 0.75;
|
|
text-align: center;
|
|
color: #fff;
|
|
|
|
&: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';
|
|
}
|
|
}
|
|
|
|
.info-badge-fade-bg {
|
|
.info-badge;
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.beta-badge {
|
|
background-color: @orange;
|
|
border-radius: @border-radius-base;
|
|
|
|
&::before {
|
|
content: 'β';
|
|
}
|
|
}
|