diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-08 08:27:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-08 08:27:00 +0000 |
commit | 4627ade43ed6a9559a77062235c0931060136614 (patch) | |
tree | d6035e59cce00f7dfe171b2630402a9344062890 | |
parent | 6ac9f88959fd67104e8a7f5cf090954a2ed15218 (diff) | |
download | brdo-4627ade43ed6a9559a77062235c0931060136614.tar.gz brdo-4627ade43ed6a9559a77062235c0931060136614.tar.bz2 |
- CSS improvements. Patch #38 by Al.
-rw-r--r-- | misc/drupal.css | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/misc/drupal.css b/misc/drupal.css index c5403627d..d862c4d2f 100644 --- a/misc/drupal.css +++ b/misc/drupal.css @@ -1,10 +1,17 @@ form { margin: 0; padding: 0;} +th { + text-align: left; + padding-right: 1em; + border-bottom: 1px solid #ccc; +} + + #tracker table { border-collapse: collapse; } #tracker td { vertical-align: top; padding: 1em; } #tracker td ul { margin-top: 0; margin-bottom: 0; } #tracker td ul a { font-weight: normal; } -#tracker th { text-align: left; padding: 0.25em 1em; } +#tracker th { text-align: left; padding: 0.25em 1em 0.25em 0em; } #pager { text-align: center; } #pager div { padding: 0.5em; } @@ -31,9 +38,9 @@ form { margin: 0; padding: 0;} .item-list ul { margin: 0 0 0.75em 0; padding: 0; } .item-list ul li { margin: 0 0 0.25em 1.5em; padding: 0; list-style: disc; } -.poll .bar { height: 1em; } -.poll .bar .background { background-color: #ddd; float: left; height: 1em; } -.poll .bar .foreground { background-color: #000; float: left; height: 1em; } +.poll .bar { height: 1em; margin: 1px 0; } +.poll .bar .background { background-color: #ddd; float: left; height: 1em; margin-left: -1px; } +.poll .bar .foreground { background-color: #000; float: left; height: 1em; margin-right: -1px; } .poll .links { text-align: center; } .poll .percent { text-align: right; } .poll .total { text-align: center; } @@ -41,8 +48,8 @@ form { margin: 0; padding: 0;} .poll .vote-form .choices { text-align: left; margin: 0 auto; display: table; } -.node-form .admin { float: right; width: 14em; margin-top: -1.1em; } -.node-form .standard { margin-right: 14em; } +.node-form .admin { float: right; width: 15em; margin-top: -1.1em; } +.node-form .standard { margin-right: 15em; } .node-form .form-text { width: 95%; } .node-form textarea { width: 95%; } |