Compare commits

...

7 Commits

5 changed files with 28 additions and 9 deletions

View File

@ -102,6 +102,7 @@ const descrUser0 = [
'Can\'t protect file',
'View file without collaboration',
'Cant submit forms',
'Cant refresh outdated file',
];
const users = [

View File

@ -83,7 +83,10 @@
margin-left: 0;
}
.tableRow,
.scroll-table-body {
width: 90%;
}
.storedHeader,
menu.links {
width: 90%;
@ -129,7 +132,11 @@
.contentCells-icon{
width: 5%;
}
.tableRow,
.scroll-table-body {
width: 50%;
}
menu.links {
width: 55%;
}
@ -147,6 +154,7 @@
.scroll-table-body {
top: 33px;
height: calc(100% - 34px);
}
footer {
@ -186,7 +194,10 @@
}
@media (max-width: 715px) {
.tableRow,
.scroll-table-body {
width: 45%;
}
.storedHeader,
menu.links {
width: 45%;
@ -258,6 +269,10 @@
width: 75%;
}
.scroll-table-body {
width: 75%;
}
.tableHeaderCellEditors {
width: 15%;
text-align: left;
@ -286,7 +301,6 @@
padding-left: 0;
}
.tableRow,
.storedHeader,
menu.links {
width: 75%;
@ -327,7 +341,10 @@
width: 580px;
}
.tableRow,
.scroll-table-body {
width: 95%;
}
.storedHeader,
menu.links {
width: 95%;
@ -719,7 +736,6 @@
}
}
@media (max-width: 769px) and (min-width: 715px){
.tableRow,
.storedHeader,
menu.links {
width: 50%;
@ -919,7 +935,9 @@
}
.scroll-table-body {
width: 100%;
top: 36px;
height: calc(100% - 34px);
}
.scroll-table-body tr:first-child {

View File

@ -899,7 +899,7 @@ footer table tr td:first-child {
position: absolute;
right: 0;
top: 75px;
height: 390px;
height: calc(100% - 130px);
scrollbar-color: #D0D5DA transparent;
scrollbar-width: thin;
}

View File

@ -384,7 +384,6 @@
"onRequestSelectDocument": onRequestSelectDocument,
"onRequestSelectSpreadsheet": onRequestSelectSpreadsheet,
"onRequestOpen": onRequestOpen,
"onRequestRefreshFile": onRequestRefreshFile,
};
if (<%- JSON.stringify(editor.userid) %> != null) {
@ -398,6 +397,7 @@
config.events.onRequestSendNotify = onRequestSendNotify;
config.events.onRequestReferenceData = onRequestReferenceData;
config.events.onRequestReferenceSource = onRequestReferenceSource;
config.events.onRequestRefreshFile = onRequestRefreshFile;
if (<%- JSON.stringify(editor.userid) %> != "uid-3") {
config.events.onRequestHistoryClose = onRequestHistoryClose;
config.events.onRequestRestore = onRequestRestore;