File: style.css

package info (click to toggle)
metadata-cleaner 2.5.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,968 kB
  • sloc: python: 1,442; xml: 213; makefile: 3
file content (115 lines) | stat: -rw-r--r-- 1,774 bytes parent folder | download
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
SPDX-FileCopyrightText: Metadata Cleaner contributors
SPDX-License-Identifier: GPL-3.0-or-later
*/

@define-color accent_color #813d9c;
@define-color accent_bg_color @accent_color;
@define-color accent_fg_color #fff;

window.main {
	background: linear-gradient(180deg, @accent_bg_color 0px, @accent_bg_color 20px, @theme_bg_color 20px);
}

window.main headerbar {
	background-color: @accent_bg_color;
	color: @accent_fg_color;
}

button.help {
	transition: padding 0.1s, margin 0.1s, border-radius 0.1s;
}

button.help.small {
	border-radius: 0;
	padding-left: 18px;
	padding-right: 18px;
}

button.help:not(.small) {
	margin: 0 18px 18px;
}

listview.files>row {
	padding: 0;
	border-bottom: 1px solid @borders;
}

listview.files .remove,
listview.files .file {
	border-radius: unset;
	font-weight: unset;
}

listview.files .remove {
	padding: 6px 12px;
}

listview.files separator {
	opacity: 0;
	transition: 0.1s opacity;
}

listview.files>row:hover separator {
	opacity: 1;
	transition: none;
}

listview.metadata {
	background: none;
}

listview.metadata>row {
	margin: 12px 24px;
}

listview.metadata>row:last-child {
	margin-bottom: 24px;
}

row.metadata>box {
	margin: 6px;
	border-spacing: 12px;
}

.toolbar.details {
	background-color: @headerbar_bg_color;
	color: @headerbar_fg_color;
}

.badge {
	border-radius: 11px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-weight: bold;
	font-size: 12px;
}

.badge.flat {
	background: none;
	color: @theme_fg_color;
}

.badge label {
	margin: 0 6px;
}

.badge.metadata {
	background-color: @accent_color;
}

.badge.warning {
	background-color: @warning_color;
}

.badge.error {
	background-color: @error_color;
}

.badge.success {
	background-color: @success_color;
}

.badge label {
	padding: 0 0.4em;
}