-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtuxedo.css
More file actions
106 lines (88 loc) · 1.64 KB
/
tuxedo.css
File metadata and controls
106 lines (88 loc) · 1.64 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
.tuxedo_console {
white-space: pre;
word-wrap: break-word;
font-family: consolas, monospace;
font-size: 14px;
background-color: #101010;
color: #c0c0c0;
overflow-y: scroll;
}
.tuxedo_buffer {
padding: 4px;
}
.tuxedo_console:focus {
outline-width: 0px;
}
.tuxedo_cursor {
position: absolute;
display: inline-block;
}
.tuxedo_caret {
width: 2px;
height: 18px;
background-color: #c0c0c0;
}
.tuxedo_text {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
white-space: normal;
}
.invisible {
display: none;
}
.tuxedo_input {
display: inline;
}
.tuxedo_output {
/* add 1px padding so that children's margin is included in parent's border box */
padding: 1px;
}
.tuxedo_output:hover {
background-color: #202020;
}
.tuxedo_output_toolbar {
position: relative;
height: 0px;
}
.tuxedo_output_toolbar_buttons {
position: absolute;
top: -19px;
left: -1px;
z-index: 100;
display: none;
}
.tuxedo_output:hover .tuxedo_output_toolbar_buttons {
display: block;
}
.tuxedo_output_toolbar_button {
cursor: pointer;
padding: 2px;
background-color: #202020;
}
.tuxedo_output_toolbar_button:hover {
color: white;
}
.tuxedo_auto_complete {
position: absolute;
width: 300px;
left: 0px;
top: 0px;
border-width: 1px;
border-style: solid;
border-color: #808080;
overflow-x: hidden;
overflow-y: auto;
padding: 2px;
background-color: #101010;
z-index: 1000;
}
.tuxedo_auto_complete_item {
white-space: nowrap;
font-size: 12px;
}
.tuxedo_auto_complete_item_focused {
background-color: #303030;
}
.tuxedo_auto_complete_item:hover {
background-color: #202020;
cursor: pointer;
}