mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 13:01:15 +00:00
2e744dc991
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2669 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
20 lines
455 B
CSS
20 lines
455 B
CSS
.code-view .lines-num:hover,
|
|
.file-preview .lines-num:hover {
|
|
color: var(--color-text-dark) !important;
|
|
}
|
|
|
|
.code-line-button {
|
|
border: 1px solid var(--color-secondary);
|
|
border-radius: var(--border-radius);
|
|
padding: 1px 4px !important;
|
|
position: absolute;
|
|
font-family: var(--fonts-regular);
|
|
left: 0;
|
|
transform: translateX(calc(-50% + 6px));
|
|
cursor: pointer;
|
|
}
|
|
|
|
.code-line-button:hover {
|
|
background: var(--color-secondary) !important;
|
|
}
|