File: sheet.css

package info (click to toggle)
simba 0.8.4-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 504 kB
  • ctags: 172
  • sloc: perl: 2,645; sh: 188; makefile: 51
file content (158 lines) | stat: -rw-r--r-- 3,048 bytes parent folder | download | duplicates (5)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
table.sheet
{
	border: 1px solid #ccc;
	background-color: #e6e6e6;
	margin: 4px 0;
	width: 100%;
}

table.sheet th,
table.sheet thead td
{
	text-align: left;
	font-weight: normal;
	padding: 2px 1ex;
	border: 1px solid;
	color: #000;
	background-color: #e6e6e6;
	border-color: #ccc #666 #666 #ccc;
	white-space: nowrap;
	cursor:	default;
}

table.sheet th:active,
table.sheet thead td:active
{
	background-color: #f6f6f6;
	border-color: #666 #ccc #ccc #666;
}

table.sheet thead td[_sortType=None]:active
{
	background-color: #e6e6e6;
	border-color: #ccc #999 #999 #ccc;
}

table.sheet .sort-arrow {
	width:					11px;
	height:					11px;
	background-position:	center center;
	background-repeat:		no-repeat;
	margin:					0 2px;
	float: right;
	margin-top: -15px;
}

table.sheet .sort-arrow.descending { background-image: url(http://ftp.iasi.roedu.net/gfx/down.png); }
table.sheet .sort-arrow.ascending { background-image: url(http://ftp.iasi.roedu.net/gfx/up.png); }

table.sheet tbody tr td span {
   display: none;
}

table.sheet tfoot tr td,
table.sheet tbody tr td {
	border-bottom: 1px solid #fff;
}

table.sheet tfoot tr:hover td,
table.sheet tbody tr:hover td {
	border-bottom-color: #ff9900;
}

table.sheet tbody tr.odd {
	color: inherit;
	background-color: #fff;
}
table.sheet tbody tr.even {
	color: inherit;
	background-color: #f6f6f6;
}

table.sheet tbody tr.in-progress td a,
table.sheet tbody tr.in-progress td {
   color: blue;
}

table.sheet tfoot td,
table.sheet tbody td {
	padding: 2px 4px;
	vertical-align: top;
	text-align: left;
}

table.sheet tbody td.idx,
table.sheet td.action,
table.sheet td.minimal,
table.sheet td.url,
table.sheet tfoot td.speed,
table.sheet tfoot td.size,
table.sheet tfoot td.update,
table.sheet tfoot td.duration,
table.sheet tbody td.speed,
table.sheet tbody td.size,
table.sheet tbody td.update,
table.sheet tbody td.duration
{
	white-space: nowrap;
	width: 1em;
	padding: 2px .4em;
}

table.sheet tfoot td.speed,
table.sheet tfoot td.size,
table.sheet tfoot td.update,
table.sheet tfoot td.duration,
table.sheet tbody td.idx,
table.sheet tbody td.number,
table.sheet tbody td.speed,
table.sheet tbody td.size
{ text-align: right; }

table.sheet td.action,
table.sheet td.center,
table.sheet td.updated,
table.sheet td.duration,
table.sheet td.url
{ text-align: center; }

table.sheet td.log {
   text-align: center;
   padding: 0;
   margin:  0;
}

table.sheet>tbody>tr>td:first-child { padding-left: 0px; }

table.sheet tbody tr.error td,
table.sheet tbody tr.error td a
{ color: #c00; }

table.search-table tbody tr td,
table.search-table {
   border-style: none;
   background-color: white;
}

table.sheet td.search-table-title {
   text-align: center;
   vertical-align: middle;
}

table.sheet tbody td.search-table-label ,
table.sheet tbody td.search-table-field {
   width: 50%;
   vertical-align: middle;
}

table.sheet tbody td.search-table-label {
   text-align: right;
}

table.sheet tbody td.search-table-field {
   text-align: left;
}

/*
table.sheet thead td { padding-right: 12px; }
*/