blob: e475f4cc33fdd5134ef91dbb825af874838581ff (
plain)
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
|
body {
font-family: Arial, sans-serif;
font-size: 10pt;
}
a {
color: #009cff;
}
table {}
table#node_table {
width: 800px;
}
tr.odd {
background-color: #f1f1f1;
}
th {
text-align: left;
}
th.title {
width: 450px;
}
th.path {
width: 300px;
}
th.actions {
width: 150px;
}
td {}
.page_editor input[type=text] {
width: 600px;
}
.page_editor textarea {
width: 600px;
}
|