xframelib 0.8.1 → 0.8.3

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,46 @@
1
+ .window {
2
+ display: flex;
3
+ flex-flow: column;
4
+ position: absolute;
5
+ border-radius: 4pt 4pt 0 0;
6
+ }
7
+
8
+ .titlebar {
9
+ display: flex;
10
+ flex-flow: row nowrap;
11
+ border-radius: 4pt 4pt 0 0;
12
+ font-family: sans-serif;
13
+ padding: 0.5em;
14
+ flex: 0 0 auto;
15
+ }
16
+
17
+ .title {
18
+ flex-grow: 1;
19
+ white-space: nowrap;
20
+ overflow: hidden;
21
+ text-overflow: ellipsis;
22
+ }
23
+
24
+ .content {
25
+ flex-grow: 1;
26
+ padding: 0.5em;
27
+ }
28
+
29
+ .draggable-handle {
30
+ cursor: move;
31
+ }
32
+
33
+ .fade-enter,
34
+ .fade-leave-to {
35
+ opacity: 0;
36
+ transform: scale(0.9);
37
+ }
38
+
39
+ .fade-enter-active,
40
+ .fade-leave-active {
41
+ transition: 0.2s;
42
+ }
43
+
1
44
  .splitpanes {
2
45
  display: flex;
3
46
  width: 100%;
@@ -108,49 +151,6 @@
108
151
  margin-top: 1px;
109
152
  }
110
153
 
111
- .window {
112
- display: flex;
113
- flex-flow: column;
114
- position: absolute;
115
- border-radius: 4pt 4pt 0 0;
116
- }
117
-
118
- .titlebar {
119
- display: flex;
120
- flex-flow: row nowrap;
121
- border-radius: 4pt 4pt 0 0;
122
- font-family: sans-serif;
123
- padding: 0.5em;
124
- flex: 0 0 auto;
125
- }
126
-
127
- .title {
128
- flex-grow: 1;
129
- white-space: nowrap;
130
- overflow: hidden;
131
- text-overflow: ellipsis;
132
- }
133
-
134
- .content {
135
- flex-grow: 1;
136
- padding: 0.5em;
137
- }
138
-
139
- .draggable-handle {
140
- cursor: move;
141
- }
142
-
143
- .fade-enter,
144
- .fade-leave-to {
145
- opacity: 0;
146
- transform: scale(0.9);
147
- }
148
-
149
- .fade-enter-active,
150
- .fade-leave-active {
151
- transition: 0.2s;
152
- }
153
-
154
154
  .layoutContainer {
155
155
  position: relative;
156
156
  width: 100%;