diff options
author | lpsolit%gmail.com <> | 2005-10-12 17:51:52 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-10-12 17:51:52 +0200 |
commit | b8f2c324a9a4133f264254d61993ff8c7e0233a2 (patch) | |
tree | 312fb1aba4325c769a93939937a5f79f01fb7e02 /skins/standard | |
parent | 5eee7ab7fb527d926bfdf5927268862048cd4479 (diff) | |
download | bugzilla-b8f2c324a9a4133f264254d61993ff8c7e0233a2.tar.gz bugzilla-b8f2c324a9a4133f264254d61993ff8c7e0233a2.tar.xz |
Bug 46296: Make editparams.cgi be multi-panel by category - Patch by Frédéric Buclin <LpSolit@gmail.com> r=joel a=justdave
Diffstat (limited to 'skins/standard')
-rw-r--r-- | skins/standard/params.css | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/skins/standard/params.css b/skins/standard/params.css new file mode 100644 index 000000000..4f46353bd --- /dev/null +++ b/skins/standard/params.css @@ -0,0 +1,44 @@ +#menu { + width: 10em; + margin-top: 1em; + margin-right: 0.5em; + border: solid thin; + border-spacing: 0px; + border-collapse: collapse; + text-align: center; + color: black; + background-color: #edf2f2; + font-weight: normal; +} + +#menu a:link, #menu a:visited { + color: #039; + background-color: transparent; +} + +#menu a:hover, #menu a:active { + color: red; + background-color: transparent; +} + +#menu td { + border: solid thin; + padding: 0.2em 0.5em; +} + +table td { + vertical-align: top; +} + +td.selected_section { + color: #090; + background-color: white; +} + +dt { + font-weight: bold; +} + +dd { + margin-bottom: 1.5em; +} |