This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
107 lines (84 loc) · 1.37 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
body {
font-family: sans-serif;
}
.entry-list {
padding-bottom: 3px;
}
.entry {
margin-top: -1px;
margin-left: 5px;
border: 1px solid;
border-radius: 2px;
padding-left: 2px;
padding-right: 2px;
padding-bottom: 2px;
text-decoration: none;
font-size: smaller;
}
.entry a {
text-decoration: none;
}
.landed, .closed {
background-color: #00ee00;
border-color: #00dd00;
}
.closed {
text-decoration: line-through;
}
.pending {
background-color: #eeee00;
border-color: #dddd00;
}
.aborted {
background-color: #ee0000;
background-color: #dd0000;
}
.author {
color: blue;
}
.entry-details {
display: none;
}
#checkins {
position: relative;
}
#checkin-table-wrap {
width: 100%;
overflow: auto;
border: 1px solid #eee;
}
#progress {
float: right;
}
#checkin-table {
border-collapse: collapse;
}
#checkin-table td a {
padding: 0px;
border: 1px solid #fff;
cursor: pointer;
}
#checkin-table td a {
display: block;
}
#checkin-table .mine a {
border: 1px solid #333;
}
#checkin-table a {
min-width: 10px;
}
#feed-entries td:hover a {
border: 1px solid #00e;
}
#chrome-status td {
text-align: right;
}
#entry-details {
height: 150px;
overflow: auto;
background-color: #eee;
padding: 4px;
}
div.entry-details {
white-space: pre-wrap;
}