diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-05-02 15:24:23 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-05-02 15:26:21 +0200 |
commit | 899c7c04436eb5bd228e5bfa7166be24a746d774 (patch) | |
tree | d07ce26e7a9d8ebcb0ce6f912a0e88c6f30d7d92 /core | |
parent | a280a69ecc4ddf574da35b947581ec58b8538e0c (diff) | |
download | nextcloud-server-899c7c04436eb5bd228e5bfa7166be24a746d774.tar.gz nextcloud-server-899c7c04436eb5bd228e5bfa7166be24a746d774.zip |
fix position and look of public download button
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 278b4f978d2..ee66efec287 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -62,11 +62,8 @@ body { .header-right { position: absolute; right: 0; - padding-right: 10px; + padding: 7px 5px; color: #fff; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; - filter: alpha(opacity=50); - opacity: .5; height: 100%; max-width: 40%; white-space: nowrap; @@ -195,6 +192,12 @@ input[type="time"] { height: 31px; -moz-box-sizing: border-box; box-sizing: border-box; } + +/* correctly align images inside of buttons */ +input img, button img, .button img { + vertical-align: text-bottom; +} + #quota { cursor: default; margin: 30px; |