diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-02 16:59:09 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-02 16:59:09 +0200 |
commit | 49d9631eee1616b9ae2846886c3d428236c5b81a (patch) | |
tree | 052f910797add28df8668d702fe9b04b963cf496 /core/css | |
parent | 6519b9672a7294282c9535d8544baea9a9d74ffd (diff) | |
parent | 6e75b37d04b5daf00f85eed925fd5b0203d09cb5 (diff) | |
download | nextcloud-server-49d9631eee1616b9ae2846886c3d428236c5b81a.tar.gz nextcloud-server-49d9631eee1616b9ae2846886c3d428236c5b81a.zip |
Merge pull request #8400 from owncloud/download-button-public-folder
reintroduce download button on public shares
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 9f74ab7deaf..be70fe3cce4 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -62,22 +62,12 @@ 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; } -.header-right #details { - display: inline-block; - margin-top: 6px; - width: 100%; - text-overflow: ellipsis; - overflow: hidden; -} /* Profile picture in header */ #header .avatardiv { @@ -202,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; |