jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/listview/listview.css

187 lines
3.2 KiB
CSS
Raw Normal View History

2016-08-07 11:46:11 -07:00
.listItem {
2016-05-31 08:29:00 -07:00
background: transparent;
2016-07-19 23:23:18 -07:00
border: 0;
2016-05-31 08:29:00 -07:00
outline: none !important;
color: inherit;
vertical-align: middle;
font-family: inherit;
font-size: inherit;
2016-07-15 22:05:40 -07:00
margin: 0;
2016-07-05 12:24:45 -07:00
display: block;
2016-05-30 09:09:47 -07:00
align-items: center;
text-align: left;
2016-08-05 12:34:10 -07:00
padding: .25em 1.15em;
cursor: pointer;
2016-08-06 12:56:35 -07:00
overflow: hidden;
2016-05-30 09:09:47 -07:00
}
2016-08-07 13:57:46 -07:00
.listItem-button {
width: 100%;
}
2016-08-05 12:34:10 -07:00
.listItem-largeImage {
2016-07-16 11:02:39 -07:00
padding: .5em !important;
2016-07-15 22:05:40 -07:00
}
2016-05-31 08:29:00 -07:00
2016-08-07 14:08:07 -07:00
.listItemImage, .listItemIcon, .listItemAside {
2016-07-15 22:05:40 -07:00
flex-shrink: 0;
}
2016-08-07 11:46:11 -07:00
.listItemBody, .listItemImage, .listItemIcon {
2016-07-15 22:05:40 -07:00
display: inline-block;
vertical-align: middle;
}
2016-07-05 12:24:45 -07:00
2016-08-07 11:46:11 -07:00
.listItemButton {
2016-07-16 11:02:39 -07:00
margin: 0;
2016-08-07 11:46:11 -07:00
display: inline-block;
vertical-align: middle;
flex-shrink: 0;
2016-09-22 23:57:24 -07:00
contain: layout style;
2016-07-16 11:02:39 -07:00
}
.listViewDragHandle {
margin-left: -.25em !important;
}
2016-05-30 09:09:47 -07:00
.listItemBody {
flex-grow: 1;
2016-10-02 20:49:52 -07:00
padding: .8em 1em;
2016-05-31 08:29:00 -07:00
overflow: hidden;
text-overflow: ellipsis;
2016-06-26 21:19:10 -07:00
flex-direction: column;
vertical-align: middle;
justify-content: center;
2016-05-30 13:46:18 -07:00
}
2016-10-03 22:15:39 -07:00
.listItemBody-noleftpadding {
padding-left: 0;
}
2016-10-02 23:28:45 -07:00
.listItem-odd {
2016-10-03 22:15:39 -07:00
background: #1c1c1c;
2016-08-05 12:34:10 -07:00
}
2016-05-30 13:46:18 -07:00
2016-08-05 12:34:10 -07:00
.three-line {
2016-08-06 19:11:39 -07:00
min-height: 6.3em;
2016-08-05 12:34:10 -07:00
padding-top: 0;
padding-bottom: 0;
2016-05-31 08:29:00 -07:00
}
2016-05-30 13:46:18 -07:00
.listItemBodyText {
2016-08-05 12:34:10 -07:00
margin: 0;
2016-09-07 13:11:16 -07:00
padding: .25em 0;
2016-05-31 08:29:00 -07:00
overflow: hidden;
text-overflow: ellipsis;
2016-05-30 09:09:47 -07:00
}
2016-08-05 12:34:10 -07:00
.listItemBodyText-nowrap {
white-space: nowrap;
}
2016-05-30 09:09:47 -07:00
.listItemImage {
width: 7.4vh;
height: 7.4vh;
2016-07-15 22:05:40 -07:00
min-width: 40px;
min-height: 40px;
2016-05-30 09:09:47 -07:00
background-repeat: no-repeat;
background-size: contain;
flex-shrink: 0;
2016-07-15 14:16:18 -07:00
background-position: center center;
2016-07-16 11:02:39 -07:00
position: relative;
2016-05-30 09:09:47 -07:00
}
2016-08-05 12:34:10 -07:00
.listItemImage-large {
width: 45vh;
height: 30vh;
background-position: center center;
margin-right: 2%;
margin-left: 1%;
}
2016-05-31 08:29:00 -07:00
.listItemIcon {
2016-07-21 10:23:25 -07:00
width: auto !important;
height: auto !important;
2016-08-05 13:25:09 -07:00
font-size: 143%;
2016-07-21 10:23:25 -07:00
border-radius: 500px;
background-color: #52B54B;
padding: .5em;
color: #fff;
2016-05-31 08:29:00 -07:00
}
2016-08-07 11:46:11 -07:00
.listItemProgressBar {
2016-05-30 09:09:47 -07:00
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
2016-06-09 09:13:25 -07:00
.listItem .secondary {
2016-08-05 12:34:10 -07:00
color: #888;
2016-06-09 09:13:25 -07:00
}
2016-05-30 09:09:47 -07:00
.listItem:focus .secondary {
color: inherit !important;
}
2016-08-08 11:13:52 -07:00
.listItem-focusscale {
2016-05-30 09:09:47 -07:00
transition: transform .2s ease-out;
}
2016-08-08 11:13:52 -07:00
.listItem-focusscale:focus {
2016-05-30 13:46:18 -07:00
transform: scale(1.025, 1.025);
}
.paperList {
padding: .5em 0;
2016-05-31 08:29:00 -07:00
margin: 1em auto;
2016-05-30 13:46:18 -07:00
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
2016-05-31 08:29:00 -07:00
2016-08-07 11:46:11 -07:00
.paperList-clear {
box-shadow: none !important;
background-color: transparent !important;
}
2016-07-05 12:24:45 -07:00
2016-08-05 12:34:10 -07:00
.listItemMediaInfo {
/* Don't display if flex not supported */
display: none;
align-items: center;
2016-10-03 22:15:39 -07:00
margin-right: 1em;
2016-07-15 22:05:40 -07:00
}
.listGroupHeader {
margin: 2em 0 1em;
}
2016-08-05 12:34:10 -07:00
.listGroupHeader-first {
margin-top: 0;
}
2016-07-05 12:24:45 -07:00
2016-08-07 11:46:11 -07:00
.listItemIndicators {
2016-07-16 14:28:15 -07:00
right: .5vh;
top: .5vh;
position: absolute;
display: flex;
align-items: center;
}
2016-07-05 12:24:45 -07:00
@supports (display: flex) {
2016-07-15 14:16:18 -07:00
.listItem, .listItemBody, .listItemMediaInfo {
2016-07-05 12:24:45 -07:00
display: flex;
2016-09-22 23:57:24 -07:00
contain: layout style;
2016-07-05 12:24:45 -07:00
}
}
2016-07-15 22:05:40 -07:00
@media all and (max-width: 800px) {
.listItem .endsAt, .listItem .criticRating {
display: none !important;
}
}
2016-09-15 11:28:46 -07:00
.listItemCheckboxContainer {
width: auto !important;
}