mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
27 lines
543 B
SCSS
27 lines
543 B
SCSS
.LogRow {
|
|
&:hover {
|
|
background: var(--logRowHoverBackground);
|
|
}
|
|
}
|
|
|
|
.overlay {
|
|
--overlay-bg: #8cc474b8;
|
|
--overlay-active-bg: orange;
|
|
|
|
border-radius: 2px;
|
|
-webkit-font-smoothing: auto;
|
|
background-color: var(--overlay-bg);
|
|
|
|
span {
|
|
background-color: var(--overlay-bg)!important; // Rewriting inline styles from AnsiUp library
|
|
}
|
|
|
|
&.active {
|
|
background-color: var(--overlay-active-bg);
|
|
|
|
span {
|
|
background-color: var(--overlay-active-bg)!important; // Rewriting inline styles from AnsiUp library
|
|
}
|
|
}
|
|
}
|