fix bug 79210

This commit is contained in:
Dmitry-Ilyushechkin
2026-01-22 19:20:57 +03:00
parent b6b91e1167
commit b353271811
5 changed files with 21 additions and 3 deletions

View File

@ -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);
}
}

View File

@ -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);
}
}

View File

@ -122,7 +122,7 @@
transition: all .3s;
}
.popover-backdrop, .sheet-backdrop {
.popover-backdrop, .sheet-backdrop, .popup-backdrop {
background-color: transparent;
}

View File

@ -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;

View File

@ -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>