2012-10-24 15:09:05 +04:00
|
|
|
#preview {
|
2013-11-21 16:33:04 +04:00
|
|
|
background: #fff;
|
|
|
|
text-align: center;
|
|
|
|
margin: 45px auto 0;
|
2015-05-20 15:09:31 +03:00
|
|
|
min-height: 200px;
|
2013-10-28 23:22:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#preview .notCreatable {
|
|
|
|
display: none;
|
2012-10-24 01:57:55 +04:00
|
|
|
}
|
2012-10-24 15:09:05 +04:00
|
|
|
|
|
|
|
#noPreview {
|
|
|
|
display:none;
|
2014-01-16 19:36:14 +04:00
|
|
|
padding-top:80px;
|
2012-10-24 01:57:55 +04:00
|
|
|
}
|
2012-10-24 15:09:05 +04:00
|
|
|
|
|
|
|
#imgframe {
|
2014-01-16 18:56:18 +04:00
|
|
|
height:75%;
|
2013-10-06 22:08:24 +04:00
|
|
|
padding-bottom:32px;
|
|
|
|
padding-top:32px;
|
2014-01-16 18:56:18 +04:00
|
|
|
width:80%;
|
|
|
|
margin:0 auto;
|
2012-10-24 01:57:55 +04:00
|
|
|
}
|
2012-10-24 15:09:05 +04:00
|
|
|
|
2014-02-17 21:57:32 +04:00
|
|
|
#imgframe img,
|
|
|
|
#imgframe video {
|
2012-10-24 15:09:05 +04:00
|
|
|
max-height:100%;
|
|
|
|
max-width:100%;
|
2013-02-11 14:20:51 +04:00
|
|
|
}
|
2013-02-11 15:35:39 +04:00
|
|
|
|
2015-04-16 16:28:04 +03:00
|
|
|
#imgframe .text-preview {
|
|
|
|
display: inline-block;
|
2015-04-18 23:11:36 +03:00
|
|
|
position: relative;
|
2015-04-16 16:28:04 +03:00
|
|
|
text-align: left;
|
|
|
|
white-space: pre-wrap;
|
2015-04-23 19:15:11 +03:00
|
|
|
overflow-y: hidden;
|
2015-04-16 16:28:04 +03:00
|
|
|
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;
|
2015-04-18 23:11:36 +03:00
|
|
|
}
|
|
|
|
|
2015-04-23 19:15:11 +03:00
|
|
|
#imgframe .ellipsis {
|
|
|
|
font-size: 1.2em;
|
2015-04-16 16:28:04 +03:00
|
|
|
}
|
|
|
|
|
2014-08-19 17:51:10 +04:00
|
|
|
/* fix multiselect bar offset on shared page */
|
2014-01-23 18:35:30 +04:00
|
|
|
thead {
|
2014-08-19 17:51:10 +04:00
|
|
|
left: 0 !important;
|
2013-02-11 15:35:39 +04:00
|
|
|
}
|
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-04-17 18:58:57 +04:00
|
|
|
|
2014-01-16 18:28:39 +04:00
|
|
|
.directDownload,
|
2013-10-18 19:40:41 +04:00
|
|
|
.directLink {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2014-04-17 18:58:57 +04:00
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2014-01-10 23:07:20 +04:00
|
|
|
.directLink label {
|
|
|
|
font-weight: normal;
|
2014-01-23 03:39:11 +04:00
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
|
|
|
filter: alpha(opacity=50);
|
|
|
|
opacity: .5;
|
2014-01-10 23:07:20 +04:00
|
|
|
}
|
|
|
|
.directLink input {
|
2014-01-23 03:39:11 +04:00
|
|
|
margin-left: 5px;
|
2014-01-10 23:07:20 +04:00
|
|
|
width: 300px;
|
2014-04-16 18:43:35 +04:00
|
|
|
max-width: 90%;
|
2014-01-10 23:07:20 +04:00
|
|
|
}
|
2014-05-14 15:29:03 +04:00
|
|
|
|
2014-06-17 13:24:39 +04:00
|
|
|
/* within #save */
|
2014-07-04 02:07:24 +04:00
|
|
|
#save .save-form {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-06-17 13:24:39 +04:00
|
|
|
#remote_address {
|
|
|
|
margin: 0;
|
2014-07-04 02:07:24 +04:00
|
|
|
width: 130px;
|
2014-06-17 13:24:39 +04:00
|
|
|
height: 14px;
|
|
|
|
padding: 6px;
|
2014-07-04 02:07:24 +04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-07-04 02:07:24 +04:00
|
|
|
#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
|
|
|
}
|
|
|
|
|
2014-07-04 02:07:24 +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;
|
|
|
|
}
|
|
|
|
|
2014-07-04 02:07:24 +04:00
|
|
|
#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
|
|
|
}
|