diff options
author | Kevin Chabowski <kevin@kch42.de> | 2012-05-26 21:52:40 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2012-05-26 21:52:40 +0200 |
commit | 88099c2986b9fd75fb4de3ae2066b66770bbe8ef (patch) | |
tree | c8086228367fb988a940b4408160076c5102c405 /ratatoeskr/cms_style/layout.css | |
parent | 0915d74865b0cab61c3a505e802b80ac048cdd3f (diff) | |
parent | 04b47bc50dd147ad2156a29bdb274049f99d9bce (diff) | |
download | ratatoeskr-cms-88099c2986b9fd75fb4de3ae2066b66770bbe8ef.tar.gz ratatoeskr-cms-88099c2986b9fd75fb4de3ae2066b66770bbe8ef.tar.bz2 ratatoeskr-cms-88099c2986b9fd75fb4de3ae2066b66770bbe8ef.zip |
Merge branch 'feature-ui-improvements' into develop
Diffstat (limited to 'ratatoeskr/cms_style/layout.css')
-rw-r--r-- | ratatoeskr/cms_style/layout.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ratatoeskr/cms_style/layout.css b/ratatoeskr/cms_style/layout.css index 1163887..aac132a 100644 --- a/ratatoeskr/cms_style/layout.css +++ b/ratatoeskr/cms_style/layout.css @@ -19,6 +19,7 @@ a:hover { body, html { margin: 0px; padding:0px; + background: white url(images/backendbg.png) bottom right no-repeat fixed; } hr { @@ -241,6 +242,10 @@ table.listtab td { border-top: 1px solid #eee; } +table.listtab th, table.listtab td { + padding: 0mm 1mm 0mm; +} + table.listtab tr:first-child td { border-top: 1px solid #666; } @@ -249,6 +254,10 @@ table.listtab tbody tr:hover { background: #eee; } +table.listtab tbody input[type="text"] { + width: 100%; +} + textarea.codeedit { font-family: monospace; } @@ -257,3 +266,21 @@ ul.bulletfree { list-style: none; padding-left: 0mm; } + +.metabar_element_expanded, .metabar_element_collapsed { + min-height: 12px; + padding-left: 12px; + cursor: pointer; +} + +.metabar_element_expanded:hover, .metabar_element_collapsed:hover { + text-decoration: underline; +} + +.metabar_element_expanded { + background: url(images/expandarrow_expanded.png) 0px 4px no-repeat; +} + +.metabar_element_collapsed { + background: url(images/expandarrow_collapsed.png) 0px 4px no-repeat; +}
\ No newline at end of file |