forked from gorhill/uBlock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloud-ui.css
More file actions
94 lines (94 loc) · 1.84 KB
/
cloud-ui.css
File metadata and controls
94 lines (94 loc) · 1.84 KB
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
#cloudWidget {
background: url("../img/cloud.png") hsl(216, 100%, 93%);
border-radius: 3px;
margin: 0.5em 0;
padding: 0.5em;
position: relative;
}
#cloudWidget.hide {
display: none;
}
#cloudWidget .cloudTools {
align-items: center;
display: flex;
flex-wrap: nowrap;
}
#cloudWidget button[disabled] {
visibility: hidden;
}
#cloudWidget button > span.fa {
font-size: 150%;
}
#cloudWidget button.error {
color: red;
}
#cloudPullAndMerge {
margin-left: 0.25em;
}
#cloudPullAndMerge > span {
position: relative;
}
#cloudPullAndMerge > span > span {
font-size: 50%;
position: absolute;
}
#cloudInfo {
color: gray;
display: inline-block;
font-size: 90%;
margin: 0 1em;
overflow: hidden;
padding: 0;
white-space: pre;
}
#cloudError {
color: red;
font-size: x-small;
margin: 0.5em 0 0 0;
}
#cloudError:empty {
display: none;
}
#cloudWidget > #cloudCog {
cursor: pointer;
display: inline-block;
font-size: 110%;
margin: 0;
opacity: 0.5;
padding: 4px;
position: absolute;
top: 0;
}
body[dir="ltr"] #cloudWidget > #cloudCog {
right: 0;
}
body[dir="rtl"] #cloudWidget > #cloudCog {
left: 0;
}
#cloudWidget > #cloudCog:hover {
opacity: 1;
}
#cloudWidget > #cloudOptions {
align-items: center;
-webkit-align-items: center;
background-color: rgba(0, 0, 0, 0.75);
bottom: 0;
display: none;
justify-content: center;
-webkit-justify-content: center;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 2000;
}
#cloudWidget > #cloudOptions.show {
display: flex;
display: -webkit-flex;
}
#cloudWidget > #cloudOptions > div {
background-color: white;
border-radius: 3px;
padding: 1em;
text-align: center;
}