Merge pull request #1611 from ONLYOFFICE/feature/fix-bug-react
Feature/fix bug react
This commit is contained in:
commit
d2c5b7ff1d
|
@ -46,6 +46,10 @@
|
||||||
--f7-picker-item-text-color: rgba(var(--text-normal), 0.45);
|
--f7-picker-item-text-color: rgba(var(--text-normal), 0.45);
|
||||||
--f7-picker-item-selected-text-color: @text-normal;
|
--f7-picker-item-selected-text-color: @text-normal;
|
||||||
|
|
||||||
|
--f7-input-bg-color: @background-primary;
|
||||||
|
--f7-input-placeholder-color: @text-secondary;
|
||||||
|
--f7-input-text-color: @text-normal;
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
--f7-touch-ripple-color: transparent;
|
--f7-touch-ripple-color: transparent;
|
||||||
}
|
}
|
||||||
|
@ -86,7 +90,6 @@
|
||||||
--f7-list-item-text-text-color: @text-normal;
|
--f7-list-item-text-text-color: @text-normal;
|
||||||
--f7-list-item-subtitle-text-color: @text-secondary;
|
--f7-list-item-subtitle-text-color: @text-secondary;
|
||||||
--f7-block-title-text-color: @text-secondary;
|
--f7-block-title-text-color: @text-secondary;
|
||||||
--f7-input-placeholder-color: @text-secondary;
|
|
||||||
--f7-label-text-color: @text-normal;
|
--f7-label-text-color: @text-normal;
|
||||||
--f7-page-bg-color: @background-tertiary;
|
--f7-page-bg-color: @background-tertiary;
|
||||||
--f7-list-bg-color: @background-primary;
|
--f7-list-bg-color: @background-primary;
|
||||||
|
@ -95,7 +98,6 @@
|
||||||
--f7-toggle-inactive-color: @background-menu-divider;
|
--f7-toggle-inactive-color: @background-menu-divider;
|
||||||
--f7-toggle-border-color: @background-menu-divider;
|
--f7-toggle-border-color: @background-menu-divider;
|
||||||
--f7-actions-button-text-color: @text-normal;
|
--f7-actions-button-text-color: @text-normal;
|
||||||
--f7-input-text-color: @text-normal;
|
|
||||||
--f7-subnavbar-border-color: @background-menu-divider;
|
--f7-subnavbar-border-color: @background-menu-divider;
|
||||||
--f7-list-border-color: @background-menu-divider;
|
--f7-list-border-color: @background-menu-divider;
|
||||||
}
|
}
|
||||||
|
@ -607,6 +609,7 @@
|
||||||
.inputs-list {
|
.inputs-list {
|
||||||
margin: 15px 0 0;
|
margin: 15px 0 0;
|
||||||
ul {
|
ul {
|
||||||
|
background: none;
|
||||||
&::before, &::after {
|
&::before, &::after {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -167,4 +167,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.calendar-sheet{
|
||||||
|
.calendar-day-weekend {
|
||||||
|
color: #D25252;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -627,9 +627,10 @@ class MainController extends Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
onAdvancedOptions (type, advOptions) {
|
onAdvancedOptions (type, advOptions) {
|
||||||
if ($$('.dlg-adv-options.modal-in').length > 0) return;
|
const { t } = this.props;
|
||||||
|
const _t = t('Controller.Main', {returnObjects:true});
|
||||||
|
|
||||||
const _t = this._t;
|
if ($$('.dlg-adv-options.modal-in').length > 0) return;
|
||||||
|
|
||||||
if (type == Asc.c_oAscAdvancedOptionsID.DRM) {
|
if (type == Asc.c_oAscAdvancedOptionsID.DRM) {
|
||||||
Common.Notifications.trigger('preloader:close');
|
Common.Notifications.trigger('preloader:close');
|
||||||
|
|
|
@ -134,8 +134,8 @@
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.page{
|
.navbar {
|
||||||
top: 30px;
|
top: -1px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue