diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2009-05-12 17:41:24 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2009-05-12 17:41:24 +0000 |
| commit | ba129a1f9126eee5418cdd9b64c020d4de783983 (patch) | |
| tree | a06ed4b72323264c565f4e93739245068eadd096 | |
| parent | c40ef40e2df4cb9323a402f3f7a2be7a0c5bc113 (diff) | |
| download | themes-ba129a1f9126eee5418cdd9b64c020d4de783983.tar.gz themes-ba129a1f9126eee5418cdd9b64c020d4de783983.tar.bz2 themes-ba129a1f9126eee5418cdd9b64c020d4de783983.zip | |
move forms rules to its own file, add some default css rules to default.css, have an import.css file that will import all useful css files in one go.
| -rw-r--r-- | css/default.css | 38 | ||||
| -rw-r--r-- | css/forms.css | 18 | ||||
| -rw-r--r-- | css/import.css | 4 |
3 files changed, 60 insertions, 0 deletions
diff --git a/css/default.css b/css/default.css new file mode 100644 index 0000000..07db69a --- /dev/null +++ b/css/default.css @@ -0,0 +1,38 @@ +/* modules */ +.module {padding:0.5em; margin:0.5em;} +.module ul {margin:0; padding:0; list-style:none;} +.module ul ul {margin:0 0 0.5em 1.2em;} +.module ul li {margin:0;} +.module ol {margin:0 0 0 1.2em;} +.module ol li {margin:0;} + +/* module help on admin page */ +.modulehelp kbd {font-family:monospace;} +.modulehelp dt {width:27%; float:left; text-align:right; font-weight:bold;} +.modulehelp dd {width:70%; margin-left:30%;} +.modulehelp .example {text-decoration:underline;} + +/* priorities */ +.prio1 {background:#dfc !important;} +.prio2 {background:#efc !important;} +.prio3 {background:#ffc !important;} +.prio4 {background:#fec !important;} +.prio5 {background:#fdc !important;} + +/* structure navigation */ +.navigation .left {float:left;} +.navigation .right {float:right;} + +/* action icons */ +.floaticon {float:right; text-align:right;} +.floaticon a {padding:0 3px;} + +span.actionicon {float:right;} +td.actionicon {text-align:right;} +.actionicon a {padding:0 3px;} + +/* miscellaneous */ +table {border-collapse:collapse; border-spacing:0; padding:0; margin:0; width:100%;} +.highlight {font-weight:bolder;} +.popup {width:250px; background:#fff; padding:0.5em; border:1px solid #999;} +.closebutton {position:absolute; top:2px; right:2px;} diff --git a/css/forms.css b/css/forms.css new file mode 100644 index 0000000..bcfb178 --- /dev/null +++ b/css/forms.css @@ -0,0 +1,18 @@ +/* forms */ +form {margin:0; padding:0;} +textarea {width:100%;} +input {} +select {} +fieldset {} +legend {font-weight:bold; margin:0 0 1.5em 0;} +.row {margin:0 0 5px 0;} +.submit {text-align:center; margin:5px 0;} +.quicktags {} +.formlabel {float:left; font-weight:bold; width:15em; text-align:right;} +.forminput {margin-left:15.5em;} +.formhelp {cursor:help; font-size:smaller;} +.error {color:#f30;} +.warning {color:#f90;} +.success {color:#090;} +.clear {clear:both;} +.display.confirm .body {width:450px; margin:0 auto;} diff --git a/css/import.css b/css/import.css new file mode 100644 index 0000000..70146f4 --- /dev/null +++ b/css/import.css @@ -0,0 +1,4 @@ +/* import some useful css rules */ +@import url( default.css ); +@import url( forms.css ); +@import url( tabsystem.css ); |
