-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (99 loc) · 1.96 KB
/
style.css
File metadata and controls
124 lines (99 loc) · 1.96 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.clickable-entry {
padding: 8px;
border-radius: 6px;
transition: background-color 0.2s ease;
}
.clickable-entry:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.color-square {
border-radius: 3px;
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
overflow: hidden;
}
.color-ext4 {
background-color: #22c55e;
}
.color-ntfs {
background-color: #3b82f6;
}
.color-fat32 {
background-color: #f59e0b;
}
.color-vfat {
background-color: #f59e0b;
}
.color-swap {
background-color: #ef4444;
}
.color-unknown {
background-color: #6b7280;
}
.color-square.color-selected {
background-color: #6b21a8 !important;
border: 2px solid #581c87 !important;
box-shadow: 0 0 0 2px rgba(91, 33, 168, 0.3);
}
.color-square.color-selected::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 8px;
height: 8px;
background: white;
border-radius: 50%;
z-index: 1;
}
.selected-partition-text {
color: #a855f7;
}
.dim-label {
opacity: 0.7;
font-size: 0.9em;
}
.color-purple {
background-color: #9333ea !important;
border: 2px solid #7c3aed !important;
box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.3);
}
.highlighted-status {
color: #0066cc;
font-weight: bold;
}
.selection-indicator-frame {
background-color: #f0f8ff;
border: 2px solid #0066cc;
border-radius: 8px;
}
.clickable-entry:hover {
background-color: #f5f5f5;
}
.selection-indicator-frame {
background-color: #f0f8ff;
border: 2px solid #0066cc;
border-radius: 8px;
}
.highlighted-status {
color: #0066cc;
font-weight: bold;
font-size: 1.1em;
}
.status-alongside {
color: #0066cc;
}
.status-replace {
color: #ff8800;
}
.status-erase {
color: #cc0000;
}
.status-manual {
color: #6600cc;
}
.clickable-entry:hover {
background-color: #f5f5f5;
}
/* this file might need some cleaning up */