-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtracker.css
More file actions
115 lines (106 loc) · 2.26 KB
/
tracker.css
File metadata and controls
115 lines (106 loc) · 2.26 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
107
108
109
110
111
112
113
114
115
/*
* LiteRadar tracker styles, MIT (c) 2019-2023 miktim@mail.ru
*/
.tracker-pane, .tracker-console, .tracker-title {
background-color: black;
/* background-image: url("./images/background.png");*/
text-align: left;
color: white;
font-weight: bold;
font: 16px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
div.tracker-scroll {
display: block;
cursor: pointer;
overflow-y: auto;
overflow-x: auto;
}
table.tracker-table {
table-layout: fixed;
border-collapse: collapse;
}
tr.tracker-table, th.tracker-table {
white-space: nowrap;
}
td.tracker-table, th.tracker-table, .tracker-cell, .tracker-cell-number, .tracker-cell-wide {
/* background-color: black;*/
background-color: transparent;
padding: 0px 5px;
border: 1px solid white;
text-overflow: clip;
font-weight: normal;
}
.tracker-cell-number {
text-align: right;
}
.tracker-cell-wide {
text-align: right;
width: 100%;
}
.tracker-invisible {
display: none;
}
.tracker-tooltip {
font-size: 14px;
background-color: black;
color: white;
}
/* The title of the pane with the close button */
.tracker-title, th.tracker-table {
background-color: rgb(96,96,96);
}
.tracker-title-text {
display: inline-block;
padding: 0px 5px;
text-overflow: ellipsis;
}
img.tracker-title {
width: 22px;
height: 22px;
float: right;
vertical-align: middle;
cursor: pointer;
}
/* Console message pane */
.tracker-console{
background-color: black;
border: 1px solid white;
padding: 0px 10px;
}
/* Search control */
.tracker-search{
border: 1px solid white;
background-color: black;
}
form.tracker-search{
display: inline-block;
padding-left: 6px;
padding-right: 3px;
border: none;
}
input.tracker-search{
margin-top: 5px;
width: 75px;
color: white;
font-weight: bold;
font: 16px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.tracker-button{
padding: 0px;
margin: 0px;
}
div.tracker-button{
float: right;
margin-left: 5px;
background-color: black;
border: 1px solid black;
cursor: pointer;
}
img.tracker-button {
margin-left: 2px;
margin-right: 2px;
width: 36px;
height: 36px;
vertical-align: middle;
cursor: pointer;
}