mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-02-10 18:05:32 +08:00
fix bug 79210
This commit is contained in:
@ -685,6 +685,16 @@
|
||||
background-color: @background-warning;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.popover {
|
||||
box-shadow: 0 10px 100px 0 rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.sheet-modal, .dropdown-list-popup {
|
||||
box-shadow: 0 8px 28px 0 rgba(0, 0, 0, 0.16);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -629,6 +629,9 @@
|
||||
}
|
||||
.title, a {
|
||||
color: @text-normal;
|
||||
.icon-svg.done {
|
||||
fill: @brand-word;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -765,4 +768,9 @@
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.sheet-modal.calendar, .dropdown-list-popup {
|
||||
box-shadow:0 3.75px 11px 0 rgba(0, 0, 0, 0.19),
|
||||
0 0.5px 5px 0 rgba(0, 0, 0, 0.039);
|
||||
}
|
||||
}
|
||||
|
||||
@ -122,7 +122,7 @@
|
||||
transition: all .3s;
|
||||
}
|
||||
|
||||
.popover-backdrop, .sheet-backdrop {
|
||||
.popover-backdrop, .sheet-backdrop, .popup-backdrop {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
|
||||
@ -272,7 +272,7 @@
|
||||
.toolbar {
|
||||
background-color: @background-secondary;
|
||||
i.icon.icon-next, i.icon.icon-prev {
|
||||
background-color: @text-normal;
|
||||
color: @text-normal;
|
||||
}
|
||||
&:after {
|
||||
background-color: @background-menu-divider;
|
||||
|
||||
@ -96,7 +96,7 @@ const PageDropdownList = props => {
|
||||
<NavRight>
|
||||
<Link text={Device.ios ? t('Edit.textDone') : ''} onClick={props.closeModal}>
|
||||
{Device.android &&
|
||||
<SvgIcon slot="media" symbolId={IconDone.id} className={'icon icon-svg'} />
|
||||
<SvgIcon slot="media" symbolId={IconDone.id} className={'icon icon-svg done'} />
|
||||
}
|
||||
</Link>
|
||||
</NavRight>
|
||||
|
||||
Reference in New Issue
Block a user