-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathstyles.css
103 lines (85 loc) · 1.66 KB
/
styles.css
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
.spaces-centered-vertically {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.spaces-centered {
position: relative;
top: 50%;
transform: translateY(-50%);
text-align: center;
}
.spaces-clearfix:after {
content: "";
display: table;
clear: both;
}
.spaces-resize-handle {
position: absolute;
z-index: 9999;
background: transparent;
}
.spaces-resize-handle:before {
content: "";
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: 2;
}
.spaces-resize-handle:after {
content: "";
position: absolute;
z-index: 1;
}
.spaces-touch-handle {
position: absolute;
z-index: 9998;
pointer-events: all;
background: transparent;
}
.spaces-resize-handle.resize-left:before {
cursor: w-resize;
}
.spaces-resize-handle.resize-top-left:before {
cursor: nw-resize;
}
.spaces-resize-handle.resize-right:before {
cursor: e-resize;
}
.spaces-resize-handle.resize-top-right:before {
cursor: ne-resize;
}
.spaces-resize-handle.resize-top:before {
cursor: n-resize;
}
.spaces-resize-handle.resize-bottom:before {
cursor: s-resize;
}
.spaces-resize-handle.resize-bottom-left:before {
cursor: sw-resize;
}
.spaces-resize-handle.resize-bottom-right:before {
cursor: se-resize;
}
.spaces-space {
overflow: hidden;
touch-action: none;
box-sizing: border-box;
}
.spaces-resizing .spaces-space {
transition: none !important;
}
.spaces-space .spaces-space-inner {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
box-sizing: border-box;
}
.spaces-space.scrollable .spaces-space-inner {
overflow: auto;
touch-action: auto;
}