2020-11-20 14:39:53 +00:00
|
|
|
@themeColor: #446995;
|
|
|
|
|
2021-01-20 16:18:48 +00:00
|
|
|
@import '../../../../../vendor/framework7-react/node_modules/framework7/less/mixins.less';
|
|
|
|
|
2020-11-19 17:28:28 +00:00
|
|
|
@import '../../../../common/mobile/resources/less/_mixins.less';
|
2020-08-31 17:31:05 +00:00
|
|
|
@import '../../../../common/mobile/resources/less/collaboration.less';
|
2020-10-26 07:59:18 +00:00
|
|
|
@import '../../../../common/mobile/resources/less/common.less';
|
2020-10-14 09:00:05 +00:00
|
|
|
@import '../../../../common/mobile/resources/less/common-ios.less';
|
|
|
|
@import '../../../../common/mobile/resources/less/common-material.less';
|
2021-02-09 21:01:42 +00:00
|
|
|
@import '../../../../common/mobile/resources/less/icons.less';
|
2021-01-17 16:31:49 +00:00
|
|
|
@import '../../../../common/mobile/resources/less/dataview.less';
|
2021-01-20 16:18:48 +00:00
|
|
|
@import '../../../../common/mobile/resources/less/search.less';
|
2021-02-09 21:01:42 +00:00
|
|
|
@import '../../../../common/mobile/resources/less/contextmenu.less';
|
2021-02-18 15:40:54 +00:00
|
|
|
@import '../../../../common/mobile/resources/less/comments.less';
|
2020-10-14 09:00:05 +00:00
|
|
|
@import './app-material.less';
|
|
|
|
@import './app-ios.less';
|
2020-11-19 17:28:28 +00:00
|
|
|
@import './icons-ios.less';
|
|
|
|
@import './icons-material.less';
|
2020-08-31 17:31:05 +00:00
|
|
|
|
2020-10-13 14:00:59 +00:00
|
|
|
:root {
|
|
|
|
--f7-popover-width: 360px;
|
|
|
|
}
|
2020-12-04 16:26:47 +00:00
|
|
|
|
2021-05-14 16:42:40 +00:00
|
|
|
// Skeleton of document
|
|
|
|
|
|
|
|
.doc-placeholder {
|
|
|
|
position: relative;
|
|
|
|
background: #fbfbfb;
|
|
|
|
padding-top: calc(var(--f7-page-navbar-offset, 0px) + var(--f7-page-subnavbar-offset, 0px));
|
|
|
|
overflow: hidden;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
> .line {
|
|
|
|
height: 15px;
|
|
|
|
margin: 30px;
|
|
|
|
background: #e2e2e2;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
-webkit-animation: flickerAnimation 2s infinite ease-in-out;
|
|
|
|
-moz-animation: flickerAnimation 2s infinite ease-in-out;
|
|
|
|
-o-animation: flickerAnimation 2s infinite ease-in-out;
|
|
|
|
animation: flickerAnimation 2s infinite ease-in-out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-11 23:34:01 +00:00
|
|
|
// Review
|
|
|
|
.page-review {
|
|
|
|
--f7-toolbar-link-color: @themeColor;
|
|
|
|
.toolbar {
|
|
|
|
background-color: @white;
|
|
|
|
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
position: absolute;
|
|
|
|
#btn-reject-change {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
#btn-goto-change {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.next-prev {
|
|
|
|
.link {
|
|
|
|
width: 44px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.page-content {
|
|
|
|
background-color: @white;
|
2021-02-12 17:33:38 +00:00
|
|
|
.no-changes {
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
.block-description {
|
|
|
|
padding: 15px;
|
|
|
|
.user-name {
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: @black;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.date-change {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
color: @darkGray;
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
color: @black;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
2021-02-11 23:34:01 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-04 16:26:47 +00:00
|
|
|
|