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/actionsheet/actionsheet.css

115 lines
1.9 KiB
CSS
Raw Normal View History

2018-10-23 01:13:23 +03:00
.actionSheet {
display: flex;
justify-content: center;
padding: 0;
border: none;
max-height: 84%;
border-radius: .1em !important;
2018-10-23 01:13:23 +03:00
}
.actionsheet-not-fullscreen {
max-width: 90%;
max-height: 90%;
2018-10-23 01:13:23 +03:00
}
.actionsheet-fullscreen {
max-height: none;
border-radius: 0 !important;
2018-10-23 01:13:23 +03:00
}
.actionSheetContent-centered {
text-align: center;
align-items: center;
2018-10-23 01:13:23 +03:00
}
.actionSheetContent {
margin: 0 !important;
padding: .4em 0 !important;
flex-direction: column;
display: flex;
justify-content: center;
flex-grow: 1;
overflow: hidden;
2018-10-23 01:13:23 +03:00
}
.actionSheetMenuItem {
font-weight: inherit;
box-shadow: none;
flex-shrink: 0;
2019-09-06 22:33:15 -07:00
border-radius: 0;
2018-10-23 01:13:23 +03:00
}
.actionSheetMenuItem:focus {
transform: none !important;
}
2018-10-23 01:13:23 +03:00
.actionsheetListItemBody {
padding: .4em 1em .4em .6em !important;
2018-10-23 01:13:23 +03:00
}
.actionSheetItemText {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
flex-grow: 1;
display: flex;
justify-content: flex-start;
2018-10-23 01:13:23 +03:00
}
.actionSheetItemAsideText {
opacity: .7;
font-size: 90%;
display: flex;
justify-content: flex-end;
flex-shrink: 0;
margin-left: 5em;
margin-right: .5em;
2018-10-23 01:13:23 +03:00
}
.actionSheetScroller {
/* Override default style being applied by polymer */
2018-10-23 01:13:23 +03:00
margin-bottom: 0 !important;
display: flex;
flex-direction: column;
width: 100%;
2018-10-23 01:13:23 +03:00
}
.actionSheetScroller-tv {
max-height: 64%;
max-width: 60%;
width: auto;
2018-10-23 01:13:23 +03:00
}
.actionsheetDivider {
height: .07em;
margin: .25em 0;
flex-shrink: 0;
2018-10-23 01:13:23 +03:00
}
.actionSheetTitle {
margin: .6em 0 .7em !important;
padding: 0 .9em;
flex-grow: 0;
2018-10-23 01:13:23 +03:00
}
.actionSheetText {
padding: 0 1em;
flex-grow: 0;
2018-10-23 01:13:23 +03:00
}
.actionsheetMenuItemIcon {
margin: 0 .85em 0 .45em !important;
padding: 0 !important;
2018-10-23 01:13:23 +03:00
}
.actionsheet-xlargeFont {
font-size: 112%!important;
2018-10-23 01:13:23 +03:00
}
.btnCloseActionSheet {
position: fixed;
top: .75em;
left: .5em;
}