1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/components/multiSelect/multiSelect.scss

37 lines
573 B
SCSS
Raw Normal View History

2020-08-14 08:46:34 +02:00
2019-01-23 11:33:34 +00:00
.itemSelectionPanel {
2018-10-23 01:13:23 +03:00
position: absolute;
bottom: 0;
left: 0;
right: 0;
top: 0;
2020-01-19 15:00:37 +01:00
background-color: rgba(0, 0, 0, 0.3);
z-index: 99998;
2018-10-23 01:13:23 +03:00
}
.selectionCommandsPanel {
position: fixed;
top: 0;
left: 0;
right: 0;
2020-01-19 15:00:37 +01:00
padding: 1em 0.5em;
2018-10-23 01:13:23 +03:00
display: flex;
align-items: center;
z-index: 99999;
2018-10-23 01:13:23 +03:00
}
.itemSelectionCount {
vertical-align: middle;
color: #fff !important;
margin: 0;
2018-10-23 01:13:23 +03:00
}
.multiSelectCheckboxOutline {
top: 0 !important;
border-radius: 0 !important;
2018-10-23 01:13:23 +03:00
}
.withMultiSelect {
position: relative;
}