forked from rostok/ubichr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
199 lines (184 loc) · 3.95 KB
/
popup.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
body {
width: 780px;
height: 560px;
margin: 0;
background-color: black;
font-size: 12pt;
font-family: Calibri, Helvetica, Arial;
font-weight: normal;
}
#ubiq_window {
position: fixed;
left: 0px;
top: 0px;
visibility: visible;
width: 780px;
height: 560px;
border: 0px;
padding: 0px;
z-index: 99999;
background: #2d2d2d;
overflow: hidden;
}
#ubiq-input-panel {
border: 0;
margin: 0;
width: 780px;
height: 55px;
}
#ubiq_input {
border: 0px;
border-bottom: 1px outset gray;
width: 100%;
height: 100%;
margin: 0px;
padding-left: 4pt;
padding-right: 4pt;
background: #d3d3d3;
color: #333;
font-size: 18pt;
-webkit-appearance: none;
outline: none;
font-family: Geneva, Tahoma, Verdana;
text-shadow: #888 0px 1px .2px;
}
#ubiq_input:focus {
color:black;
}
#ubiq-command-tip, #ubiq-command-preview, #ubiq-results-panel {
border: 0;
display: block;
}
#ubiq-bottom-panel {
height: 100%;
}
#ubiq-command-panel {
width: 540px;
height: 100%;
vertical-align: top;
}
#ubiq-command-tip {
color: #ddd;
font-style: italic;
width: 540px;
/* height: 0px; */
}
#ubiq-command-preview {
color: #ddd;
/* width: 540px; */
width: 100%;
height: 505px;
position: relative;
/* overflow-y: auto; */
/* zoom overflow dirty fix */
overflow-y: hidden;
}
#ubiq-command-preview a {
color:white;
text-decoration: bold;
font-size: 11.5pt;
}
#ubiq-command-preview #ubiq-preview-div {
--zoom: 1.0;
transform: scale(var(--zoom)); transform-origin: 0px 0px;
-moz-transform: scale(var(--zoom)); -moz-transform-origin: 0 0;
-webkit-transform: scale(var(--zoom)); -webkit-transform-origin: 0 0;
width: calc(100% / var(--zoom)) !important;
height: calc(100% / var(--zoom)) !important;
height: 100%;
overflow: hidden;
position: relative; border:0px;
}
#ubiq-command-preview table {
border-collapse: collapse;
border-spacing: 1px;
border:1px solid #666;
}
#ubiq-preview-div #ubiq-preview-frm {
--scrollX: 0px;
--scrollY: 0px;
width: calc(100% + var(--scrollX)) !important;
height: calc(100% + var(--scrollY)) !important;
background-color: transparent;
border: 0px;
}
#ubiq-result-panel {
vertical-align: top;
width: 10px;
height: 505px;
margin: 0;
clear: both;
text-align: left;
color: white;
}
/*
#ubiq-result-panel.result {
padding-left: 4pt;
padding-right: 4pt;
}
*/
#ubiq-result-panel ul {
padding:0;
margin:0;
width: 240px;
height: 100%;
background: linear-gradient(90deg, #3b3b3b 90%, transparent 10%, rgba(0,0,0,0) 0), #2d2d2d;
background-size: 257px auto;
}
#ubiq-result-panel li {
color: black;
list-style: none;
margin: 0;
padding-top: 2pt;
vertical-align: middle;
padding-left: 6px;
font-size: 12pt;
height: 22pt;
width: 225px;
background-color: #a9a9a9;
background-repeat: repeat;
cursor: default;
}
#ubiq-result-panel li img {
height: 20pt;
}
#ubiq-result-panel li.selected {
background-color: #d3d3d3;
/* background: linear-gradient(#efefef, #b0b0b0); */
position:relative;
width: 225px;
}
#ubiq-result-panel li.external {
text-shadow: 0px 0px 0px #FF0, 0px 0px 4px #880;
}
#ubiq-result-panel .more-commands {
width: 225px;
line-height: 10px;
text-align: center;
}
#ubiq-result-panel li.selected::after {
position:absolute;
top:0%;
left:100%;
content:"";
margin-left:0px;
width: 0;
height: 0;
border-top: 12pt solid transparent;
border-bottom: 12pt solid transparent;
border-left: 6pt solid #d3d3d3;
}
[data-option=selected] {
background-color: #404040;
/* border-collapse: collapse; */
/* border:1px solid red; */
}
span.texticon {
display: inline-block;
font-size: 1em;
height: 22pt;
width: 22pt;
vertical-align: middle;
text-align: center;
margin: 0px
}