feat multiselection: select multiple files and act on them
fix breadcrumb: fixed breadcrumb history not working properly when clicking on "sdcard" fix dialogs/menus: fixed clicking out of menus and dialogs triggering actions other than hiding the dialog/event
This commit is contained in:
@ -14,27 +14,35 @@ input {
|
||||
.light-medium;
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
label {
|
||||
clear: left;
|
||||
|
||||
input[type="checkbox"]::before {
|
||||
content: '';
|
||||
display: block;
|
||||
&::after {
|
||||
content: '';
|
||||
display: block;
|
||||
|
||||
border: 1px solid @gray;
|
||||
float: right;
|
||||
|
||||
background: transparent;
|
||||
margin-right: 13px;
|
||||
|
||||
border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
|
||||
box-sizing: border-box;
|
||||
background: transparent;
|
||||
|
||||
&:checked {
|
||||
background: @blue;
|
||||
border: 1px solid @overlay;
|
||||
}
|
||||
}
|
||||
|
||||
input[type='checkbox'] {
|
||||
clear: right;
|
||||
float: right;
|
||||
|
||||
display: none;
|
||||
}
|
||||
|
||||
input:checked + label::after {
|
||||
background: @blue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user