forked from ReDEnergy/SessionSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_style.css
More file actions
149 lines (117 loc) · 2.31 KB
/
Copy path_style.css
File metadata and controls
149 lines (117 loc) · 2.31 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
146
147
148
149
/**
* Session-Sync
*/
#session-sync {
width: 100%;
height: 100%;
min-height: 400px;
margin: 0;
font-size: 12px;
font-family: "Open Sans", "Segoe UI", Arial, Helvetica, sans-serif;
color: #000 !important;
overflow: hidden;
-moz-user-select: none;
}
#session-sync[panel="false"] {
position: absolute;
}
#session-sync[panel="false"] .sessions-area .panel-resize-handle {
display: none;
}
/*
* Only DOM nodes from here
*/
#session-sync #overlay {
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.01);
position: absolute;
top: 0;
left: 0;
z-index: 2500;
display: none;
}
#session-sync #overlay[state="true"] {
display: block;
}
/*
* Panel Body
*/
#session-sync #body {
height: 100%;
}
#session-sync[config] .body {
background-color: rgba(255, 255, 255, 0.95);
}
#session-sync .sessions-area {
width: 100%;
height: 100%;
box-sizing: border-box;
transition: all 0.2s;
display: flex;
flex-direction: column;
}
#session-sync[show="false"] .sessions-area {
display: none;
}
#session-sync[state="pin"] .sessions-area {
top: 0;
right: 0;
margin: 0;
transform: translate(0);
}
#session-sync[state="centered"] .sessions-area {
top: calc(50% - 50px);
left: 50%;
transform: translate(-50%, -50%);
}
#session-sync[config] .sessions-area {
left: 400px;
top: 20%;
transform: translate(0);
}
#session-sync .sessions-area-body {
width: 100%;
overflow: hidden;
flex: 1;
display: flex;
flex-direction: row;
}
/*
* Container resize
*/
#session-sync[resize] .body {
background: rgba(255, 255, 255, 0.95) !important;
cursor: se-resize;
}
#session-sync[resize] .sessions-area {
transition: none;
}
#session-sync .sessions-area .panel-resize-handle
{
content: " ";
width: 12px;
height: 12px;
margin-top: -12px;
background: url("images/resize.png") center no-repeat !important;
position: absolute;
background: #DDD;
bottom: 0;
left: 0px;
cursor: sw-resize;
z-index: 10;
transform: rotate(90deg);
}
#session-sync .sessions-area .panel-resize-handle:hover
{
background: #1AB61A;
}
#session-sync .sessions-area .panel-resize-handle[resizing]
{
background: #2D92EB;
}
#clipboard {
position: absolute;
top: -100px;
z-index: -100;
}