-
Notifications
You must be signed in to change notification settings - Fork 2
/
Synesthesia.WindowSystem.css
115 lines (91 loc) · 2.34 KB
/
Synesthesia.WindowSystem.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
104
105
106
107
108
109
110
111
112
113
114
115
.Synesthesia_WindowSystem {
position: relative;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
.Synesthesia_WindowSystem__node_window_container {
pointer-events: none;
overflow: hidden;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
.Synesthesia_WindowSystem__node_window_container * {
pointer-events: auto;
}
.Synesthesia_WindowSystem_NodeCanvas__canvas {
position: absolute;
top: 0px;
left: 0px;
}
.Synesthesia_WindowSystem_NodeWindow__main {
-webkit-user-select: none;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
flex-direction: column;
position: absolute;
overflow: hidden;
opacity: 0.85;
/* HACK: placement of node decoration
needs to be dependend upon border also. Maybe. */
margin-top: -1px;
margin-left: -1px;
border: 1px solid #808080;
border-radius: 2px;
color: #606060;
background-color: #f0f0f0;
-webkit-transition:
opacity ease-in-out 0.4s,
-webkit-transform ease-in-out 0.4s;
}
.Synesthesia_WindowSystem_NodeWindow__main:hover {
opacity: 1;
}
.Synesthesia_WindowSystem_NodeWindow__main.hidden {
-webkit-transform: rotateX(90deg) scale(0);
/*-webkit-transform: translateY(200px) scale(0.8);*/
opacity: 0;
}
.Synesthesia_WindowSystem_NodeWindow__main .title {
display: -webkit-flex;
-webkit-user-select: none;
cursor: -webkit-grab;
cursor: grab;
font-size: 11px;
-webkit-flex: 0 0 auto;
-moz-flex: 0 0 auto;
flex: 0 0 auto;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0)));
border-bottom: 1px solid #808080;
padding-left: 3px;
color: #606060;
-webkit-transition:
background-image ease-in-out 0.4s,
}
.Synesthesia_WindowSystem_NodeWindow__main .content {
position: relative;
overflow: hidden;
font-size: 11px;
-webkit-flex: 1 0 auto;
-moz-flex: 1 0 auto;
flex: 1 0 auto;
}
.Synesthesia_WindowSystem_NodeWindow__main .resize_grabber {
cursor: nwse-resize;
position: absolute;
bottom: 0px;
right: 0px;
width: 8px;
height: 8px;
border-width: 1px 0px 0px 1px;
border-style: solid;
border-color: #808080;
border-radius: 2px 0px 0px 0px;
background-color: rgba(255, 255, 255, 0.5);
}