summaryrefslogtreecommitdiffstats
path: root/web_src/css/repo/linebutton.css
blob: 79be5a7a9e76fba2006019bd9db2e110114b2d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.code-view .lines-num:hover {
  color: var(--color-text-dark) !important;
}

.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);
}