xframelib 0.6.1 → 0.6.4

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,3 +1,147 @@
1
+ .layoutContainer {
2
+ width: 100%;
3
+ height: 100%;
4
+ padding: 0;
5
+ margin: 0;
6
+ --layout-top-height: 70px;
7
+ --layout-left-width: 200px;
8
+ --layout-right-width: 200px;
9
+ --layout-bottom-height: 60px;
10
+ --layout-centerback-backcolor: #020202;
11
+ --layout-top-zindex: 10000;
12
+ --layout-bottom-zindex: 10000;
13
+ --layout-center-zindex: 9999;
14
+ --layout-left-zindex: 10000;
15
+ --layout-right-zindex: 10000;
16
+ }
17
+
18
+ .topContainer {
19
+ position: absolute;
20
+ top: 0px;
21
+ left: 0px;
22
+ width: 100%;
23
+ height: var(--layout-top-height);
24
+ z-index: var(--layout-top-zindex);
25
+ pointer-events: none;
26
+ }
27
+
28
+ .bottomContainer {
29
+ position: absolute;
30
+ bottom: 0px;
31
+ left: 0px;
32
+ width: 100%;
33
+ height: var(--layout-bottom-height);
34
+ z-index: var(--layout-bottom-zindex);
35
+ pointer-events: none;
36
+ }
37
+
38
+ .leftContainer {
39
+ position: absolute;
40
+ top: 0px;
41
+ left: 0px;
42
+ width: var(--layout-left-width);
43
+ z-index: var(--layout-left-zindex);
44
+ height: 100%;
45
+ pointer-events: none;
46
+ }
47
+
48
+ .rightContainer {
49
+ position: absolute;
50
+ top: 0px;
51
+ right: 0px;
52
+ width: var(--layout-right-width);
53
+ z-index: var(--layout-right-zindex);
54
+ height: 100%;
55
+ pointer-events: none;
56
+ }
57
+
58
+ .centerdiv {
59
+ position: absolute;
60
+ top: 0px;
61
+ left: 0px;
62
+ bottom: 0px;
63
+ width: 100%;
64
+ background-color: transparent;
65
+ overflow: hidden;
66
+ pointer-events: none;
67
+ }
68
+
69
+ .vcpg {
70
+ border: 1px solid var(--border-color);
71
+ border-radius: 4px;
72
+ width: 100%;
73
+ }
74
+ .vcpg ::v-deep(.vcp) * {
75
+ box-sizing: border-box;
76
+ }
77
+ .vcpg ::v-deep(.vcp) .vcp__header {
78
+ background-color: var(--bg-color-header);
79
+ height: 30px;
80
+ border-bottom: 2px solid #c6bebd;
81
+ transition: background-color 0.3s ease;
82
+ }
83
+ .vcpg ::v-deep(.vcp) .vcp__header .vcp__header:hover {
84
+ background-color: var(--bg-color-header-hover);
85
+ }
86
+ .vcpg ::v-deep(.vcp) .vcp__header .vcp__header:active {
87
+ background-color: var(--bg-color-header-active);
88
+ }
89
+ .vcpg ::v-deep(.vcp) .vcp:not(:first-of-type) .vcp__header {
90
+ border-top: 2px solid var(--border-color);
91
+ }
92
+ .vcpg ::v-deep(.vcp) .vcp__header-title {
93
+ font-weight: 500;
94
+ }
95
+ .vcpg ::v-deep(.vcp) .vcp__body {
96
+ border-top: 1px solid var(--border-color);
97
+ background-color: var(--bg-color-body);
98
+ }
99
+
100
+ .vcp__header {
101
+ display: flex;
102
+ padding: 12px;
103
+ pointer-events: none;
104
+ }
105
+ .vcp--expandable .vcp__header {
106
+ pointer-events: auto;
107
+ cursor: pointer;
108
+ }
109
+ .vcp__header-title {
110
+ display: flex;
111
+ align-items: center;
112
+ flex: 1;
113
+ }
114
+ .vcp__header-icon {
115
+ display: flex;
116
+ align-items: center;
117
+ transition: transform 0.3s cubic-bezier(0.5, 0.25, 0, 1);
118
+ }
119
+ .vcp--expanded .vcp__header-icon {
120
+ transform-origin: center;
121
+ transform: rotate(180deg);
122
+ }
123
+ .vcp__header-icon > span {
124
+ display: flex;
125
+ height: 24px;
126
+ width: 24px;
127
+ }
128
+ .vcp__header-icon ::v-deep(svg) {
129
+ height: 100%;
130
+ width: 100%;
131
+ }
132
+ .vcp__body {
133
+ overflow: hidden;
134
+ transition: all 0.3s cubic-bezier(0.5, 0.25, 0, 1);
135
+ }
136
+ .vcp__body-content {
137
+ padding: 12px;
138
+ }
139
+
140
+ .slide-enter-from,
141
+ .slide-leave-to {
142
+ opacity: 0.25;
143
+ }
144
+
1
145
  .splitpanes {
2
146
  display: flex;
3
147
  width: 100%;
@@ -108,151 +252,6 @@
108
252
  margin-top: 1px;
109
253
  }
110
254
 
111
- .vcpg {
112
- border: 1px solid var(--border-color);
113
- border-radius: 4px;
114
- width: 100%;
115
- }
116
- .vcpg ::v-deep(.vcp) * {
117
- box-sizing: border-box;
118
- }
119
- .vcpg ::v-deep(.vcp) .vcp__header {
120
- background-color: var(--bg-color-header);
121
- height: 30px;
122
- border-bottom: 2px solid #c6bebd;
123
- transition: background-color 0.3s ease;
124
- }
125
- .vcpg ::v-deep(.vcp) .vcp__header .vcp__header:hover {
126
- background-color: var(--bg-color-header-hover);
127
- }
128
- .vcpg ::v-deep(.vcp) .vcp__header .vcp__header:active {
129
- background-color: var(--bg-color-header-active);
130
- }
131
- .vcpg ::v-deep(.vcp) .vcp:not(:first-of-type) .vcp__header {
132
- border-top: 2px solid var(--border-color);
133
- }
134
- .vcpg ::v-deep(.vcp) .vcp__header-title {
135
- font-weight: 500;
136
- }
137
- .vcpg ::v-deep(.vcp) .vcp__body {
138
- border-top: 1px solid var(--border-color);
139
- background-color: var(--bg-color-body);
140
- }
141
-
142
- .vcp__header {
143
- display: flex;
144
- padding: 12px;
145
- pointer-events: none;
146
- }
147
- .vcp--expandable .vcp__header {
148
- pointer-events: auto;
149
- cursor: pointer;
150
- }
151
- .vcp__header-title {
152
- display: flex;
153
- align-items: center;
154
- flex: 1;
155
- }
156
- .vcp__header-icon {
157
- display: flex;
158
- align-items: center;
159
- transition: transform 0.3s cubic-bezier(0.5, 0.25, 0, 1);
160
- }
161
- .vcp--expanded .vcp__header-icon {
162
- transform-origin: center;
163
- transform: rotate(180deg);
164
- }
165
- .vcp__header-icon > span {
166
- display: flex;
167
- height: 24px;
168
- width: 24px;
169
- }
170
- .vcp__header-icon ::v-deep(svg) {
171
- height: 100%;
172
- width: 100%;
173
- }
174
- .vcp__body {
175
- overflow: hidden;
176
- transition: all 0.3s cubic-bezier(0.5, 0.25, 0, 1);
177
- }
178
- .vcp__body-content {
179
- padding: 12px;
180
- }
181
-
182
- .slide-enter-from,
183
- .slide-leave-to {
184
- opacity: 0.25;
185
- }
186
-
187
- .layoutContainer {
188
- width: 100%;
189
- height: 100%;
190
- padding: 0;
191
- margin: 0;
192
- --layout-top-height: 70px;
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
255
  .window {
257
256
  display: flex;
258
257
  flex-flow: column;