nextcloud/apps/files_sharing/css/public.css

104 lines
1.6 KiB
CSS
Raw Normal View History

2012-10-24 15:09:05 +04:00
#preview {
background: #fff;
text-align: center;
margin: 45px auto 0;
min-height: 150px;
}
#preview .notCreatable {
display: none;
2012-10-24 01:57:55 +04:00
}
2012-10-24 15:09:05 +04:00
#noPreview {
display:none;
padding-top:80px;
2012-10-24 01:57:55 +04:00
}
2012-10-24 15:09:05 +04:00
footer {
margin-top: 65px;
}
2012-10-24 15:09:05 +04:00
p.info {
color: #777;
text-align: center;
margin: 0 auto;
padding: 20px 0;
2012-10-24 01:57:55 +04:00
}
2012-10-24 15:09:05 +04:00
p.info a {
color:#777;
font-weight:700;
2012-10-24 01:57:55 +04:00
}
2012-10-24 15:09:05 +04:00
#imgframe {
height:75%;
padding-bottom:32px;
padding-top:32px;
width:80%;
margin:0 auto;
2012-10-24 01:57:55 +04:00
}
2012-10-24 15:09:05 +04:00
#imgframe img,
#imgframe video {
2012-10-24 15:09:05 +04:00
max-height:100%;
max-width:100%;
}
thead {
padding-left: 0 !important; /* fixes multiselect bar offset on shared page */
}
2013-06-25 14:24:14 +04:00
#data-upload-form {
position: relative;
right: 0;
2013-10-29 19:08:11 +04:00
height: 32px;
2013-06-25 14:24:14 +04:00
overflow: hidden;
padding: 0;
float: right;
display: inline;
margin: 0;
}
2014-01-16 18:28:39 +04:00
.directDownload,
.directLink {
margin-bottom: 20px;
}
/* keep long file names in one line to not overflow download button on mobile */
.directDownload #download {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 90%;
display: inline-block;
margin-left: auto;
margin-right: auto;
}
.directLink label {
font-weight: normal;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
opacity: .5;
}
.directLink input {
margin-left: 5px;
width: 300px;
max-width: 90%;
}
.header-right {
transition: opacity 500ms ease 0s;
-moz-transition: opacity 500ms ease 0s;
-ms-transition: opacity 500ms ease 0s;
-o-transition: opacity 500ms ease 0s;
-webkit-transition: opacity 500ms ease 0s;
}
.header-right:hover, .header-right.active {
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
}