nextcloud/apps/files_sharing/css/public.css

148 lines
2.3 KiB
CSS
Raw Normal View History

2012-10-24 15:09:05 +04:00
#preview {
background: #fff;
text-align: center;
margin: 45px auto 0;
}
#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
#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%;
}
#imgframe .text-preview {
display: inline-block;
position: relative;
text-align: left;
white-space: pre-wrap;
overflow-y: auto;
height: auto;
min-height: 200px;
max-height: 800px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
z-index: 1;
}
#imgframe .watermark {
color: #E3E3E3;
font-size: 75pt;
position: absolute;
width: 80%;
top: 100px;
z-index: 0;
}
/* fix multiselect bar offset on shared page */
thead {
left: 0 !important;
}
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%;
}
2014-06-17 13:24:39 +04:00
/* within #save */
#save .save-form {
position: relative;
}
2014-06-17 13:24:39 +04:00
#remote_address {
margin: 0;
width: 130px;
2014-06-17 13:24:39 +04:00
height: 14px;
padding: 6px;
padding-right: 24px;
2014-06-17 13:24:39 +04:00
}
2014-07-04 10:13:05 +04:00
.ie8 #remote_address {
padding-right: 30px;
}
#save #save-button,
#save #save-button-confirm {
2014-06-17 13:24:39 +04:00
margin: 0 5px;
height: 28px;
padding-bottom: 4px;
2014-06-17 13:45:55 +04:00
line-height: 14px;
2014-06-17 13:24:39 +04:00
}
#save-button-confirm {
position: absolute;
background-color: transparent;
border: none;
margin: 2px 4px !important;
right: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
opacity: .5;
2014-06-17 13:24:39 +04:00
}
2014-07-04 10:13:05 +04:00
.ie8 #save-button-confirm {
margin: 2px 0 !important;
}
#save-button-confirm:hover,
#save-button-confirm:focus {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
2014-07-04 10:13:05 +04:00
}