-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathedit.css
94 lines (73 loc) · 1.4 KB
/
edit.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
.button {
margin: 0 0 0 .5em;
height: 1.5em;
font-size: medium;
}
#search {
width: 100%;
height: 2em;
}
.source-code {
white-space: nowrap; overflow: auto;
width: calc(100% - (2 * 0.25em));
height: calc(100vh - 6.5em);
font-family: Lucida Console, Courier, monospace;
font-size: medium;
/* Without padding, one cannot see the cursor flash in the leftmost column */
padding: 0.25em;
/*
TODO: Night mode doesn't work well on OSX - mouse cursor is almost invisible
background-color: rgb(64, 64, 64);
color: white;
*/
resize: none;
}
#bottom_content {
width: 100%;
height: 2em;
margin-top: 0.5em;
margin-bottom: 0;
padding: 0;
}
#select_class_label {
margin-left: 1em;
}
#select_method_label {
margin-left: 0.25em;
}
#select_function_label {
margin-left: 1em;
}
#go_to_line_number_span {
margin-right: 1em;
margin-left: 1em;
}
#go_to_line_number {
width: 5em;
}
#match_case {
margin-left: 1em;
margin-right: 0.25em;
}
#action_buttons {
margin-left: 1em;
}
#cursor_position {
border-style: solid;
border-width: 1px;
border-color: black;
padding: 0.25em;
}
#cursor_position_container {
display: inline-block;
width: 6em;
}
#cancel {
margin-left: 1em;
}
#error_container {
display: none;
padding: 0.25em;
font-size: medium;
background: red;
}