mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-15 10:04:07 -08:00
6999e8063f
Signed-off-by: Julius Volz <[email protected]>
41 lines
945 B
CSS
41 lines
945 B
CSS
.control {
|
|
display: block;
|
|
padding: var(--mantine-spacing-xs) var(--mantine-spacing-md);
|
|
border-radius: var(--mantine-radius-md);
|
|
font-weight: 500;
|
|
|
|
@mixin hover {
|
|
background-color: var(--mantine-color-gray-8);
|
|
}
|
|
}
|
|
|
|
.link {
|
|
display: block;
|
|
line-height: 1;
|
|
padding: rem(8px) rem(12px);
|
|
border-radius: var(--mantine-radius-sm);
|
|
text-decoration: none;
|
|
color: var(--mantine-color-gray-0);
|
|
font-size: var(--mantine-font-size-sm);
|
|
font-weight: 500;
|
|
background-color: transparent;
|
|
|
|
@mixin hover {
|
|
background-color: var(--mantine-color-gray-6);
|
|
color: var(--mantine-color-gray-0);
|
|
}
|
|
|
|
[data-mantine-color-scheme] &[aria-current="page"] {
|
|
background-color: var(--mantine-color-blue-filled);
|
|
color: var(--mantine-color-white);
|
|
}
|
|
}
|
|
|
|
/* Font used for autocompletion item icons. */
|
|
@font-face {
|
|
font-family: "codicon";
|
|
src:
|
|
local("codicon"),
|
|
url(./fonts/codicon.ttf) format("truetype");
|
|
}
|