-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathOEEex.css
164 lines (141 loc) · 3.06 KB
/
OEEex.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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
.OEEexHide,
.OEEexHide+div,
.OEEexHide+div+div,
.OEEexHide+div+div+div,
.OEEexHide+div+div+div+div{
display: none;
}
.OEEexHide+hr.divider,
.OEEexHide+div+hr.divider,
.OEEexHide+div+div+hr.divider,
.OEEexHide+div+div+div+hr.divider,
.OEEexHide+div+div+div+div+hr.divider{
display: none;
}
.OEEexVerbose{
background-color: #b5fffe;
}
.dark .OEEexVerbose{
background-color: #005e5d;
}
.OEEexUploadButton iron-icon{
min-width: 30px;
box-shadow: rgb(0 0 0 / 12%) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
color: var(--ee-legacy-blue);
font-size: var(--ee-button-font-size);
min-height: 30px;
}
.OEEexUploadButton.dragover iron-icon{
color: blueviolet;
}
ee-console-log.OEEexTerminal{
position: absolute;
bottom: -30px;
width: 98%;
}
ee-console-log.OEEexTerminal div{
display: inline-grid;
width: calc( 99% - 18px);
margin: 0!important;
background-color: transparent!important;
}
ee-console-log.OEEexTerminal input.jfk-textinput{
border: none;
background-color: transparent;
}
ee-console-log.OEEexTerminal input.jfk-textinput:focus{
box-shadow: none;
}
ee-console-log.OEEexTerminal input::placeholder{
color: transparent;
}
ee-tab-panel ee-tab:nth-child(2){
height: calc(100% - 45px);
}
.oeeMenuContextContainer {
z-index: 10;
display: flex;
flex-direction: column;
gap: 5px;
background: #f0f0f0;
border: 1px solid #d4d4d4;
padding: 5px;
position: absolute;
border-radius: 5px;
}
.oeeMenuContextButton {
display: block;
width: 100%;
box-sizing: border-box;
background-color: #fff; /* Default background */
border: none;
padding: 5px 10px;
text-align: left;
}
.oeeMenuContextButton:hover {
background-color: #e0e0e0; /* Darker background on hover */
}
.oeeSCSContainer{
z-index: 10;
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: none;
flex-direction: column;
gap: 5px;
background: #f0f0f0;
border: 1px solid #d4d4d4;
border-radius: 5px;
padding: 5px;
}
.oeeSCSContainer.visible{
display: flex;
}
.session-toggle {
display: flex;
border: 1px solid #d4d4d4;
border-radius: 5px;
overflow: hidden; /* Ensures the buttons fit nicely inside the container */
}
.toggle-btn {
flex: 1;
padding: 5px 10px;
border: none;
background: #e0e0e0;
color: #000;
cursor: pointer;
transition: background-color 0.3s;
}
.toggle-btn.left {
border-right: 1px solid #d4d4d4;
border-radius: 5px 0 0 5px;
}
.toggle-btn.right {
border-radius: 0 5px 5px 0;
}
.toggle-btn.active {
background: #f0f0f0;
}
.toggle-btn {
flex: 1;
padding: 5px 10px;
border: none;
background: #e0e0e0;
color: #000;
cursor: pointer;
transition: background-color 0.3s, box-shadow 0.3s;
position: relative; /* For z-index */
z-index: 1; /* Ensure active button appears above the non-active */
}
.toggle-btn.active, #validateSession:active {
background: #d0d0d0; /* Slightly darker to simulate being pressed */
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2); /* Inner shadow for "in" effect */
z-index: 2; /* Ensure active button is above others */
}
.oeeSCSContainer input.wrong{
color:red;
}
.remoteSelection{
background-color: rgba(0,255,0,0.5);
}