diff options
author | Dario Giovannetti <dariogiova@gmail.com> | 2015-03-11 15:56:02 +0800 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2015-05-14 19:07:43 +0200 |
commit | 77c3bca0a982b9c5e520e8a0baa46bfd92a6c2a2 (patch) | |
tree | bb7a0e1b260dc26a1a154adf35006d272322c181 /skins/ArchLinux | |
parent | 5c99895dd01d4a39df8968d659d2c1526112967a (diff) |
ArchLinux skin: move generic element style rules together with similar ones
They aren't overridden by any rules below, so this is safe.
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
Diffstat (limited to 'skins/ArchLinux')
-rw-r--r-- | skins/ArchLinux/arch.css | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/skins/ArchLinux/arch.css b/skins/ArchLinux/arch.css index 2e721074..93f797d2 100644 --- a/skins/ArchLinux/arch.css +++ b/skins/ArchLinux/arch.css @@ -32,6 +32,17 @@ code, tt { padding: 0.3em; } +ul, +.portlet ul { + list-style-image: none; +} +#bodyContent table { + border-collapse: collapse; + padding: 2px; +} +#bodyContent td { + padding: 2px; +} /* links (including page tabs and personal toolbar) */ a, @@ -150,17 +161,3 @@ div#footer { #archnavbar ul li.anb-selected a { color: white !important; } - -/* make tables prettier */ -#bodyContent table { - border-collapse: collapse; - padding: 2px; -} -#bodyContent td { - padding: 2px; -} - -ul, -.portlet ul { - list-style-image: none; -} |