forked from andyjy/Process-Monitor-for-Chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
116 lines (103 loc) · 1.56 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
body {
overflow: hidden;
margin: 0 0 35px;
padding: 5px;
background: #f6f6f6;
color: #333;
font-family: sans-serif;
}
table {
border: none;
border-spacing: 0;
table-layout: fixed;
}
div, td, th {
padding: 1px 3px;
font-size: 10pt;
margin-top: 1px;
overflow: hidden;
text-align: left;
white-space: nowrap;
}
#controls {
padding-bottom: 6px;
}
th {
border-bottom: 1px solid #ccc;
padding: 5px 3px;
}
th.cpu {
width: 2.5em;
}
th.memory {
width: 4.5em;
}
th.actions {
width: 14em;
text-align: center;
}
th.process {
text-align: left;
padding-left: 24px;
}
#process_list {
height: 280px;
width: 700px;
overflow-y: scroll;
background: white;
}
#process_list img {
vertical-align: bottom;
padding-right: 5px;
}
th.cpu, td.cpu, th.memory, td.memory {
text-align: right;
}
td.memory, th.memory {
padding-right: 10px;
}
td.process {
overflow: hidden;
}
td.actions {
text-align: right;
}
tr:nth-child(even) {
background-color: #F0F8FF;
}
tr.warn {
background-color: #FCC;
}
tr.selected {
background-color: #C6E2FF;
}
canvas#cpu_graph {
margin-top: 10px;
border: 1px solid #ccc;
border-width: 1px 0;
}
footer {
color: gray;
font-size: 11px;
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 5px;
text-align: center;
}
#paused_msg {
position: absolute;
top: 7px;
left: 50%;
background-color: #fcf8e3;
border: 1px dotted #c09853;
border-radius: 3px;
padding: 3px;
font-size: 11px;
width: 27em;
margin-left: -12em;
display: none;
color: #c09853;
text-align: center;
}