mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
37 lines
646 B
CSS
37 lines
646 B
CSS
.itemSelectionPanel {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
background-color: rgba(0, 0, 0, .3);
|
|
z-index: 999;
|
|
border: 1px solid #43A047;
|
|
}
|
|
|
|
.selectionCommandsPanel {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: #43A047;
|
|
z-index: 1000;
|
|
padding: .5em;
|
|
display: flex;
|
|
align-items: center;
|
|
color: #fff;
|
|
}
|
|
|
|
.itemSelectionCount {
|
|
font-size: 28px;
|
|
vertical-align: middle;
|
|
color: #fff;
|
|
display: inline-block;
|
|
padding-top: 1px;
|
|
}
|
|
|
|
.itemSelectionPanel .checkboxOutline {
|
|
top: 0 !important;
|
|
border-radius: 0 !important;
|
|
}
|