Welcome to mirror list, hosted at ThFree Co, Russian Federation.

apporder.css « css - github.com/juliushaertl/apporder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69c068ea1f15fb6fb2bc8a0c6577024d2345b6f1 (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
#appsorter {
	margin-top: 10px;
	width: 100%;
	max-width: 320px;
}
#appsorter li {
	margin-bottom: 2px;
	display: flex;
}

#appsorter img {
	width: 20px;
	height: 20px;
	margin: 1px;
	margin-right: 10px;
	-webkit-filter: invert(1);
	filter: invert(1);
	filter: progid:DXImageTransform.Microsoft.BasicImage(invert='1');
	opacity: .7;
}
body[class*="dark"] #appsorter img {
	-webkit-filter: invert(0);
	filter: invert(0);
}
#appsorter .placeholder {
	border: 1px dashed #aaaaaa;
	visibility: visible;
	width: 100%;
	height: 20px;
	margin-bottom: 2px;
	border-radius: 3px;
}

#appsorter li input {
	margin: 0;
	padding: 0;
	width: 14px;
	height: 14px;
	margin-top: -5px;
	margin-right: 10px;
}

#appsorter li p {
	padding: 1px;
}

#appsorterforce {
	margin-bottom: 2px;
        display: flex;
}

#appsorterforce input {
	margin: -5px 5px 0px 5px;
	padding: 0;
	width: 14px;
	height: 14px;
}