-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfluxbox.css
More file actions
117 lines (103 loc) · 4.39 KB
/
Copy pathfluxbox.css
File metadata and controls
117 lines (103 loc) · 4.39 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
/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
* ░░░░░░░░▄▀░█▀▄░█▀▀░█▀▀░█░█░█░░░█▀█░█▀▄░░░░░█░░░█▀█░█░█░█▀█░█░█░▀█▀░▀▄░░░░░░░░
* ░░░░░░░▀▄░░█▀▄░█▀▀░█░█░█░█░█░░░█▀█░█▀▄░▀▀▀░█░░░█▀█░░█░░█░█░█░█░░█░░░▄▀░░░░░░░
* ░░░░░░░░░▀░▀░▀░▀▀▀░▀▀▀░▀▀▀░▀▀▀░▀░▀░▀░▀░░░░░▀▀▀░▀░▀░░▀░░▀▀▀░▀▀▀░░▀░░▀░░░░░░░░░
* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
* ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
* ┃ * Copyright (c) 2026, the Regular Layout Authors. This file is part * ┃
* ┃ * of the Regular Layout library, distributed under the terms of the * ┃
* ┃ * [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). * ┃
* ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
*/
regular-layout.fluxbox {
background-color: #dbdfe6;
font-family: "ui-sans-serif", "Helvetica", "Arial", sans-serif;
padding: 16px;
}
/* Frame */
regular-layout.fluxbox regular-layout-frame {
position: relative;
box-sizing: border-box;
margin: 8px;
}
/* Panel chrome lives on the content (only the selected frame shows it), so the
overlapping frame box stays transparent and every stacked tab is visible. */
regular-layout.fluxbox regular-layout-frame::part(container) {
box-sizing: border-box;
padding: 6px;
background: #ffffff;
border: 1px solid #9dacbe;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
}
regular-layout.fluxbox regular-layout-frame::part(close) {
border: 1px solid #8a96a3;
height: 14px;
background: linear-gradient(to bottom, #e8ecef 0%, #cdd5dd 100%);
align-self: center;
display: flex;
align-items: center;
justify-content: center;
padding: 0px;
width: 14px;
margin-right: 2px;
}
regular-layout.fluxbox regular-layout-frame::part(close):hover {
background: linear-gradient(to bottom, #f0f3f5 0%, #d8dfe6 100%);
}
regular-layout.fluxbox regular-layout-frame::part(close):active {
background: linear-gradient(to bottom, #c5cfd9 0%, #b3bec9 100%);
}
regular-layout.fluxbox regular-layout-frame::part(close):before {
content: "×";
font-size: 14px;
font-weight: normal;
color: #444444;
line-height: 1;
}
regular-layout.fluxbox regular-layout-frame::part(titlebar) {
display: flex;
align-items: stretch;
padding-right: 0px;
height: 22px;
}
regular-layout.fluxbox regular-layout-frame::part(tab) {
display: flex;
flex: 1 1 150px;
align-items: center;
padding: 0 8px;
cursor: pointer;
text-overflow: ellipsis;
background: linear-gradient(to bottom, #c7d1db 0%, #b3bec9 100%);
color: #4a4a4a;
font-size: 11px;
font-weight: normal;
border-right: 1px solid #9dacbe;
opacity: 0.85;
}
regular-layout.fluxbox regular-layout-frame::part(tab):hover {
background: linear-gradient(to bottom, #d2dbe4 0%, #bec9d4 100%);
}
regular-layout.fluxbox regular-layout-frame::part(active-tab) {
background: linear-gradient(to bottom, #e0e7ef 0%, #d1dae3 100%);
color: #1a1a1a;
opacity: 1;
font-weight: 500;
}
regular-layout.fluxbox:has(.overlay) > * {
opacity: 0.7;
}
regular-layout.fluxbox:has(.overlay) > .overlay {
opacity: 1;
}
/* Frame in Overlay Mode */
regular-layout.fluxbox regular-layout-frame.overlay {
margin: 0;
background-color: rgba(155, 172, 190, 0.25);
border: 1px solid #6b7c8f;
box-shadow: none;
transition:
top 0.1s ease-in-out,
height 0.1s ease-in-out,
width 0.1s ease-in-out,
left 0.1s ease-in-out;
}