mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
497 lines
9.5 KiB
CSS
497 lines
9.5 KiB
CSS
/**
|
|
*
|
|
* (c) Copyright Ascensio System SIA 2020
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
|
|
html {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
body {
|
|
background: #fff;
|
|
color: #333;
|
|
font-family: 'Open Sans', Tahoma,sans-serif;
|
|
font-size: 12px;
|
|
font-weight: normal;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
text-decoration: none;
|
|
}
|
|
form {
|
|
height: 100%;
|
|
}
|
|
div {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
a, a:hover, a:visited {
|
|
color: #333;
|
|
}
|
|
|
|
|
|
.top-panel {
|
|
background: #3D4A6B;
|
|
height: 80px;
|
|
width: 100%;
|
|
}
|
|
.top-panel img {
|
|
margin: 12px 0 0 16px;
|
|
}
|
|
.main-panel {
|
|
margin: 80px auto;
|
|
width: 600px;
|
|
}
|
|
.portal-name {
|
|
font-size: 20px;
|
|
}
|
|
.portal-descr {
|
|
display: inline-block;
|
|
line-height: 20px;
|
|
margin-bottom: 24px;
|
|
width: 600px;
|
|
}
|
|
.save-original {
|
|
color: #929597;
|
|
line-height: 20px;
|
|
margin-left: 16px;
|
|
white-space: nowrap;
|
|
width: 272px;
|
|
}
|
|
label .checkbox {
|
|
vertical-align: middle;
|
|
}
|
|
.question {
|
|
background: url("images/question_small.png") no-repeat center center transparent;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
#hint {
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #8E908F;
|
|
display: none;
|
|
margin: 4px 0 0 -32px;
|
|
max-width: 415px;
|
|
padding: 10px 15px 15px;
|
|
word-wrap: break-word;
|
|
z-index: 255;
|
|
}
|
|
.corner {
|
|
background: url("images/corner.png") no-repeat scroll 0 0 transparent;
|
|
height: 6px;
|
|
left: 35px;
|
|
margin-top: -15px;
|
|
position: absolute;
|
|
width: 9px;
|
|
z-index: 261;
|
|
}
|
|
.try-descr {
|
|
font-size: 16px;
|
|
white-space : nowrap;
|
|
}
|
|
|
|
.try-editor-list {
|
|
list-style: none;
|
|
margin: 0 0 16px;
|
|
padding: 0;
|
|
}
|
|
.try-editor-list li {
|
|
float: left;
|
|
margin: 0 15px;
|
|
width: 100px;
|
|
cursor: pointer;
|
|
}
|
|
.try-editor {
|
|
background-color: transparent;
|
|
background-position: center 0;
|
|
background-repeat: no-repeat;
|
|
display: block;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
height: 45px;
|
|
padding-top: 100px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
}
|
|
.try-editor.word {
|
|
background-image: url("images/file_docx.png");
|
|
}
|
|
.try-editor.cell {
|
|
background-image: url("images/file_xlsx.png");
|
|
}
|
|
.try-editor.slide {
|
|
background-image: url("images/file_pptx.png");
|
|
}
|
|
|
|
.create-sample {
|
|
display: inline-block;
|
|
margin-left: 75px;
|
|
}
|
|
|
|
.button, .button:visited, .button:hover, .button:active {
|
|
display: inline-block;
|
|
font-weight: normal;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
vertical-align: middle;
|
|
cursor:pointer;
|
|
border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;
|
|
touch-callout: none;
|
|
-o-touch-callout: none;
|
|
-moz-touch-callout: none;
|
|
-webkit-touch-callout: none;
|
|
user-select: none;
|
|
-o-user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
margin-right: 3px;
|
|
padding: 4px 12px;
|
|
|
|
color: #fff;
|
|
|
|
background: #3D96C6;
|
|
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: #3D96C6;
|
|
}
|
|
|
|
.button.disable {
|
|
cursor: default;
|
|
background: #BADDEF;
|
|
border: 1px solid #BADDEF;
|
|
}
|
|
.button.gray {
|
|
background: #888;
|
|
border: 1px solid #E9EAEA;
|
|
}
|
|
|
|
.upload-panel {
|
|
border-right: 1px solid #D1D1D1;
|
|
float: left;
|
|
margin-right: 25px;
|
|
}
|
|
|
|
.file-upload {
|
|
background: url("images/file_upload.png") no-repeat center 0 transparent;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
height: 45px;
|
|
margin: 0 40px 16px;
|
|
overflow: hidden;
|
|
padding-top: 100px;
|
|
position: relative;
|
|
text-align: center;
|
|
width: 100px;
|
|
}
|
|
|
|
.file-upload input {
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
transform: translate(555px, 60px) scale(8);
|
|
}
|
|
|
|
.create-panel {
|
|
float: left;
|
|
}
|
|
|
|
.upload-panel,
|
|
.create-panel {
|
|
padding: 10px 0;
|
|
}
|
|
|
|
#mainProgress {
|
|
color: #979b9f;
|
|
display: none;
|
|
margin: 15px;
|
|
}
|
|
#mainProgress #embeddedView {
|
|
display: none;
|
|
}
|
|
#mainProgress.embedded #embeddedView {
|
|
display: block;
|
|
}
|
|
#mainProgress.embedded #uploadSteps {
|
|
display: none;
|
|
}
|
|
.error-message {
|
|
background: url("images/alert.png") no-repeat scroll 4px 10px #FFECE3;
|
|
color: #666668 !important;
|
|
display: none;
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
margin: 5px 0;
|
|
padding: 10px 10px 10px 30px;
|
|
vertical-align: middle;
|
|
}
|
|
#mainProgress .error-message a {
|
|
color: #666668;
|
|
}
|
|
.step {
|
|
background-repeat: no-repeat;
|
|
background-position: left center;
|
|
background-color: transparent;
|
|
color: #979B9F;
|
|
font-size: 14px;
|
|
line-height: 30px;
|
|
padding-left: 25px;
|
|
}
|
|
.current {
|
|
background-image: url("images/loader16.gif");
|
|
color: #333;
|
|
}
|
|
.done {
|
|
background-image: url("images/done.png");
|
|
color: #333;
|
|
}
|
|
.error {
|
|
background-image: url("images/alert.png");
|
|
}
|
|
.step-descr {
|
|
display: block;
|
|
margin-left: 45px;
|
|
}
|
|
#mainProgress .step-descr a {
|
|
color: #979B9F;
|
|
}
|
|
.progress-descr {
|
|
color: #333;
|
|
}
|
|
#loadScripts {
|
|
display: none;
|
|
}
|
|
#iframeScripts {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
}
|
|
.bottom-panel {
|
|
bottom: 0;
|
|
position: fixed;
|
|
text-align: right;
|
|
width: 100%;
|
|
}
|
|
.help-block span {
|
|
font-size: 16px;
|
|
line-height: 26px;
|
|
}
|
|
|
|
.stored-list {
|
|
border-top: 1px solid #D1D1D1;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.stored-list li {
|
|
border-bottom: 1px solid #D1D1D1;
|
|
line-height: 28px;
|
|
padding: 0 8px;
|
|
}
|
|
|
|
.stored-edit {
|
|
background-color: transparent;
|
|
background-position: left center;
|
|
background-repeat: no-repeat;
|
|
display: inline-block;
|
|
line-height: 16px;
|
|
max-width: 450px;
|
|
margin-bottom: -6px;
|
|
overflow: hidden;
|
|
padding: 4px 0 1px 34px;
|
|
text-decoration: none;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.stored-edit.word {
|
|
background-image: url("images/icon_docx.png");
|
|
}
|
|
|
|
.stored-edit.cell {
|
|
background-image: url("images/icon_xlsx.png");
|
|
}
|
|
|
|
.stored-edit.slide {
|
|
background-image: url("images/icon_pptx.png");
|
|
}
|
|
|
|
.stored-edit span {
|
|
font-size: 12px;
|
|
line-height: 12px;
|
|
}
|
|
|
|
.stored-edit:hover span {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|
|
.blockTitle {
|
|
background-color: #E2E2E2 !important;
|
|
border: none !important;
|
|
border-radius: 0 !important;
|
|
-moz-border-radius: 0 !important;
|
|
-webkit-border-radius: 0 !important;
|
|
color: #333 !important;
|
|
font-size: 16px !important;
|
|
font-weight: normal !important;
|
|
padding: 15px 25px !important;
|
|
}
|
|
.dialog-close {
|
|
background: url("images/close.png") no-repeat scroll left top #E2E2E2;
|
|
cursor: pointer;
|
|
float: right;
|
|
font-size: 1px;
|
|
height: 12px;
|
|
line-height: 1px;
|
|
margin-top: 4px;
|
|
width: 12px;
|
|
}
|
|
.blockPage {
|
|
border: none !important;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
|
|
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
|
|
-webkit-box-shadow:0 2px 4px rgba(0, 0, 0, 0.5);
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.clearFix:after {
|
|
content: ".";
|
|
display: block;
|
|
height: 0;
|
|
clear: both;
|
|
visibility: hidden;
|
|
}
|
|
|
|
/*Icon table*/
|
|
#tableRow {
|
|
vertical-align: top;
|
|
}
|
|
|
|
.tableRow {
|
|
background: transparent;
|
|
-moz-transition: all 0.2s ease-in-out;
|
|
-webkit-transition: all 0.2s ease-in-out;
|
|
-o-transition: all 0.2s ease-in-out;
|
|
-ms-transition: all 0.2s ease-in-out;
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
|
|
.tableRow:hover {
|
|
background-color: #ebebeb;
|
|
}
|
|
|
|
.tableHeader {
|
|
background: transparent;
|
|
color: #333;
|
|
cursor: default;
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 13px;
|
|
height: 40px;
|
|
-khtml-user-select: none;
|
|
user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
.tableHeaderCell {
|
|
padding: 2px 1px 2px 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
.tableHeaderCellFileName {
|
|
text-align: left;
|
|
}
|
|
|
|
.contentCells {
|
|
padding: 4px 1px 4px 5px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 16px;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
white-space: nowrap;
|
|
-khtml-user-select: none;
|
|
user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
.contentCells a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.contentCells-shift {
|
|
padding-right: 30px;
|
|
}
|
|
|
|
.contentCells-icon {
|
|
width: 6%;
|
|
}
|
|
|
|
.contentCellsSmall {
|
|
padding: 5px 1px 5px 6px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 13px;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
}
|
|
|
|
.primaryRow {
|
|
background-color: #e9e9e9;
|
|
}
|
|
|
|
.secondaryRow {
|
|
background-color: #F9F9F9;
|
|
}
|
|
|
|
.select-user {
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.user-block-table {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.user-block-table td {
|
|
background-color: #F4F4F4;
|
|
border-bottom: 1px solid white;
|
|
padding: 12px 0;
|
|
}
|
|
|
|
#user, #language {
|
|
width: 130px;
|
|
}
|
|
|
|
.icon-download {
|
|
margin-bottom: -5px;
|
|
}
|
|
|
|
.icon-delete {
|
|
cursor: pointer;
|
|
margin-bottom: -6px;
|
|
} |