1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-07-07 13:34:20 -04:00
gitea/web_src/css/repo/linebutton.css

19 lines
423 B
CSS
Raw Normal View History

.code-view .lines-num:hover {
color: var(--color-text-dark) !important;
}
.code-line-button {
border: 1px solid var(--color-secondary);
border-radius: var(--border-radius);
2024-03-24 08:14:03 -04:00
padding: 1px 4px !important;
position: absolute;
font-family: var(--fonts-regular);
left: 0;
2024-03-24 08:14:03 -04:00
transform: translateX(calc(-50% + 6px));
cursor: pointer;
}
.code-line-button:hover {
2024-03-24 08:14:03 -04:00
background: var(--color-secondary) !important;
}