Blame view
sources/apps/files_sharing/css/public.css
2.05 KB
|
03e52840d
|
1 |
#preview {
|
|
31b7f2792
|
2 3 4 |
background: #fff; text-align: center; margin: 45px auto 0; |
|
f7d878ff1
|
5 |
min-height: 600px; |
|
6d9380f96
|
6 7 8 9 |
}
#preview .notCreatable {
display: none;
|
|
03e52840d
|
10 11 12 13 |
}
#noPreview {
display:none;
|
|
6d9380f96
|
14 |
padding-top:80px; |
|
03e52840d
|
15 |
} |
|
31b7f2792
|
16 |
footer {
|
|
6d9380f96
|
17 |
margin-top: 65px; |
|
31b7f2792
|
18 |
} |
|
03e52840d
|
19 |
p.info {
|
|
31b7f2792
|
20 21 |
color: #777; text-align: center; |
|
31b7f2792
|
22 |
margin: 0 auto; |
|
a293d369c
|
23 |
padding: 20px 0; |
|
03e52840d
|
24 25 26 27 28 29 30 31 32 |
}
p.info a {
color:#777;
font-weight:700;
}
#imgframe {
height:75%;
|
|
6d9380f96
|
33 34 |
padding-bottom:32px; padding-top:32px; |
|
03e52840d
|
35 36 37 |
width:80%; margin:0 auto; } |
|
6d9380f96
|
38 39 |
#imgframe img,
#imgframe video {
|
|
03e52840d
|
40 41 42 |
max-height:100%; max-width:100%; } |
|
f7d878ff1
|
43 |
/* fix multiselect bar offset on shared page */ |
|
a293d369c
|
44 |
thead {
|
|
f7d878ff1
|
45 |
left: 0 !important; |
|
03e52840d
|
46 47 48 49 50 |
}
#data-upload-form {
position: relative;
right: 0;
|
|
31b7f2792
|
51 |
height: 32px; |
|
03e52840d
|
52 53 54 55 56 57 |
overflow: hidden; padding: 0; float: right; display: inline; margin: 0; } |
|
6d9380f96
|
58 |
|
|
a293d369c
|
59 60 61 |
.directDownload,
.directLink {
margin-bottom: 20px;
|
|
03e52840d
|
62 |
} |
|
6d9380f96
|
63 64 65 66 67 68 69 70 71 72 |
/* 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;
|
|
03e52840d
|
73 |
} |
|
6d9380f96
|
74 |
|
|
a293d369c
|
75 76 77 78 79 |
.directLink label {
font-weight: normal;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
opacity: .5;
|
|
03e52840d
|
80 |
} |
|
a293d369c
|
81 82 83 |
.directLink input {
margin-left: 5px;
width: 300px;
|
|
6d9380f96
|
84 85 86 87 88 89 |
max-width: 90%;
}
/* within #save */
#save .save-form {
position: relative;
|
|
a293d369c
|
90 |
} |
|
6d9380f96
|
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
#remote_address {
margin: 0;
width: 130px;
height: 14px;
padding: 6px;
padding-right: 24px;
}
.ie8 #remote_address {
padding-right: 30px;
}
#save #save-button,
#save #save-button-confirm {
margin: 0 5px;
height: 28px;
padding-bottom: 4px;
line-height: 14px;
}
#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;
}
.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;
|
|
31b7f2792
|
132 |
} |