summaryrefslogtreecommitdiff
path: root/public/stylesheets/admin.css
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-03-21 15:00:50 +0100
committerhukl <contact@smyck.org>2009-03-21 15:00:50 +0100
commit40bdc8384a33019c1771fbad888525505f61aa7c (patch)
tree2fcb3593548c42f1a34b0b659d7ca7de09222ecc /public/stylesheets/admin.css
parentcc39dc70e4c03e72bb9d72f3cb0d49ea165e303c (diff)
cleaned up the node index view
Diffstat (limited to 'public/stylesheets/admin.css')
-rw-r--r--public/stylesheets/admin.css80
1 files changed, 71 insertions, 9 deletions
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css
index 49578f0..d2d966f 100644
--- a/public/stylesheets/admin.css
+++ b/public/stylesheets/admin.css
@@ -1,6 +1,6 @@
1body { 1body {
2 font-family: Arial, sans-serif; 2 font-family: 'Lucida Grande', Arial, sans-serif;
3 font-size: 10pt; 3 font-size: 11px;
4} 4}
5 5
6a { 6a {
@@ -10,31 +10,75 @@ a {
10table {} 10table {}
11 11
12table#node_table { 12table#node_table {
13 width: 1000px; 13 border-collapse: collapse;
14 width: 880px;
15}
16
17table#node_table tr.table_headers {
18 height: 20px;
19}
20
21table#node_table th {
22 padding-left: 15px;
23}
24
25table#node_table tr {
26 height: 65px;
27}
28
29table#node_table tr.odd:hover, table#node_table tr.even:hover {
30 background-color: #E4F2FD;
31}
32
33table#node_table td h4 {
34 margin-top: 0px;
35 margin-bottom: 5px;
36}
37
38table#node_table td p {
39 margin-top: 0px;
40 margin-bottom: 0px;
41}
42
43table#node_table td a {
44 text-decoration: none;
45}
46
47table#node_table td a:hover {
48 text-decoration: underline;
49}
50
51tr.even {
52 border: 1px solid #808080;
14} 53}
15 54
16tr.odd { 55tr.odd {
17 background-color: #f1f1f1; 56 border: 1px solid #808080;
57 background-color: #f5f5f5;
18} 58}
19 59
20th { 60th {
21 text-align: left; 61 text-align: left;
22} 62}
23 63
64th.node_id {
65 width: 30px;
66}
67
24th.title { 68th.title {
25 width: 370px; 69 width: 450px;
26} 70}
27 71
72
28th.path { 73th.path {
29 width: 300px;
30} 74}
31 75
32th.actions { 76th.actions {
33 width: 180px; 77 width: 150px;
34} 78}
35 79
36th.editor { 80th.editor {
37 width: 120px; 81 width: 150px;
38} 82}
39 83
40th.revision { 84th.revision {
@@ -42,7 +86,25 @@ th.revision {
42} 86}
43 87
44td { 88td {
45 padding: 3px; 89 padding-left: 15px;
90 padding-right: 0px;
91}
92
93td.title {
94 font-size: 11px;
95}
96
97td.path {
98 font-size: 11px;
99}
100
101td.actions {
102 font-size: 11px;
103}
104
105
106td div.actions {
107 padding-top: 5px;
46} 108}
47 109
48input[type=text] { 110input[type=text] {