-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathui.css
110 lines (96 loc) · 1.58 KB
/
ui.css
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
html, body {
background: #eee;
color: #000;
margin: 0;
padding: 0;
font-family: sans-serif;
font-size: 95%;
width: 300px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
ul {
list-style-type: none;
list-style-position: inside;
padding: 0;
margin: 0;
}
li {
margin: 0;
padding: 0;
}
a {
color: #444;
/*background: #fff;*/
transition: all 0.3s;
display: block;
width: auto;
font-weight: 500;
margin: 0;
padding: 10px;
text-decoration: none;
border-radius: 0px;
border: 0px solid #eee;
border-bottom: 0px solid #dfdfdf;
}
li:last-child a {
border-bottom: 0px solid #eee;
}
a:hover {
background: #fff;
color: #222;
padding-left: 12px;
transition: all 0.3s;
}
a:active {
background: #ddd;
color: #444;
transition: all 0.3s;
}
a.warn {
background: #efa3a3;
}
a.warn:hover {
background: #ffd6d6;
color: #222;
}
small {
font-size:7pt;
color: #999;
}
.files-filter {
margin: 20px 1px 0 1px;
padding: 15px 5px 15px 5px;
/* width: 100%; */
width: 298px;
box-sizing:border-box;
}
.lucidity-logo {
font-size: 12pt;
padding: 10px 0;
text-align: center;
color: rgb(125, 125, 125);
font-family: sans-serif;
font-style: oblique;
font-variant: all-small-caps;
}
.shortcut-tip {
color: #fff;
display: inline-block;
font-size: 8pt;
position: absolute;
right: 15px;
background: #666;
padding: 5px;
transform: translateY(-3px);
}
hr {
border-bottom: 0 solid #cccccc;
border-top: 1px solid #cccccc;
}
.menu-item-disabled {
pointer-events: none;
user-select: none;
color: #aaa;
}