mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 18:14:15 +01:00
26 lines
633 B
CSS
26 lines
633 B
CSS
.code-view .lines-num:hover,
|
|
.file-preview .lines-num:hover {
|
|
color: var(--color-text-dark) !important;
|
|
}
|
|
|
|
.code-line-menu {
|
|
width: auto !important;
|
|
border: none !important; /* the border is provided by tippy, not using the `.ui.menu` border */
|
|
}
|
|
|
|
.code-line-button {
|
|
background-color: var(--color-menu);
|
|
color: var(--color-text-light);
|
|
border: 1px solid var(--color-secondary);
|
|
border-radius: var(--border-radius);
|
|
padding: 1px 10px;
|
|
position: absolute;
|
|
font-family: var(--fonts-regular);
|
|
left: 0;
|
|
transform: translateX(-50%);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.code-line-button:hover {
|
|
color: var(--color-primary);
|
|
}
|