Merge pull request #5946 from owncloud/public-page-details

Public page details
This commit is contained in:
Vincent Petry 2013-12-03 07:26:00 -08:00
commit 72f80c972f
2 changed files with 26 additions and 12 deletions

View File

@ -1,5 +1,5 @@
body { body {
background:#ddd; height: auto;
} }
#header { #header {
@ -22,7 +22,7 @@ body {
#public_upload, #public_upload,
#download { #download {
font-weight:700; font-weight:700;
margin: 0 0.4em 0 0; margin: 0 0 0 .4em;
padding: 0 5px; padding: 0 5px;
height: 32px; height: 32px;
float: left; float: left;
@ -49,12 +49,14 @@ body {
vertical-align:text-bottom; vertical-align:text-bottom;
} }
#controls {
left: 0;
}
#preview { #preview {
background:#eee; background: #fff;
border-bottom:1px solid #f8f8f8; text-align: center;
min-height:30em; margin: 45px auto 0;
text-align:center;
margin:45px auto;
} }
#noPreview { #noPreview {
@ -62,11 +64,16 @@ body {
padding-top:5em; padding-top:5em;
} }
footer {
margin-top: 45px;
}
p.info { p.info {
color:#777; color: #777;
text-align:center; text-align: center;
width:22em; width: 22em;
margin:2em auto; margin: 0 auto;
padding: 20px;
} }
p.info a { p.info a {

View File

@ -202,13 +202,20 @@ input[type="submit"].enabled {
box-sizing: border-box; box-sizing: border-box;
position: fixed; position: fixed;
right: 0; right: 0;
left: 80px; left: 0;
height: 44px; height: 44px;
width: 100%;
padding: 0;
margin: 0; margin: 0;
background: #eee; background: #eee;
border-bottom: 1px solid #e7e7e7; border-bottom: 1px solid #e7e7e7;
z-index: 50; z-index: 50;
} }
/* account for shift of controls bar due to app navigation */
#body-user #controls,
#body-settings #controls {
padding-left: 80px;
}
#controls .button, #controls .button,
#controls button, #controls button,
#controls input[type='submit'], #controls input[type='submit'],