File: style.css

package info (click to toggle)
plattenalbum 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,136 kB
  • sloc: python: 2,572; xml: 62; makefile: 2
file content (53 lines) | stat: -rw-r--r-- 877 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
.cover {
  background-color: var(--window-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 9px;
}

.albums-view > child {
  border-radius: 15px;
}

.toolbar-text {
  margin-top: -6px;
  margin-bottom: -6px;
  min-height: 12px;
}

.playlist {
  background-color: transparent;
  padding: 6px;
}

.playlist > row {
  border-radius: 9px;
  min-height: 48px;
}

.playlist > row > box {
  margin: 0px 9px;
  border-spacing: 6px;
}

.playlist > row > box > box{
  border-spacing: 3px;
}

.drop-row {
  border: 2px solid var(--accent-bg-color);
  padding: 0px;
}

.no-drop-highlight:drop(active) {
  box-shadow: unset;
}

@media (prefers-contrast: more) {
  .playlist > row:hover {
    box-shadow: inset 0 0 0 1px var(--border-color);
  }

  .playlist > row:selected {
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-color) 60%, transparent);
  }
}