blob: 29094b8d2ad9e4dd6619978d2b40dfc3432f458a (
plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
div#content {
display: flex;
align-items: start;
height: 100%;
}
div#content > img {
max-width: 60%;
height: 100%;
object-fit: contain;
}
div#metadata {
margin-left: 15px;
width: 100%;
}
div#metadata > div {
display: none;
}
div#metadata > div.selected {
display: inherit !important;
}
div#metadata-header {
display: inherit !important;
border-bottom: 1px solid white;
}
div#metadata-header > a {
display: inline-block;
padding: 10px 10px 9px 10px;
}
div#metadata-header > a.selected {
border-bottom: 4px solid white;
padding-bottom: 5px;
}
div#metadata-header > a:hover {
background: rgba(255, 255, 255, 0.4);
filter: none;
}
div#metadata-fileinfo > table th {
font-size: 8pt;
}
div#metadata-fileinfo > table td {
font-family: 'Lucida Console';
font-size: 8pt;
}
div#metadata-fileinfo button#delete-button {
background: #ff4848;
}
div#metadata-tags > table td {
font-size: 8pt;
}
div.button-container {
display: flex;
justify-content: flex-end;
}
div#tag-dialog {
max-height: 400px;
}
div#tag-dialog div#tag-definitions {
overflow-y: auto;
user-select: none;
}
div#tag-dialog div#tag-definitions label {
background: #555;
border-radius: 10px;
display: inline-block;
font-size: 10pt;
margin: 0 5px 5px 0;
padding: 5px 7px 5px 7px;
transition: background 0.1s linear;
}
div#tag-dialog div#tag-definitions label:hover {
background: #777;
}
div#tag-dialog div#tag-definitions input:checked + label {
background: #aaa;
}
div#tag-dialog div#tag-definitions input {
display: none;
}
|