diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-09-01 23:08:23 -0700 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-09-01 23:08:23 -0700 |
commit | a2f18eabb135c33dc3b557129036778f1aea0972 (patch) | |
tree | 57f3b6102e605bd2d953dc3f394d6b317f3058e3 /core/css | |
parent | 8a4acf263ec30f9006a2efa9bd5c02398fe5ef2a (diff) | |
parent | a6c7b210db38d72438ac177f1d807b3a796da0c9 (diff) | |
download | nextcloud-server-a2f18eabb135c33dc3b557129036778f1aea0972.tar.gz nextcloud-server-a2f18eabb135c33dc3b557129036778f1aea0972.zip |
Merge pull request #4657 from owncloud/files-controls-fixes
Files controls fixes
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 222701982b2..bf78af15af5 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -150,14 +150,20 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b /* CONTENT ------------------------------------------------------------------ */ #controls { - position:fixed; - height:2.8em; width:100%; - padding:0 70px 0 0.5em; margin:0; - -moz-box-sizing:border-box; box-sizing:border-box; - -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; - background:#eee; border-bottom:1px solid #e7e7e7; z-index:50; + position: fixed; + height: 36px; + width: 100%; + padding: 0 75px 0 6px; + margin: 0; + background: #eee; + border-bottom: 1px solid #e7e7e7; + z-index: 50; + -moz-box-sizing: border-box; box-sizing: border-box; + -moz-box-shadow: 0 -3px 7px #000; -webkit-box-shadow: 0 -3px 7px #000; box-shadow: 0 -3px 7px #000; +} +#controls .button { + display: inline-block; } -#controls .button { display:inline-block; } #content { position:relative; height:100%; width:100%; } #content .hascontrols { position: relative; top: 2.9em; } |