1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Mass actions available on cards view

fixup! Mass action toggle button added
This commit is contained in:
Simounet 2023-05-10 21:08:34 +02:00
parent 384918cda9
commit d0aad7b96d
No known key found for this signature in database
GPG key ID: 77D3B7DC794EB770
6 changed files with 37 additions and 36 deletions

View file

@ -16,12 +16,6 @@
.mass-buttons {
margin: 10px 5px 10px 20px;
#selectAll {
position: relative;
opacity: initial;
left: 0;
}
span {
padding: 3px;
}
@ -38,20 +32,30 @@
}
}
.card-stacked {
input[type="checkbox"] {
position: relative;
opacity: initial;
left: 0;
}
.entry-checkbox {
margin: 10px 15px 10px 5px;
.entry-checkbox {
margin-right: 10px;
.card & {
float: right;
margin-right: 0;
padding: 10px;
}
}
.entries .entry-checkbox-input,
.mass-buttons .entry-checkbox-input {
position: relative;
left: 0;
width: 20px;
min-height: 25px;
height: 100%;
vertical-align: middle;
opacity: initial;
}
.mass-action-inputs-displayed:not(:checked) ~ .mass-buttons,
.mass-action-inputs-displayed:not(:checked) ~ .entries .entry-checkbox {
.mass-action-inputs-displayed:not(:checked) ~ .entries .entry-checkbox,
.mass-action-inputs-displayed:checked ~ .entries .card-preview {
display: none;
}