You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
4.0 KiB
137 lines
4.0 KiB
/**
|
|
*
|
|
* (c) Copyright Ascensio System SIA 2025
|
|
*
|
|
* This program is a free software product.
|
|
* You can redistribute it and/or modify it under the terms of the GNU Affero General Public License
|
|
* (AGPL) version 3 as published by the Free Software Foundation.
|
|
* In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
|
|
*
|
|
* This program is distributed WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
* For details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
|
*
|
|
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha street, Riga, Latvia, EU, LV-1050.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions of the Program
|
|
* must display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
|
|
*
|
|
* Pursuant to Section 7(b) of the License you must retain the original Product logo when distributing the program.
|
|
* Pursuant to Section 7(e) we decline to grant you any rights under trademark law for use of our trademarks.
|
|
*
|
|
* All the Product's GUI elements, including illustrations and icon sets, as well as technical
|
|
* writing content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 International.
|
|
* See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
*
|
|
*/
|
|
|
|
.icon-onlyoffice-open,
|
|
.icon-onlyoffice-convert,
|
|
.icon-onlyoffice-download,
|
|
.icon-onlyoffice-create {
|
|
background-color: var(--color-main-text);
|
|
mask: url("../img/app-dark.svg") no-repeat 50% 50%;
|
|
mask-size: 16px 16px;
|
|
-webkit-mask: url("../img/app-dark.svg") no-repeat 50% 50%;
|
|
-webkit-mask-size: 16px 16px;
|
|
}
|
|
|
|
/* onlyoffice-inline */
|
|
#body-user.onlyoffice-inline #app-navigation,
|
|
#body-user.onlyoffice-inline .app-navigation,
|
|
#body-user.onlyoffice-inline #app-navigation-vue,
|
|
#body-user.onlyoffice-inline .searchbox,
|
|
#body-user.onlyoffice-inline #app-content .files-controls,
|
|
#body-user.onlyoffice-inline #app-content-vue .files-controls,
|
|
#body-user.onlyoffice-inline .files-filestable,
|
|
#body-user.onlyoffice-inline .files-list,
|
|
#body-user.onlyoffice-inline .files-list__header {
|
|
display: none;
|
|
}
|
|
|
|
#body-user.onlyoffice-inline #app-navigation-toggle {
|
|
display: none !important;
|
|
}
|
|
|
|
#body-public.onlyoffice-inline #content #app-content,
|
|
#body-user.onlyoffice-inline #content #app-content,
|
|
#body-user.onlyoffice-inline #content #app-content-vue,
|
|
#body-user.onlyoffice-inline #content-vue #app-content-vue {
|
|
margin-left: 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
overscroll-behavior-y: none;
|
|
}
|
|
|
|
#body-public.onlyoffice-inline footer {
|
|
display: none !important;
|
|
}
|
|
|
|
#onlyofficeFrame {
|
|
background-color: #fff;
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
z-index: 1010;
|
|
}
|
|
|
|
.onlyoffice-public-open {
|
|
display: inline-block;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/* AscDesktopEditor */
|
|
.AscDesktopEditor #body-user #header {
|
|
display: none;
|
|
}
|
|
|
|
.AscDesktopEditor #body-user #content,
|
|
.AscDesktopEditor #body-user #content-vue {
|
|
padding-top: 0;
|
|
margin-top: 0px;
|
|
height: 100%;
|
|
}
|
|
|
|
.AscDesktopEditor #body-user #app-navigation,
|
|
.AscDesktopEditor #body-user #controls,
|
|
.AscDesktopEditor #body-user #app-sidebar {
|
|
top: 0;
|
|
}
|
|
|
|
.AscDesktopEditor #body-user #app-navigation {
|
|
height: 100%;
|
|
}
|
|
|
|
.AscDesktopEditor #body-user #app-sidebar {
|
|
height: 100vh;
|
|
}
|
|
|
|
.AscDesktopEditor #body-user table.multiselect thead,
|
|
.AscDesktopEditor #app-content-files thead {
|
|
top: 44px;
|
|
}
|
|
|
|
.AscDesktopEditor #body-user #gallery-button {
|
|
display: none;
|
|
}
|
|
|
|
.onlyoffice-download-container {
|
|
display: flex;
|
|
}
|
|
|
|
.onlyoffice-download-container p {
|
|
margin-right: 10px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.onlyoffice-iframe-container {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
overflow: hidden;
|
|
z-index: 1010;
|
|
}
|
|
|