xframelib 0.5.4 → 0.5.7

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/dist/index.css CHANGED
@@ -1,34 +1,3 @@
1
- .vcpg {
2
- border: 1px solid var(--border-color);
3
- border-radius: 4px;
4
- width: 100%;
5
- }
6
- .vcpg ::v-deep(.vcp) * {
7
- box-sizing: border-box;
8
- }
9
- .vcpg ::v-deep(.vcp) .vcp__header {
10
- background-color: var(--bg-color-header);
11
- height: 30px;
12
- border-bottom: 2px solid #c6bebd;
13
- transition: background-color 0.3s ease;
14
- }
15
- .vcpg ::v-deep(.vcp) .vcp__header .vcp__header:hover {
16
- background-color: var(--bg-color-header-hover);
17
- }
18
- .vcpg ::v-deep(.vcp) .vcp__header .vcp__header:active {
19
- background-color: var(--bg-color-header-active);
20
- }
21
- .vcpg ::v-deep(.vcp) .vcp:not(:first-of-type) .vcp__header {
22
- border-top: 2px solid var(--border-color);
23
- }
24
- .vcpg ::v-deep(.vcp) .vcp__header-title {
25
- font-weight: 500;
26
- }
27
- .vcpg ::v-deep(.vcp) .vcp__body {
28
- border-top: 1px solid var(--border-color);
29
- background-color: var(--bg-color-body);
30
- }
31
-
32
1
  .vcp__header {
33
2
  display: flex;
34
3
  padding: 12px;
@@ -74,6 +43,106 @@
74
43
  opacity: 0.25;
75
44
  }
76
45
 
46
+ .vcpg {
47
+ border: 1px solid var(--border-color);
48
+ border-radius: 4px;
49
+ width: 100%;
50
+ }
51
+ .vcpg ::v-deep(.vcp) * {
52
+ box-sizing: border-box;
53
+ }
54
+ .vcpg ::v-deep(.vcp) .vcp__header {
55
+ background-color: var(--bg-color-header);
56
+ height: 30px;
57
+ border-bottom: 2px solid #c6bebd;
58
+ transition: background-color 0.3s ease;
59
+ }
60
+ .vcpg ::v-deep(.vcp) .vcp__header .vcp__header:hover {
61
+ background-color: var(--bg-color-header-hover);
62
+ }
63
+ .vcpg ::v-deep(.vcp) .vcp__header .vcp__header:active {
64
+ background-color: var(--bg-color-header-active);
65
+ }
66
+ .vcpg ::v-deep(.vcp) .vcp:not(:first-of-type) .vcp__header {
67
+ border-top: 2px solid var(--border-color);
68
+ }
69
+ .vcpg ::v-deep(.vcp) .vcp__header-title {
70
+ font-weight: 500;
71
+ }
72
+ .vcpg ::v-deep(.vcp) .vcp__body {
73
+ border-top: 1px solid var(--border-color);
74
+ background-color: var(--bg-color-body);
75
+ }
76
+
77
+ .layoutContainer {
78
+ width: 100%;
79
+ height: 100%;
80
+ padding: 0;
81
+ margin: 0;
82
+ --layout-top-height: 77px;
83
+ --layout-left-width: 200px;
84
+ --layout-right-width: 200px;
85
+ --layout-bottom-height: 60px;
86
+ --layout-centerback-backcolor: #020202;
87
+ --layout-top-zindex: 10000;
88
+ --layout-bottom-zindex: 10000;
89
+ --layout-center-zindex: 9999;
90
+ --layout-left-zindex: 10000;
91
+ }
92
+
93
+ .topContainer {
94
+ position: absolute;
95
+ top: 0px;
96
+ left: 0px;
97
+ width: 100%;
98
+ height: var(--layout-top-height);
99
+ z-index: 1000;
100
+ }
101
+
102
+ .bottomContainer {
103
+ position: absolute;
104
+ bottom: 0px;
105
+ left: 0px;
106
+ width: 100%;
107
+ height: var(--layout-bottom-height);
108
+ }
109
+
110
+ .leftContainer {
111
+ position: absolute;
112
+ top: 0px;
113
+ left: 0px;
114
+ width: var(--layout-left-width);
115
+ height: 100%;
116
+ pointer-events: none;
117
+ }
118
+
119
+ .rightContainer {
120
+ position: absolute;
121
+ top: 0px;
122
+ right: 0px;
123
+ width: var(--layout-right-width);
124
+ height: 100%;
125
+ pointer-events: none;
126
+ }
127
+
128
+ .centerdiv {
129
+ position: absolute;
130
+ top: 0px;
131
+ left: 0px;
132
+ bottom: 0px;
133
+ width: 100%;
134
+ background-color: transparent;
135
+ overflow: hidden;
136
+ }
137
+
138
+ .centerContainer {
139
+ pointer-events: none;
140
+ }
141
+
142
+ .mainContainer {
143
+ pointer-events: none;
144
+ }
145
+
77
146
  .splitpanes {
78
147
  display: flex;
79
148
  width: 100%;
@@ -184,75 +253,6 @@
184
253
  margin-top: 1px;
185
254
  }
186
255
 
187
- .layoutContainer {
188
- width: 100%;
189
- height: 100%;
190
- padding: 0;
191
- margin: 0;
192
- --layout-top-height: 77px;
193
- --layout-left-width: 200px;
194
- --layout-right-width: 200px;
195
- --layout-bottom-height: 60px;
196
- --layout-centerback-backcolor: #020202;
197
- --layout-top-zindex: 10000;
198
- --layout-bottom-zindex: 10000;
199
- --layout-center-zindex: 9999;
200
- --layout-left-zindex: 10000;
201
- }
202
-
203
- .topContainer {
204
- position: absolute;
205
- top: 0px;
206
- left: 0px;
207
- width: 100%;
208
- height: var(--layout-top-height);
209
- z-index: 1000;
210
- }
211
-
212
- .bottomContainer {
213
- position: absolute;
214
- bottom: 0px;
215
- left: 0px;
216
- width: 100%;
217
- height: var(--layout-bottom-height);
218
- }
219
-
220
- .leftContainer {
221
- position: absolute;
222
- top: 0px;
223
- left: 0px;
224
- width: var(--layout-left-width);
225
- height: 100%;
226
- pointer-events: none;
227
- }
228
-
229
- .rightContainer {
230
- position: absolute;
231
- top: 0px;
232
- right: 0px;
233
- width: var(--layout-right-width);
234
- height: 100%;
235
- pointer-events: none;
236
- }
237
-
238
- .centerdiv {
239
- position: absolute;
240
- top: 0px;
241
- left: 0px;
242
- bottom: 0px;
243
- width: 100%;
244
- background-color: transparent;
245
- overflow: hidden;
246
- }
247
-
248
- .centerContainer {
249
- pointer-events: none;
250
- }
251
-
252
- .mainContainer {
253
- pointer-events: none;
254
- }
255
-
256
256
  .window {
257
257
  display: flex;
258
258
  flex-flow: column;