mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Cleanup CSS for paginator and filters
This commit is contained in:
parent
b2635eb5c6
commit
d305e090c5
7 changed files with 42 additions and 61 deletions
|
|
@ -346,13 +346,9 @@ html:not(.rl-mobile) .show-mobile {
|
|||
display: none !important;
|
||||
}
|
||||
|
||||
html.rl-mobile .width100-on-mobile {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.e-paginator {
|
||||
|
||||
.e-page {
|
||||
a {
|
||||
opacity: 0.5;
|
||||
text-decoration: none;
|
||||
font-size: 22px;
|
||||
|
|
|
|||
|
|
@ -460,7 +460,7 @@ class ContactsPopupView extends AbstractViewPopup {
|
|||
const self = this;
|
||||
|
||||
dom.addEventListener('click', event => {
|
||||
let el = event.target.closestWithin('.e-paginator .e-page', dom);
|
||||
let el = event.target.closestWithin('.e-paginator a', dom);
|
||||
if (el && ko.dataFor(el)) {
|
||||
self.contactsPage(pInt(ko.dataFor(el).value));
|
||||
self.reloadContactList();
|
||||
|
|
|
|||
|
|
@ -694,7 +694,7 @@ export class MailMessageList extends AbstractViewRight {
|
|||
AppUserStore.focusedState(Scope.MessageList);
|
||||
}
|
||||
|
||||
let el = eqs(event, '.e-paginator .e-page');
|
||||
let el = eqs(event, '.e-paginator a');
|
||||
el && this.gotoPage(ko.dataFor(el));
|
||||
|
||||
eqs(event, '.checkboxCheckAll') && this.checkAll(!this.checkAll());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue