-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLumo.css
More file actions
64 lines (55 loc) · 2.35 KB
/
Copy pathLumo.css
File metadata and controls
64 lines (55 loc) · 2.35 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
/* -------------------------------------------------
Workspace Switcher → Dot mode
------------------------------------------------- */
/* The container that holds the buttons */
.workspace-switcher {
/* Give the dots a little breathing room */
spacing: 6px; /* distance between dots */
}
/* All workspace “buttons” become circles */
.workspace-switcher button,
.workspace-switcher .workspace-button {
min-width: 10px; /* size of the dot */
min-height: 10px;
border-radius: 9999px; /* force a perfect circle */
padding: 0; /* no extra padding */
margin: 0; /* keep them tight */
/* Base colour – the “off‑state” dots */
background-color: shade(@bg_color, 0.85);
background-image: none; /* strip any default gradients */
border: none; /* no borders, just pure dot */
}
/* Hover effect – a subtle glow */
.workspace-switcher button:hover,
.workspace-switcher .workspace-button:hover {
background-color: shade(@bg_color, 0.75);
}
/* The currently active workspace – make it pop */
.workspace-switcher button:checked,
.workspace-switcher .workspace-button:checked,
.workspace-switcher button.active,
.workspace-switcher .workspace-button.active {
background-color: @selected_bg_color; /* bright accent */
}
/* Optional: a tiny inner “hole” for a modern look */
.workspace-switcher button:checked,
.workspace-switcher .workspace-button:checked {
box-shadow: inset 0 0 0 2px @bg_color;
}
/* -------------------------------------------------
Floating‑panel illusion
------------------------------------------------- */
/* The whole panel gets a subtle “shadow” */
.xfce4-panel {
/* Give it a soft, semi‑transparent border that looks like air */
background-color: rgba(30,30,30,0.92); /* dark panel, slightly see‑through */
border-radius: 8px; /* rounded corners */
padding: 6px; /* internal space – makes icons look “lifted” */
margin: 6px; /* external space – creates the floating gap */
box-shadow: 0 4px 12px rgba(0,0,0,0.35); /* faint drop‑shadow */
}
/* Keep the panel’s background from spilling over the rounded corners */
.xfce4-panel .panel-button,
.xfce4-panel .tasklist-button {
border-radius: 6px;
}