diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2011-04-17 19:46:09 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2011-04-17 19:46:09 +0200 |
commit | 91b5d8575a403877106e4cd048d90e0c117dae66 (patch) | |
tree | 14d925684eecb0ce4b30c270fe171e643cb638f4 /css | |
parent | 47223ae2d98cf74101fd42a49d388ba48d01f80e (diff) | |
download | nextcloud-server-91b5d8575a403877106e4cd048d90e0c117dae66.tar.gz nextcloud-server-91b5d8575a403877106e4cd048d90e0c117dae66.zip |
add pager function to the base lib and remove the default table width
Diffstat (limited to 'css')
-rw-r--r-- | css/styles.css | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/css/styles.css b/css/styles.css index a186c173241..f0832d05947 100644 --- a/css/styles.css +++ b/css/styles.css @@ -70,7 +70,7 @@ form a { color:#000; text-decoration:none; } /* CONTENT ------------------------------------------------------------------ */ #content { margin:7em 0 0 16em; } -table { width:90%; margin:1em 5em 2em 3em; } +table { margin:1em 5em 2em 3em; } table tr.mouseOver td { background-color:#eee; } table th, table td { padding:0; border-bottom:1px solid #ddd; text-align:left; font-style:italic; } table th { padding:0.5em; } @@ -118,6 +118,23 @@ p.actions a.delete { background-image:url('../img/delete.png'); } #quota_indicator { margin:0 4em 1em 0; padding:0; border:1px solid #ddd; border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px; } #quota_indicator div { background-color:#76A9EA; border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px; } + +/* PAGER ------------------------------------------------------------ */ +.pager tr td +{ + border-bottom: 0px; +} + + +.pager tr td a +{ + text-decoration: none; + color: #666666; + font-size: 0.9em; + text-align: center; +} + + /* LOGS --------------------------------------------------------------------- */ #logs_options { width:auto; margin:0; } #logs_options p { padding:0.5em; text-align:left; } |