summaryrefslogtreecommitdiff
path: root/public/stylesheets/admin.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/stylesheets/admin.css')
-rw-r--r--public/stylesheets/admin.css64
1 files changed, 50 insertions, 14 deletions
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css
index e077918..faebbea 100644
--- a/public/stylesheets/admin.css
+++ b/public/stylesheets/admin.css
@@ -3,6 +3,7 @@
3body { 3body {
4 font-family: Helvetica, Arial, sans-serif; 4 font-family: Helvetica, Arial, sans-serif;
5 font-size: 12px; 5 font-size: 12px;
6 margin: 0px;
6} 7}
7 8
8a { 9a {
@@ -64,33 +65,38 @@ div.pagination span.current, div.pagination a:hover {
64 text-align: right; 65 text-align: right;
65} 66}
66 67
67#navigation, #subnavigation { 68#navigation {
68 margin-left: 0px; 69 position: relative;
70 margin-top: 10px;
71}
72
73#navigation div {
69 float: left; 74 float: left;
70} 75}
71 76
77
72#navigation a:hover { 78#navigation a:hover {
73 color: #ffffff; 79 color: #ffffff;
74 background-color: #000000; 80 background-color: #000000;
75} 81}
76 82
77#navigation a, #subnavigation a { 83#main_navigation a, #sub_navigation a {
78 letter-spacing: 1px; 84 letter-spacing: 1px;
79 padding-left: 5px; 85 padding-left: 5px;
80 padding-right: 5px; 86 padding-right: 5px;
81 text-transform: lowercase; 87 text-transform: lowercase;
82} 88}
83 89
84#subnavigation a { 90#sub_navigation a {
85 color: #969696; 91 color: #969696;
86} 92}
87 93
88#subnavigation a:hover { 94#sub_navigation a:hover {
89 color: #ffffff; 95 color: #ffffff;
90 background-color: #ff9600; 96 background-color: #ff9600;
91} 97}
92 98
93#subnavigation a.selected { 99#sub_navigation a.selected {
94 color: #ffffff; 100 color: #ffffff;
95 background-color: #ff9600; 101 background-color: #ff9600;
96} 102}
@@ -100,9 +106,6 @@ div.pagination span.current, div.pagination a:hover {
100 background-color: #000000; 106 background-color: #000000;
101} 107}
102 108
103#admin_search {
104}
105
106/* Nodes */ 109/* Nodes */
107 110
108table#node_table { 111table#node_table {
@@ -211,12 +214,10 @@ input[type=text]#page_title {
211} 214}
212 215
213input[type=text]#tag_list { 216input[type=text]#tag_list {
214 width: 690px;
215 padding: 5px; 217 padding: 5px;
216} 218}
217 219
218input[type=text]#node_slug { 220input[type=text]#node_slug {
219 width: 690px;
220 padding: 5px; 221 padding: 5px;
221} 222}
222 223
@@ -235,14 +236,14 @@ input[type=radio] {
235} 236}
236 237
237textarea#page_abstract { 238textarea#page_abstract {
238 height: 150px;
239 width: 690px; 239 width: 690px;
240 height: 150px;
240 padding: 5px; 241 padding: 5px;
241} 242}
242 243
243#page_editor textarea#page_body { 244#page_editor textarea#page_body {
244 height: 600px;
245 width: 700px; 245 width: 700px;
246 height: 600px;
246} 247}
247 248
248#page_editor #metadata, #page_editor #content { 249#page_editor #metadata, #page_editor #content {
@@ -303,4 +304,39 @@ div#draft_list table tr:hover {
303table tr.header { 304table tr.header {
304 height: 20px; 305 height: 20px;
305 text-align: left; 306 text-align: left;
306} \ No newline at end of file 307}
308
309#search_widget {
310 position: absolute;
311 top: 20px;
312 left: 400px;
313 width: 300px;
314 border: 1px solid #000000;
315 -webkit-box-shadow: 3px 3px 5px #b1b1b1;
316 -moz-box-shadow: 10px 10px 5px #888, 10px 10px 30px rgba(0,0,0,0.4);
317 background-color: #ffffff;
318 padding: 3px;
319 text-align: center;
320}
321
322#search_widget span {
323 font-size: 18px;
324}
325
326#search_widget input {
327 width: 210px;
328 font-size: 18px;
329}
330
331#search_widget #search_results {
332 padding: 4px;
333 text-align: left;
334}
335
336table#content th.description {
337 width: 100px;
338}
339
340table#content th.content {
341 width: 690px;
342}