diff options
author | PyroPeter <abi1789@googlemail.com> | 2011-02-17 19:52:10 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-02-18 13:52:35 +0100 |
commit | 346e82716bf52dec37e7b8c1a62ad30585a8aa58 (patch) | |
tree | 60dc42abbf52fdafa3408b0d76d8429c587ee4b3 /web/html | |
parent | 1fdecbd5a45ef631562a11937d870e4c8cf619b0 (diff) | |
download | aur-346e82716bf52dec37e7b8c1a62ad30585a8aa58.tar.gz aur-346e82716bf52dec37e7b8c1a62ad30585a8aa58.tar.xz |
pkg_search_results: replace blind-table with floating divs
* I tried to remove errors in the sgml-structure
e.g.: <div>
<?php if (foo) { ?>
</div>
<?php } ?>
* I did not remove or add code (except the <table> and <div> stuff, of cause).
I only changed the order of the html/php-tags.
* The bottom and top of the script are now properly indented.
I did not indent the middle part (table of search results) because that would
render the diff completely useless.
Signed-off-by: PyroPeter <abi1789@googlemail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/css/arch.css | 15 | ||||
-rw-r--r-- | web/html/css/containers.css | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/web/html/css/arch.css b/web/html/css/arch.css index 09b22407..5da56d28 100644 --- a/web/html/css/arch.css +++ b/web/html/css/arch.css @@ -284,6 +284,21 @@ blockquote.code { color: #333; font-size: .95em; } +.pkg_search_results_footer { + overflow: auto; +} +.pkg_search_results_footer .legend_and_actions { + float: left; +} +.pkg_search_results_footer .legend { + margin-bottom: 3px; +} +.pkg_search_results_footer .page_links { + float: right; + margin: 0 0; + padding: 0 0; +} + /* AUR Styles */ .pgbox { diff --git a/web/html/css/containers.css b/web/html/css/containers.css index 12362f60..67fd8c7d 100644 --- a/web/html/css/containers.css +++ b/web/html/css/containers.css @@ -153,7 +153,7 @@ td.data2 { padding-left: .3em; text-align: left; } -#legend span { +.legend span { padding: 1px; margin-left: .3em; border: solid 1px #888; |