mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
40 lines
658 B
CSS
40 lines
658 B
CSS
.itemSelectionPanel {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
background-color: rgba(0, 0, 0, .3);
|
|
z-index: 99998;
|
|
border: 1px solid #43A047;
|
|
}
|
|
|
|
.selectionCommandsPanel {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: #43A047;
|
|
padding: .5em;
|
|
display: flex;
|
|
align-items: center;
|
|
color: #fff;
|
|
z-index: 99999;
|
|
}
|
|
|
|
.itemSelectionCount {
|
|
vertical-align: middle;
|
|
color: #fff;
|
|
opacity: 1 !important;
|
|
margin: 0;
|
|
}
|
|
|
|
.multiSelectCheckboxOutline {
|
|
top: 0 !important;
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
.withMultiSelect {
|
|
position: relative;
|
|
}
|