regular-layout 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +110 -22
- package/dist/{layout → core}/types.d.ts +6 -0
- package/dist/extensions.d.ts +6 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +4 -4
- package/dist/layout/calculate_edge.d.ts +2 -2
- package/dist/layout/calculate_intersect.d.ts +1 -1
- package/dist/layout/calculate_path.d.ts +1 -1
- package/dist/layout/calculate_presize_paths.d.ts +10 -0
- package/dist/layout/flatten.d.ts +1 -1
- package/dist/layout/generate_grid.d.ts +2 -2
- package/dist/layout/generate_overlay.d.ts +18 -2
- package/dist/layout/insert_child.d.ts +1 -1
- package/dist/layout/redistribute_panel_sizes.d.ts +2 -2
- package/dist/layout/remove_child.d.ts +1 -1
- package/dist/model/overlay_controller.d.ts +34 -0
- package/dist/model/presize_queue.d.ts +17 -0
- package/dist/regular-layout-tab.d.ts +1 -1
- package/dist/regular-layout.d.ts +37 -9
- package/package.json +5 -4
- package/src/{layout → core}/constants.ts +2 -2
- package/src/{layout → core}/types.ts +7 -0
- package/src/extensions.ts +13 -1
- package/src/index.ts +3 -1
- package/src/layout/calculate_edge.ts +2 -2
- package/src/layout/calculate_intersect.ts +5 -2
- package/src/layout/calculate_path.ts +1 -1
- package/src/layout/calculate_presize_paths.ts +93 -0
- package/src/layout/flatten.ts +1 -1
- package/src/layout/generate_grid.ts +2 -2
- package/src/layout/generate_overlay.ts +48 -16
- package/src/layout/insert_child.ts +1 -1
- package/src/layout/redistribute_panel_sizes.ts +2 -2
- package/src/layout/remove_child.ts +2 -2
- package/src/model/overlay_controller.ts +162 -0
- package/src/model/presize_queue.ts +79 -0
- package/src/regular-layout-frame.ts +2 -2
- package/src/regular-layout-tab.ts +1 -1
- package/src/regular-layout.ts +166 -131
- package/themes/borland.css +103 -0
- package/themes/chicago.css +55 -49
- package/themes/fluxbox.css +64 -60
- package/themes/gibson.css +174 -164
- package/themes/hotdog.css +53 -47
- package/themes/lorax.css +82 -75
- /package/dist/{layout → core}/constants.d.ts +0 -0
package/themes/fluxbox.css
CHANGED
|
@@ -11,100 +11,104 @@
|
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
regular-layout.fluxbox {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
background-color: #dbdfe6;
|
|
15
|
+
font-family: "ui-sans-serif", "Helvetica", "Arial", sans-serif;
|
|
16
|
+
padding: 16px;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
/* Frame */
|
|
20
20
|
regular-layout.fluxbox regular-layout-frame {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
position: relative;
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
margin: 8px;
|
|
24
|
+
background: #ffffff;
|
|
25
|
+
border: 1px solid #9dacbe;
|
|
26
|
+
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
regular-layout.fluxbox regular-layout-frame::part(container) {
|
|
30
|
+
padding: 6px;
|
|
27
31
|
}
|
|
28
32
|
|
|
29
33
|
regular-layout.fluxbox regular-layout-frame::part(close) {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
34
|
+
border: 1px solid #8a96a3;
|
|
35
|
+
height: 14px;
|
|
36
|
+
background: linear-gradient(to bottom, #e8ecef 0%, #cdd5dd 100%);
|
|
37
|
+
align-self: center;
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
justify-content: center;
|
|
41
|
+
padding: 0px;
|
|
42
|
+
width: 14px;
|
|
43
|
+
margin-right: 2px;
|
|
40
44
|
}
|
|
41
45
|
|
|
42
46
|
regular-layout.fluxbox regular-layout-frame::part(close):hover {
|
|
43
|
-
|
|
47
|
+
background: linear-gradient(to bottom, #f0f3f5 0%, #d8dfe6 100%);
|
|
44
48
|
}
|
|
45
49
|
|
|
46
50
|
regular-layout.fluxbox regular-layout-frame::part(close):active {
|
|
47
|
-
|
|
51
|
+
background: linear-gradient(to bottom, #c5cfd9 0%, #b3bec9 100%);
|
|
48
52
|
}
|
|
49
53
|
|
|
50
54
|
regular-layout.fluxbox regular-layout-frame::part(close):before {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
55
|
+
content: "×";
|
|
56
|
+
font-size: 14px;
|
|
57
|
+
font-weight: normal;
|
|
58
|
+
color: #444444;
|
|
59
|
+
line-height: 1;
|
|
56
60
|
}
|
|
57
61
|
|
|
58
62
|
regular-layout.fluxbox regular-layout-frame::part(titlebar) {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
+
display: flex;
|
|
64
|
+
align-items: stretch;
|
|
65
|
+
padding-right: 0px;
|
|
66
|
+
height: 22px;
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
regular-layout.fluxbox regular-layout-frame::part(tab) {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
70
|
+
display: flex;
|
|
71
|
+
flex: 1 1 150px;
|
|
72
|
+
align-items: center;
|
|
73
|
+
padding: 0 8px;
|
|
74
|
+
cursor: pointer;
|
|
75
|
+
text-overflow: ellipsis;
|
|
76
|
+
background: linear-gradient(to bottom, #c7d1db 0%, #b3bec9 100%);
|
|
77
|
+
color: #4a4a4a;
|
|
78
|
+
font-size: 11px;
|
|
79
|
+
font-weight: normal;
|
|
80
|
+
border-right: 1px solid #9dacbe;
|
|
81
|
+
opacity: 0.85;
|
|
78
82
|
}
|
|
79
83
|
|
|
80
84
|
regular-layout.fluxbox regular-layout-frame::part(tab):hover {
|
|
81
|
-
|
|
85
|
+
background: linear-gradient(to bottom, #d2dbe4 0%, #bec9d4 100%);
|
|
82
86
|
}
|
|
83
87
|
|
|
84
88
|
regular-layout.fluxbox regular-layout-frame::part(active-tab) {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
+
background: linear-gradient(to bottom, #e0e7ef 0%, #d1dae3 100%);
|
|
90
|
+
color: #1a1a1a;
|
|
91
|
+
opacity: 1;
|
|
92
|
+
font-weight: 500;
|
|
89
93
|
}
|
|
90
94
|
|
|
91
|
-
regular-layout.fluxbox:has(.overlay)
|
|
92
|
-
|
|
95
|
+
regular-layout.fluxbox:has(.overlay) > * {
|
|
96
|
+
opacity: 0.7;
|
|
93
97
|
}
|
|
94
98
|
|
|
95
|
-
regular-layout.fluxbox:has(.overlay)
|
|
96
|
-
|
|
99
|
+
regular-layout.fluxbox:has(.overlay) > .overlay {
|
|
100
|
+
opacity: 1;
|
|
97
101
|
}
|
|
98
102
|
|
|
99
103
|
/* Frame in Overlay Mode */
|
|
100
104
|
regular-layout.fluxbox regular-layout-frame.overlay {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
105
|
+
margin: 0;
|
|
106
|
+
background-color: rgba(155, 172, 190, 0.25);
|
|
107
|
+
border: 1px solid #6b7c8f;
|
|
108
|
+
box-shadow: none;
|
|
109
|
+
transition:
|
|
110
|
+
top 0.1s ease-in-out,
|
|
111
|
+
height 0.1s ease-in-out,
|
|
112
|
+
width 0.1s ease-in-out,
|
|
113
|
+
left 0.1s ease-in-out;
|
|
110
114
|
}
|
package/themes/gibson.css
CHANGED
|
@@ -11,254 +11,264 @@
|
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
regular-layout.gibson {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
background: radial-gradient(ellipse at center, #0a0a1a 0%, #000000 100%);
|
|
15
|
+
font-family:
|
|
16
|
+
"ui-monospace", "SFMono-Regular", "SF Mono", "Menlo", "Consolas",
|
|
17
|
+
"Liberation Mono", monospace;
|
|
18
|
+
padding: 8px;
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
/* Frame */
|
|
20
22
|
regular-layout.gibson regular-layout-frame {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
--titlebar-height: 28px;
|
|
24
|
+
position: relative;
|
|
25
|
+
box-sizing: border-box;
|
|
26
|
+
margin: 8px;
|
|
27
|
+
background: rgba(10, 10, 26, 0.85);
|
|
28
|
+
backdrop-filter: blur(4px);
|
|
29
|
+
color: white;
|
|
30
|
+
text-shadow:
|
|
31
|
+
0 0 5px #fff,
|
|
32
|
+
0 0 10px #fff,
|
|
33
|
+
0 0 20px #fff;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
regular-layout.gibson regular-layout-frame::part(container) {
|
|
37
|
+
padding: 6px;
|
|
27
38
|
}
|
|
28
39
|
|
|
29
40
|
regular-layout.gibson regular-layout-frame::part(active-close) {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
41
|
+
border: 1px solid #ff00ff;
|
|
42
|
+
height: 18px;
|
|
43
|
+
width: 18px;
|
|
44
|
+
background: rgba(255, 0, 255, 0.1);
|
|
45
|
+
align-self: center;
|
|
46
|
+
/* biome-ignore lint/complexity/noImportantStyles: reasons */
|
|
47
|
+
display: flex !important;
|
|
48
|
+
align-items: center;
|
|
49
|
+
justify-content: center;
|
|
50
|
+
margin-right: 1px;
|
|
51
|
+
box-shadow: 0 0 8px rgba(255, 0, 255, 0.4);
|
|
52
|
+
transition: all 0.1s ease;
|
|
42
53
|
}
|
|
43
54
|
|
|
44
55
|
regular-layout.gibson regular-layout-frame::part(active-close):hover {
|
|
45
|
-
|
|
46
|
-
|
|
56
|
+
background: rgba(255, 0, 255, 0.3);
|
|
57
|
+
box-shadow: 0 0 12px rgba(255, 0, 255, 0.8);
|
|
47
58
|
}
|
|
48
59
|
|
|
49
60
|
regular-layout.gibson regular-layout-frame::part(active-close):before {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
61
|
+
content: "×";
|
|
62
|
+
font-size: 14px;
|
|
63
|
+
font-weight: bold;
|
|
64
|
+
color: #ff00ff;
|
|
65
|
+
text-shadow: 0 0 4px rgba(255, 0, 255, 0.8);
|
|
55
66
|
}
|
|
56
67
|
|
|
57
68
|
regular-layout.gibson regular-layout-frame::part(close) {
|
|
58
|
-
|
|
69
|
+
display: none;
|
|
59
70
|
}
|
|
60
71
|
|
|
61
|
-
|
|
62
72
|
regular-layout.gibson regular-layout-frame::part(titlebar) {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
73
|
+
display: flex;
|
|
74
|
+
justify-content: flex-end;
|
|
75
|
+
align-items: stretch;
|
|
76
|
+
padding-left: 12px;
|
|
77
|
+
height: 32px;
|
|
68
78
|
|
|
69
|
-
|
|
79
|
+
/* border-bottom: 1px solid rgba(0, 255, 255, 0.3); */
|
|
70
80
|
}
|
|
71
81
|
|
|
72
82
|
regular-layout.gibson regular-layout-frame::part(tab) {
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
83
|
+
display: flex;
|
|
84
|
+
flex: 1 1 150px;
|
|
85
|
+
max-width: 200px;
|
|
86
|
+
align-items: center;
|
|
87
|
+
padding: 0 5px 0 12px;
|
|
88
|
+
cursor: pointer;
|
|
89
|
+
text-overflow: ellipsis;
|
|
90
|
+
background: rgba(255, 0, 255, 0.1);
|
|
91
|
+
color: #00ffff;
|
|
92
|
+
font-size: 11px;
|
|
93
|
+
font-weight: 500;
|
|
94
|
+
letter-spacing: 0.5px;
|
|
95
|
+
text-transform: uppercase;
|
|
96
|
+
/* border-right: 1px solid rgba(0, 255, 255, 0.2); */
|
|
97
|
+
opacity: 0.6;
|
|
98
|
+
transition: all 0.2s ease;
|
|
99
|
+
text-shadow: 0 0 4px rgba(0, 255, 255, 0.5);
|
|
90
100
|
}
|
|
91
101
|
|
|
92
102
|
regular-layout.gibson regular-layout-frame::part(tab):hover {
|
|
93
|
-
|
|
103
|
+
box-shadow: inset 0 0 12px rgba(0, 255, 255, 0.9);
|
|
94
104
|
}
|
|
95
105
|
|
|
96
106
|
regular-layout.gibson regular-layout-frame::part(active-tab) {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
107
|
+
background: rgba(0, 255, 255, 0.15);
|
|
108
|
+
opacity: 1;
|
|
109
|
+
border: 2px solid #00ffff;
|
|
110
|
+
border-bottom-width: 1px;
|
|
111
|
+
box-shadow:
|
|
112
|
+
inset 0 0 12px rgba(0, 255, 255, 0.3),
|
|
113
|
+
0 0 8px rgba(0, 255, 255, 0.4);
|
|
104
114
|
}
|
|
105
115
|
|
|
106
116
|
regular-layout.gibson:has(.overlay) > * {
|
|
107
|
-
|
|
117
|
+
opacity: 0.5;
|
|
108
118
|
}
|
|
109
119
|
|
|
110
120
|
regular-layout.gibson:has(.overlay) > .overlay {
|
|
111
|
-
|
|
121
|
+
opacity: 1;
|
|
112
122
|
}
|
|
113
123
|
|
|
114
124
|
/* Frame in Overlay Mode */
|
|
115
125
|
regular-layout.gibson regular-layout-frame.overlay {
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
126
|
+
background: rgba(255, 0, 255, 0.1);
|
|
127
|
+
border: 1px dashed #ff00ff;
|
|
128
|
+
border-radius: 12px;
|
|
129
|
+
box-shadow:
|
|
130
|
+
0 0 15px rgba(255, 0, 255, 0.6),
|
|
131
|
+
inset 0 0 20px rgba(255, 0, 255, 0.2);
|
|
132
|
+
margin: 0;
|
|
133
|
+
transition:
|
|
134
|
+
top 0.075s ease-out,
|
|
135
|
+
height 0.075s ease-out,
|
|
136
|
+
width 0.075s ease-out,
|
|
137
|
+
left 0.075s ease-out;
|
|
128
138
|
}
|
|
129
139
|
|
|
130
140
|
regular-layout.gibson regular-layout-frame::part(container) {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
141
|
+
display: none;
|
|
142
|
+
border: 1px solid #00ffff;
|
|
143
|
+
border-radius: 12px 0 12px 0;
|
|
134
144
|
}
|
|
135
145
|
|
|
136
146
|
regular-layout.gibson regular-layout-frame::part(titlebar) {
|
|
137
|
-
|
|
147
|
+
display: none;
|
|
138
148
|
}
|
|
139
149
|
|
|
140
150
|
regular-layout.gibson regular-layout-frame:not(.overlay)::part(container),
|
|
141
151
|
regular-layout.gibson regular-layout-frame:not(.overlay)::part(titlebar) {
|
|
142
|
-
|
|
152
|
+
display: flex;
|
|
143
153
|
}
|
|
144
154
|
|
|
145
155
|
/* Cyberpunk color variations */
|
|
146
|
-
regular-layout.gibson :nth-child(6n+1)::part(container) {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
156
|
+
regular-layout.gibson :nth-child(6n + 1)::part(container) {
|
|
157
|
+
border-color: #00ffff;
|
|
158
|
+
box-shadow:
|
|
159
|
+
0 0 10px rgba(0, 255, 255, 0.75),
|
|
160
|
+
inset 0 0 20px rgba(0, 255, 255, 0.1);
|
|
151
161
|
}
|
|
152
162
|
|
|
153
|
-
regular-layout.gibson :nth-child(6n+1)::part(tab) {
|
|
154
|
-
|
|
155
|
-
|
|
163
|
+
regular-layout.gibson :nth-child(6n + 1)::part(tab) {
|
|
164
|
+
color: #00ffff;
|
|
165
|
+
text-shadow: 0 0 4px rgba(0, 255, 255, 0.6);
|
|
156
166
|
}
|
|
157
167
|
|
|
158
|
-
regular-layout.gibson :nth-child(6n+1)::part(active-tab) {
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
168
|
+
regular-layout.gibson :nth-child(6n + 1)::part(active-tab) {
|
|
169
|
+
background: #00ffff44;
|
|
170
|
+
border-color: #00ffff;
|
|
171
|
+
box-shadow:
|
|
172
|
+
inset 0 0 12px rgba(0, 255, 255, 0.3),
|
|
173
|
+
0 0 8px rgba(0, 255, 255, 0.4);
|
|
164
174
|
}
|
|
165
175
|
|
|
166
|
-
regular-layout.gibson :nth-child(6n+2)::part(container) {
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
176
|
+
regular-layout.gibson :nth-child(6n + 2)::part(container) {
|
|
177
|
+
border-color: #ff00ff;
|
|
178
|
+
box-shadow:
|
|
179
|
+
0 0 10px rgba(255, 0, 255, 0.75),
|
|
180
|
+
inset 0 0 20px rgba(255, 0, 255, 0.1);
|
|
171
181
|
}
|
|
172
182
|
|
|
173
|
-
regular-layout.gibson :nth-child(6n+2)::part(tab) {
|
|
174
|
-
|
|
175
|
-
|
|
183
|
+
regular-layout.gibson :nth-child(6n + 2)::part(tab) {
|
|
184
|
+
color: #ff00ff;
|
|
185
|
+
text-shadow: 0 0 4px rgba(255, 0, 255, 0.6);
|
|
176
186
|
}
|
|
177
187
|
|
|
178
|
-
regular-layout.gibson :nth-child(6n+2)::part(active-tab) {
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
188
|
+
regular-layout.gibson :nth-child(6n + 2)::part(active-tab) {
|
|
189
|
+
background: #ff00ff44;
|
|
190
|
+
border-color: #ff00ff;
|
|
191
|
+
box-shadow:
|
|
192
|
+
inset 0 0 12px rgba(255, 0, 255, 0.3),
|
|
193
|
+
0 0 8px rgba(255, 0, 255, 0.4);
|
|
184
194
|
}
|
|
185
195
|
|
|
186
|
-
regular-layout.gibson :nth-child(6n+3)::part(container) {
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
196
|
+
regular-layout.gibson :nth-child(6n + 3)::part(container) {
|
|
197
|
+
border-color: #00ff00;
|
|
198
|
+
box-shadow:
|
|
199
|
+
0 0 10px rgba(0, 255, 0, 0.75),
|
|
200
|
+
inset 0 0 20px rgba(0, 255, 0, 0.1);
|
|
191
201
|
}
|
|
192
202
|
|
|
193
|
-
regular-layout.gibson :nth-child(6n+3)::part(tab) {
|
|
194
|
-
|
|
195
|
-
|
|
203
|
+
regular-layout.gibson :nth-child(6n + 3)::part(tab) {
|
|
204
|
+
color: #00ff00;
|
|
205
|
+
text-shadow: 0 0 4px rgba(0, 255, 0, 0.6);
|
|
196
206
|
}
|
|
197
207
|
|
|
198
|
-
regular-layout.gibson :nth-child(6n+3)::part(active-tab) {
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
208
|
+
regular-layout.gibson :nth-child(6n + 3)::part(active-tab) {
|
|
209
|
+
background: #00ff0044;
|
|
210
|
+
border-color: #00ff00;
|
|
211
|
+
box-shadow:
|
|
212
|
+
inset 0 0 12px rgba(0, 255, 0, 0.3),
|
|
213
|
+
0 0 8px rgba(0, 255, 0, 0.4);
|
|
204
214
|
}
|
|
205
215
|
|
|
206
|
-
regular-layout.gibson :nth-child(6n+4)::part(container) {
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
216
|
+
regular-layout.gibson :nth-child(6n + 4)::part(container) {
|
|
217
|
+
border-color: #ff0080;
|
|
218
|
+
box-shadow:
|
|
219
|
+
0 0 10px rgba(255, 0, 128, 0.75),
|
|
220
|
+
inset 0 0 20px rgba(255, 0, 128, 0.1);
|
|
211
221
|
}
|
|
212
222
|
|
|
213
|
-
regular-layout.gibson :nth-child(6n+4)::part(tab) {
|
|
214
|
-
|
|
215
|
-
|
|
223
|
+
regular-layout.gibson :nth-child(6n + 4)::part(tab) {
|
|
224
|
+
color: #ff0080;
|
|
225
|
+
text-shadow: 0 0 4px rgba(255, 0, 128, 0.6);
|
|
216
226
|
}
|
|
217
227
|
|
|
218
|
-
regular-layout.gibson :nth-child(6n+4)::part(active-tab) {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
228
|
+
regular-layout.gibson :nth-child(6n + 4)::part(active-tab) {
|
|
229
|
+
background: #ff008044;
|
|
230
|
+
border-color: #ff0080;
|
|
231
|
+
box-shadow:
|
|
232
|
+
inset 0 0 12px rgba(255, 0, 128, 0.3),
|
|
233
|
+
0 0 8px rgba(255, 0, 128, 0.4);
|
|
224
234
|
}
|
|
225
235
|
|
|
226
|
-
regular-layout.gibson :nth-child(6n+5)::part(container) {
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
236
|
+
regular-layout.gibson :nth-child(6n + 5)::part(container) {
|
|
237
|
+
border-color: #8000ff;
|
|
238
|
+
box-shadow:
|
|
239
|
+
0 0 10px rgba(128, 0, 255, 0.75),
|
|
240
|
+
inset 0 0 20px rgba(128, 0, 255, 0.1);
|
|
231
241
|
}
|
|
232
242
|
|
|
233
|
-
regular-layout.gibson :nth-child(6n+5)::part(tab) {
|
|
234
|
-
|
|
235
|
-
|
|
243
|
+
regular-layout.gibson :nth-child(6n + 5)::part(tab) {
|
|
244
|
+
color: #8000ff;
|
|
245
|
+
text-shadow: 0 0 4px rgba(128, 0, 255, 0.6);
|
|
236
246
|
}
|
|
237
247
|
|
|
238
|
-
regular-layout.gibson :nth-child(6n+5)::part(active-tab) {
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
248
|
+
regular-layout.gibson :nth-child(6n + 5)::part(active-tab) {
|
|
249
|
+
background: #8000ff44;
|
|
250
|
+
border-color: #8000ff;
|
|
251
|
+
box-shadow:
|
|
252
|
+
inset 0 0 12px rgba(128, 0, 255, 0.3),
|
|
253
|
+
0 0 8px rgba(128, 0, 255, 0.4);
|
|
244
254
|
}
|
|
245
255
|
|
|
246
|
-
regular-layout.gibson :nth-child(6n+6)::part(container) {
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
256
|
+
regular-layout.gibson :nth-child(6n + 6)::part(container) {
|
|
257
|
+
border-color: #ffff00;
|
|
258
|
+
box-shadow:
|
|
259
|
+
0 0 10px rgba(255, 255, 0, 0.75),
|
|
260
|
+
inset 0 0 20px rgba(255, 255, 0, 0.1);
|
|
251
261
|
}
|
|
252
262
|
|
|
253
|
-
regular-layout.gibson :nth-child(6n+6)::part(tab) {
|
|
254
|
-
|
|
255
|
-
|
|
263
|
+
regular-layout.gibson :nth-child(6n + 6)::part(tab) {
|
|
264
|
+
color: #ffff00;
|
|
265
|
+
text-shadow: 0 0 4px rgba(255, 255, 0, 0.6);
|
|
256
266
|
}
|
|
257
267
|
|
|
258
|
-
regular-layout.gibson :nth-child(6n+6)::part(active-tab) {
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
268
|
+
regular-layout.gibson :nth-child(6n + 6)::part(active-tab) {
|
|
269
|
+
background: #ffff0044;
|
|
270
|
+
border-color: #ffff00;
|
|
271
|
+
box-shadow:
|
|
272
|
+
inset 0 0 12px rgba(255, 255, 0, 0.3),
|
|
273
|
+
0 0 8px rgba(255, 255, 0, 0.4);
|
|
264
274
|
}
|