diff options
author | chrisaga <chrisaga@piwigo.org> | 2005-08-19 21:22:34 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2005-08-19 21:22:34 +0000 |
commit | fc5e8e27c7a7bb9335bb8d1cca32bd5f7431ce7d (patch) | |
tree | 9a098eb0465c27b0d2a9a7f83a49a6b03ca937dd /template/cclear/default-layout.css | |
parent | dded962ded654bbb73eb144d77bea681aad95868 (diff) |
cclear template almost working good for BSF
git-svn-id: http://piwigo.org/svn/trunk@837 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/cclear/default-layout.css | 37 |
1 files changed, 35 insertions, 2 deletions
diff --git a/template/cclear/default-layout.css b/template/cclear/default-layout.css index d4be6120a..cd86b3d47 100644 --- a/template/cclear/default-layout.css +++ b/template/cclear/default-layout.css @@ -37,7 +37,7 @@ H2 { A { text-decoration:none; - border-bottom: 1px dotted #000000; + /*border-bottom: 1px dotted #000000;*/ } A:hover { border-bottom-style: solid; @@ -55,13 +55,14 @@ IMG { } /** General defaults **/ -ul, dl { text-align: left;} +ul, dl, li { text-align: left;} /** forms **/ div.formbox { width: 70%; margin: 0 auto 1em auto; } +form { padding: 0.5em; } /* form row are dl instead of table rows */ form dl { text-align: left; /* must set it there otherwise IE render dl.biglabel dt incorectly */ @@ -115,6 +116,15 @@ form table { font-size: 80%; } +textarea.description { + height: 100px; + width: 500px; + overflow: auto; +} +select.categoryList { + width: 400px; +} + /** go to an admin.css ? **/ .table2 { border: 1px solid #000000; @@ -122,3 +132,26 @@ form table { padding:0px; } form#add_virtual p { text-align: left; } +form#categoryOrdering p { + text-align: left; + margin-top: 1em; + margin-bottom: 1em; +} +form#categoryOrdering>ul { + list-style: none; + padding: 0; + margin: 0; +} + +form#categoryOrdering>ul>li { + border: 1px solid grey; + padding: 0px 5px; + margin-bottom: 5px; +} + +form#categoryOrdering ul.categoryActions { + float: right; + margin-top: 5px; +} + +form#cat_modify table { width: auto; } |