-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathstyles.css
More file actions
145 lines (123 loc) · 3.47 KB
/
Copy pathstyles.css
File metadata and controls
145 lines (123 loc) · 3.47 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
body.reflex-col-resize {
cursor: col-resize;
}
body.reflex-row-resize {
cursor: row-resize;
}
.reflex-container {
justify-content: flex-start; /* align items in Main Axis */
align-items: stretch; /* align items in Cross Axis */
align-content: stretch;
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Chrome */
display: flex;
position: relative;
height: 100%;
width: 100%;
}
.reflex-container.horizontal {
flex-direction: column;
min-height: 1px;
}
.reflex-container.vertical {
flex-direction: row;
min-width: 1px;
}
.reflex-container > .reflex-element {
position: relative;
overflow: auto;
height: 100%;
width: 100%;
}
.reflex-container.reflex-resizing > .reflex-element {
pointer-events: none;
user-select: none;
}
.reflex-container > .reflex-element > .reflex-size-aware {
height: 100%;
width: 100%;
}
.reflex-container > .reflex-splitter {
background-color: #eeeeee;
z-index: 100;
}
.reflex-container > .reflex-splitter.active,
.reflex-container > .reflex-splitter:hover {
background-color: #c6c6c6;
transition: all 1s ease;
}
.horizontal > .reflex-splitter {
border-bottom: 1px solid #c6c6c6;
border-top: 1px solid #c6c6c6;
cursor: row-resize;
width: 100%;
height: 2px;
}
.reflex-element.horizontal .reflex-handle {
cursor: row-resize;
user-select: none;
}
.reflex-container.horizontal > .reflex-splitter:hover,
.reflex-container.horizontal > .reflex-splitter.active {
border-bottom: 1px solid #eeeeee;
border-top: 1px solid #eeeeee;
}
.reflex-container.vertical > .reflex-splitter {
border-right: 1px solid #c6c6c6;
border-left: 1px solid #c6c6c6;
cursor: col-resize;
height: 100%;
width: 2px;
}
.reflex-element.vertical .reflex-handle {
cursor: col-resize;
user-select: none;
}
.reflex-container.vertical > .reflex-splitter:hover,
.reflex-container.vertical > .reflex-splitter.active {
border-right: 1px solid #eeeeee;
border-left: 1px solid #eeeeee;
}
.reflex-container > .reflex-splitter.reflex-thin {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;
opacity: 0.2;
z-index: 100;
}
.reflex-container > .reflex-splitter.reflex-thin.active
.reflex-container > .reflex-splitter.reflex-thin:hover {
transition: all 1.5s ease;
opacity: 0.5;
}
.reflex-container.horizontal > .reflex-splitter.reflex-thin {
border-bottom: 8px solid rgba(255, 255, 255, 0);
border-top: 8px solid rgba(255, 255, 255, 0);
height: 17px !important;
cursor: row-resize;
margin: -8px 0;
width: 100%;
}
.reflex-container.horizontal > .reflex-splitter.reflex-thin.active,
.reflex-container.horizontal > .reflex-splitter.reflex-thin:hover {
border-bottom: 8px solid rgba(228, 228, 228, 1);
border-top: 8px solid rgba(228, 228, 228, 1);
}
.reflex-container.vertical > .reflex-splitter.reflex-thin {
border-right: 8px solid rgba(255, 255, 255, 0);
border-left: 8px solid rgba(255, 255, 255, 0);
width: 17px !important;
cursor: col-resize;
margin: 0 -8px;
height: 100%;
}
.reflex-container.vertical > .reflex-splitter.reflex-thin.active,
.reflex-container.vertical > .reflex-splitter.reflex-thin:hover {
border-right: 8px solid rgba(228, 228, 228, 1);
border-left: 8px solid rgba(228, 228, 228, 1);
}