1 | .subscriptions_list { |
---|
2 | width:700px; |
---|
3 | border-left: 1px solid #444; |
---|
4 | border-right: 1px solid #444; |
---|
5 | margin: 1em auto; |
---|
6 | padding: 0; |
---|
7 | background-color:#222; |
---|
8 | border-spacing:0; |
---|
9 | text-align: left; |
---|
10 | } |
---|
11 | |
---|
12 | .subscriptions_list td, .subscriptions_list th { |
---|
13 | padding:5px 5px 2px 5px; |
---|
14 | vertical-align:center; |
---|
15 | border-top: 1px solid #444; |
---|
16 | border-bottom: 1px solid #111; |
---|
17 | } |
---|
18 | .subscriptions_list .chkb { |
---|
19 | text-align:center; |
---|
20 | } |
---|
21 | .subscriptions_list td.info { |
---|
22 | width:200px; |
---|
23 | padding-top:2em; |
---|
24 | vertical-align:top; |
---|
25 | } |
---|
26 | .subscriptions_list tr .actions { |
---|
27 | visibility:hidden; |
---|
28 | } |
---|
29 | .subscriptions_list tr:hover .actions { |
---|
30 | visibility:visible; |
---|
31 | } |
---|
32 | .subscriptions_list td.date { |
---|
33 | width:250px; |
---|
34 | padding-top:2em; |
---|
35 | vertical-align:top; |
---|
36 | } |
---|
37 | |
---|
38 | .subscriptions_list tr.row2 { background-color:#222; } |
---|
39 | .subscriptions_list tr.row1 { background-color:#333; } |
---|
40 | |
---|
41 | .subscriptions_list tr.not-validated { background-color:#433; } |
---|
42 | |
---|
43 | .subscriptions_list tr.header th, .subscriptions_list tr.footer td |
---|
44 | { |
---|
45 | height:30px; |
---|
46 | } |
---|
47 | .subscriptions_list tr.header th, .subscriptions_list tr.footer.row1 td { |
---|
48 | |
---|
49 | background: #333333; |
---|
50 | background: -moz-linear-gradient(top, #333333 0%, #222222 100%); |
---|
51 | background: -webkit-linear-gradient(top, #333333 0%,#222222 100%); |
---|
52 | background: -o-linear-gradient(top, #333333 0%,#222222 100%); |
---|
53 | background: -ms-linear-gradient(top, #333333 0%,#222222 100%); |
---|
54 | background: linear-gradient(top, #333333 0%,#222222 100%); |
---|
55 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#222222',GradientType=0 ); |
---|
56 | } |
---|
57 | .subscriptions_list tr.footer.row2 td { |
---|
58 | background: #222222; |
---|
59 | background: -moz-linear-gradient(top, #222222 0%, #333333 100%); |
---|
60 | background: -webkit-linear-gradient(top, #222222 0%,#333333 100%); |
---|
61 | background: -o-linear-gradient(top, #222222 0%,#333333 100%); |
---|
62 | background: -ms-linear-gradient(top, #222222 0%,#333333 100%); |
---|
63 | background: linear-gradient(top, #222222 0%,#333333 100%); |
---|
64 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#333333',GradientType=0 ); |
---|
65 | } |
---|
66 | |
---|
67 | .subscriptions_list img.thumbnail { |
---|
68 | max-width:120px; |
---|
69 | max-height:90px; |
---|
70 | } |
---|
71 | |
---|
72 | .subscriptions_list a.unsub { |
---|
73 | color:#f66; |
---|
74 | } |
---|
75 | .subscriptions_list a.unsub:hover { |
---|
76 | color:#f11; |
---|
77 | } |
---|