-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
94 lines (79 loc) · 1.72 KB
/
stylesheet.css
File metadata and controls
94 lines (79 loc) · 1.72 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
/* GClip Extension Stylesheet */
.gclip-popup {
background-color: rgba(25, 25, 25, 0.98);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.15);
padding: 12px;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}
/* Search Entry */
.gclip-search-entry {
background-color: rgba(50, 50, 50, 0.8);
border: none;
border-radius: 6px;
padding: 6px 10px;
font-size: 10pt;
color: #ffffff;
margin-bottom: 8px;
}
.gclip-search-entry:focus {
border-color: rgba(53, 132, 228, 0.8);
background-color: rgba(60, 60, 60, 0.9);
}
/* Scroll View */
.gclip-scroll-view {
background-color: transparent;
}
.gclip-list-box {
spacing: 4px;
}
/* Clipboard Items */
.gclip-item {
background-color: rgba(50, 50, 50, 0.4);
border-radius: 5px;
padding: 8px 10px;
margin: 2px 0;
transition-duration: 0ms;
}
.gclip-item:hover {
background-color: rgba(70, 70, 70, 0.7);
}
.gclip-item.selected {
background-color: rgba(53, 132, 228, 0.5);
}
.gclip-item-index {
color: rgba(255, 255, 255, 0.5);
font-size: 8pt;
font-weight: bold;
min-width: 25px;
}
.gclip-item-icon {
color: rgba(255, 255, 255, 0.7);
}
.gclip-item-thumbnail {
border-radius: 4px;
margin-right: 8px;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.gclip-item-text {
color: #ffffff;
font-size: 9pt;
}
.gclip-item-time {
color: rgba(255, 255, 255, 0.4);
font-size: 8pt;
}
/* Empty State */
.gclip-empty-label {
color: rgba(255, 255, 255, 0.5);
font-size: 12pt;
padding: 40px;
}
/* Footer */
.gclip-footer {
color: rgba(255, 255, 255, 0.3);
font-size: 8pt;
padding: 6px 0 0 0;
margin-top: 4px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}