diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-04-19 02:51:59 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-04-19 02:51:59 +0200 |
commit | 4a9fdd2918c3828b4c60e22eda4dc89a9228bc8e (patch) | |
tree | 7167ba395bb2a74d6d3d9168be46747436b4c5a1 /css | |
parent | 3113176ea04b206308de8180198f127744a34b8e (diff) | |
download | nextcloud-server-4a9fdd2918c3828b4c60e22eda4dc89a9228bc8e.tar.gz nextcloud-server-4a9fdd2918c3828b4c60e22eda4dc89a9228bc8e.zip |
fancy upload button. does work with firefox (at least 4) and chromium, but not with Konqueror, Rekonq, Opera.
Diffstat (limited to 'css')
-rw-r--r-- | css/styles.css | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/css/styles.css b/css/styles.css index 6a4e7d8f897..6b866843541 100644 --- a/css/styles.css +++ b/css/styles.css @@ -106,13 +106,13 @@ p.nav a { padding:0.5em 1.5em 0.5em 0.5em; background-position:right center; bac p.nav a img { height:16px; vertical-align:text-top; } /* ACTIONS BAR */ -p.actions { padding:0; } -p.actions a { padding:0.5em 0.5em 0.5em 3em; background-position:1em center; background-repeat:no-repeat; background-image:url('../img/action.png'); border-right:1px solid #eee; text-decoration:none; color:#333; } -p.actions a:hover, p.actions a:focus { background-color:#eee; color:#000; outline:0; } -p.actions a:active { outline:0; } -p.actions a.new-dir { background-image:url('../img/folder-new.png'); } -p.actions a.download { background-image:url('../img/download.png'); } -p.actions a.delete { background-image:url('../img/delete.png'); } +p.actions, div.actions { padding:0; } +p.actions a, div.actions a { padding:0.5em 0.5em 0.5em 3em; background-position:1em center; background-repeat:no-repeat; background-image:url('../img/action.png'); border-right:1px solid #eee; text-decoration:none; color:#333; } +p.actions a:hover, p.actions a:focus, div.actions a:hover, div.actions a:focus { background-color:#eee; color:#000; outline:0; } +p.actions a:active, div.actions a:active { outline:0; } +p.actions a.new-dir, div.actions a.new-dir { background-image:url('../img/folder-new.png'); } +p.actions a.download, div.actions a.download { background-image:url('../img/download.png'); } +p.actions a.delete, div.actions a.delete { background-image:url('../img/delete.png'); } /* USER SETTINGS ------------------------------------------------------------ */ #quota_indicator { margin:0 4em 1em 0; padding:0; border:1px solid #ddd; border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px; } |