2016-02-21 15:39:14 -05:00
|
|
|
.actionSheet {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2016-04-11 00:24:16 -04:00
|
|
|
padding: 0;
|
|
|
|
border: none;
|
2016-04-27 00:22:32 -04:00
|
|
|
max-height: 84%;
|
2016-09-18 01:52:10 -04:00
|
|
|
border-radius: 1px !important;
|
2016-02-21 15:39:14 -05:00
|
|
|
}
|
|
|
|
|
2016-08-04 22:03:15 -04:00
|
|
|
.actionsheet-fullscreen {
|
2016-04-27 00:22:32 -04:00
|
|
|
max-height: none;
|
2016-09-18 01:52:10 -04:00
|
|
|
border-radius: 0 !important;
|
2016-04-27 00:22:32 -04:00
|
|
|
}
|
|
|
|
|
2016-08-02 01:55:52 -04:00
|
|
|
.actionSheetContent-centered {
|
2016-04-27 00:22:32 -04:00
|
|
|
text-align: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2016-02-21 15:39:14 -05:00
|
|
|
|
|
|
|
.actionSheetContent {
|
|
|
|
margin: 0 !important;
|
2016-04-11 00:24:16 -04:00
|
|
|
padding: .4em 0 !important;
|
2016-02-21 15:39:14 -05:00
|
|
|
flex-direction: column;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2016-05-20 01:36:57 -04:00
|
|
|
flex-grow: 1;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
2016-02-21 15:39:14 -05:00
|
|
|
}
|
|
|
|
|
2016-08-02 01:55:52 -04:00
|
|
|
.actionSheetMenuItem {
|
2016-04-16 15:22:09 -04:00
|
|
|
padding: 0 1.6em;
|
2016-02-21 15:39:14 -05:00
|
|
|
margin: 0;
|
|
|
|
text-transform: none;
|
|
|
|
text-align: inherit;
|
|
|
|
display: flex;
|
|
|
|
font-weight: inherit;
|
2016-04-16 15:22:09 -04:00
|
|
|
align-items: center;
|
2016-06-04 20:17:35 -04:00
|
|
|
flex-shrink: 0;
|
2016-09-15 14:28:46 -04:00
|
|
|
background: transparent;
|
|
|
|
box-shadow: none;
|
2016-04-16 15:22:09 -04:00
|
|
|
}
|
|
|
|
|
2016-08-09 14:22:19 -04:00
|
|
|
.actionSheetMenuItem-noflex {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2016-04-16 15:22:09 -04:00
|
|
|
.actionSheetItemText {
|
2016-09-03 13:58:23 -04:00
|
|
|
padding: .7em 0;
|
2016-06-10 02:54:03 -04:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2016-06-15 12:45:45 -04:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2016-09-03 13:58:23 -04:00
|
|
|
.actionSheetItemText-extraspacing {
|
|
|
|
padding: .8em 0;
|
|
|
|
}
|
|
|
|
|
2016-08-05 02:10:24 -04:00
|
|
|
.emby-button-noflex .actionSheetItemText {
|
2016-06-15 12:45:45 -04:00
|
|
|
display: inline-block;
|
2016-02-21 15:39:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.actionSheetItemIcon {
|
|
|
|
margin-right: 1.5em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actionSheetScroller {
|
|
|
|
/* Override default style being applied by polymer */
|
|
|
|
margin-bottom: 0 !important;
|
2016-06-04 20:17:35 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2016-06-10 02:54:03 -04:00
|
|
|
width: 100%;
|
2016-02-21 15:39:14 -05:00
|
|
|
}
|
|
|
|
|
2016-05-20 01:36:57 -04:00
|
|
|
.layout-tv .actionSheetScroller {
|
2016-07-31 13:58:06 -04:00
|
|
|
max-height: 64%;
|
2016-06-11 11:55:39 -04:00
|
|
|
max-width: 60%;
|
|
|
|
width: auto;
|
2016-05-20 01:36:57 -04:00
|
|
|
}
|
2016-02-21 15:39:14 -05:00
|
|
|
|
2016-08-02 01:55:52 -04:00
|
|
|
.actionSheetTitle {
|
2016-02-28 16:31:45 -05:00
|
|
|
margin: .5em 0 1em !important;
|
2016-04-11 00:24:16 -04:00
|
|
|
padding: 0 1em;
|
2016-05-20 01:36:57 -04:00
|
|
|
flex-grow: 0;
|
2016-02-21 15:39:14 -05:00
|
|
|
}
|
|
|
|
|
2016-07-07 14:12:08 -04:00
|
|
|
.actionSheetText {
|
|
|
|
padding: 0 1em;
|
|
|
|
flex-grow: 0;
|
|
|
|
}
|
|
|
|
|
2016-08-02 01:55:52 -04:00
|
|
|
.actionsheet-extraSpacing {
|
2016-04-11 00:24:16 -04:00
|
|
|
font-size: 108%;
|
2016-07-07 14:12:08 -04:00
|
|
|
}
|
2016-09-07 17:08:40 -04:00
|
|
|
|
|
|
|
.btnCloseActionSheet {
|
|
|
|
position: fixed;
|
2016-09-07 22:55:54 -04:00
|
|
|
top: .75em;
|
|
|
|
left: .5em;
|
2016-09-15 14:28:46 -04:00
|
|
|
}
|