jellyfin-web/dashboard-ui/css/posteritem.css

440 lines
8.2 KiB
CSS
Raw Normal View History

2013-04-25 16:28:01 -07:00
.posterItem {
2014-05-01 19:54:33 -07:00
margin: 5px 5px;
2013-04-25 16:28:01 -07:00
text-shadow: none;
font-weight: normal!important;
display: inline-block;
position: relative;
2013-04-28 10:39:16 -07:00
color: #fff!important;
2013-04-25 16:28:01 -07:00
text-decoration: none;
text-align: left;
2013-12-22 10:16:24 -07:00
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-o-transition: all 500ms ease;
-ms-transition: all 500ms ease;
transition: all 500ms ease;
2013-04-25 16:28:01 -07:00
}
2014-01-14 22:01:58 -07:00
.posterItemOverlayTarget {
position: absolute;
right: 0;
left: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .85);
2014-01-14 22:01:58 -07:00
z-index: 999;
display: none;
}
.posterItemOverlayInner {
2014-01-22 15:38:55 -07:00
padding: 11px 12px 10px;
2014-01-14 13:56:53 -07:00
}
2013-12-23 08:26:36 -07:00
2013-04-25 16:28:01 -07:00
.posterItemImage {
background-size: contain;
2013-04-25 16:28:01 -07:00
background-repeat: no-repeat;
2013-05-03 13:50:13 -07:00
background-position: center bottom;
2013-04-28 10:39:16 -07:00
background-color: #000;
2013-12-28 22:32:03 -07:00
position: relative;
2013-04-28 10:39:16 -07:00
}
2014-01-14 08:50:39 -07:00
.posterItem:hover .posterItemImage {
2014-02-12 22:11:54 -07:00
-moz-box-shadow: 0 0 12px 7px #38c;
-webkit-box-shadow: 0 0 12px 7px #38c;
box-shadow: 0 0 12px 7px #38c;
2014-01-14 08:50:39 -07:00
}
.coveredPosterItemImage {
background-size: cover;
background-position: center center;
}
2013-04-28 10:39:16 -07:00
.transparentPosterItem .posterItemImage {
background-color: transparent;
2013-04-25 16:28:01 -07:00
}
.defaultPosterItemImage {
background-color: #999;
}
2013-11-07 10:27:05 -07:00
.posterItemStoreText {
font-weight: normal;
2013-11-07 10:27:05 -07:00
text-overflow: ellipsis;
overflow: hidden;
text-wrap: none;
white-space: nowrap;
text-shadow: none;
padding-left: 2px;
2013-11-07 10:27:05 -07:00
}
2013-04-25 16:28:01 -07:00
.posterItemText {
text-overflow: ellipsis;
overflow: hidden;
text-wrap: none;
white-space: nowrap;
2013-12-28 14:37:01 -07:00
padding: 5px 4px 4px;
2013-04-25 16:28:01 -07:00
text-shadow: none;
2013-12-29 10:07:29 -07:00
font-size: 13px;
font-weight: 400;
2013-04-25 16:28:01 -07:00
}
2013-12-22 10:16:24 -07:00
.posterItemTextOverlay {
position: absolute;
bottom: 0;
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.7))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); /* W3C */
left: 0;
right: 0;
2013-04-25 17:52:55 -07:00
}
2013-12-29 19:41:22 -07:00
.posterItemTextOverlay .posterItemText {
background-color: transparent;
padding-left: 5px;
2014-05-12 11:04:25 -07:00
padding: 0 5px 4px;
2013-12-29 19:41:22 -07:00
}
2013-12-22 10:16:24 -07:00
2014-05-12 11:04:25 -07:00
.posterItemTextOverlay .posterItemText:last-child:not(.posterItemProgress) {
2013-12-29 19:41:22 -07:00
padding-bottom: 8px;
}
2013-12-22 10:16:24 -07:00
.posterItemTextCentered {
text-align: center;
}
.posterItemText + .posterItemProgress {
padding-top: 0;
}
2013-04-25 17:52:55 -07:00
.posterItemDefaultText {
position: absolute;
top: 30%;
left: 0;
right: 0;
text-align: center;
}
2013-04-25 16:28:01 -07:00
.squarePosterItem {
2014-03-07 21:20:31 -07:00
width: 148px;
2013-04-25 16:28:01 -07:00
}
.squarePosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 148px;
2013-04-25 16:28:01 -07:00
}
.storeReviewCount {
display: none;
}
2013-11-07 10:27:05 -07:00
.myLibraryPosterItem {
2014-05-27 07:30:21 -07:00
width: 42%;
}
.myLibraryPosterItem .posterItemImage {
2014-05-27 14:17:48 -07:00
height: 34px;
2014-05-20 17:56:24 -07:00
background-position: 12px center;
background-size: 20px 20px;
2014-05-29 07:19:12 -07:00
background-color: rgba(51, 136, 204, 0.7);
background-color: rgba(82, 181, 75, 0.7);
}
.myLibraryPosterItem .posterItemDefaultText {
top: 0;
left: 0;
line-height: 36px;
text-align: left;
padding: 0 0 0 43px;
}
2014-05-20 17:56:24 -07:00
.moviesPosterItem .posterItemImage {
2014-05-29 07:19:12 -07:00
background-color: rgba(176, 94, 81, 0.7);
2014-05-20 17:56:24 -07:00
}
.musicPosterItem .posterItemImage {
2014-05-29 07:19:12 -07:00
background-color: rgba(217, 145, 67, 0.7);
2014-05-20 17:56:24 -07:00
}
.tvshowsPosterItem .posterItemImage {
2014-05-29 07:19:12 -07:00
background-color: rgba(77, 88, 164, 0.7);
2014-05-20 17:56:24 -07:00
}
.gamesPosterItem .posterItemImage {
2014-05-29 07:19:12 -07:00
background-color: rgba(183, 202, 72, 0.7);
2014-05-20 17:56:24 -07:00
}
.channelsPosterItem .posterItemImage {
2014-05-29 07:19:12 -07:00
background-color: rgba(51, 136, 204, 0.7);
2014-05-20 17:56:24 -07:00
}
.livetvPosterItem .posterItemImage {
2014-05-29 07:19:12 -07:00
background-color: rgba(255, 233, 127, 0.7);
2014-05-20 17:56:24 -07:00
}
.backdropPosterItem {
width: 128px;
}
.backdropPosterItem .posterItemImage {
height: 72px;
}
2013-12-23 08:26:36 -07:00
.smallBackdropPosterItem {
width: 120px;
2013-12-23 08:26:36 -07:00
}
2013-05-03 13:50:13 -07:00
2013-12-23 08:26:36 -07:00
.smallBackdropPosterItem .posterItemImage {
height: 67.5px;
2013-12-23 08:26:36 -07:00
}
2013-12-22 14:11:32 -07:00
2013-12-28 22:32:03 -07:00
.portraitPosterItem {
2014-03-07 21:20:31 -07:00
width: 96px;
2013-12-28 22:32:03 -07:00
}
2013-05-03 19:33:44 -07:00
2013-12-28 22:32:03 -07:00
.portraitPosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 144px;
2013-12-28 22:32:03 -07:00
}
2014-03-30 18:00:47 -07:00
.bannerPosterItem {
width: 280px;
}
.bannerPosterItem .posterItemImage {
height: 51.8px;
}
2014-05-12 11:04:25 -07:00
.posterItemProgress {
line-height: 7px;
2013-05-03 19:33:44 -07:00
}
2014-05-12 11:04:25 -07:00
.posterItemProgress .itemProgressBar {
height: 7px;
width: 100%;
opacity: .8;
}
.miniPosterItemProgress {
/* Make sure it's on top of the fade gradient '*/
z-index: 1000;
}
2014-01-14 08:50:39 -07:00
.miniPosterItemProgress .itemProgressBar {
2014-05-09 12:43:06 -07:00
height: 6px;
2014-01-14 08:50:39 -07:00
opacity: 1;
}
.sessionPosterItem .posterItemText:not(.posterItemName) {
color: #000;
text-align: left;
}
.sessionPosterItem .posterItemName {
color: #fff!important;
}
.sessionPosterItem .posterItemDefaultText {
color: #000!important;
font-weight: normal !important;
top: 42%;
}
2014-01-04 22:15:38 -07:00
@media all and (max-width: 600px) {
.packageReviewText {
display: none;
}
}
2014-03-20 08:55:22 -07:00
@media all and (max-width: 1200px) {
.portraitPosterItem .posterItemOverlayInner {
padding-left: 7px;
padding-right: 7px;
}
}
@media all and (min-width: 360px) {
2014-05-27 07:30:21 -07:00
.myLibraryPosterItem {
width: 45%;
}
.backdropPosterItem {
width: 148px;
}
.backdropPosterItem .posterItemImage {
height: 83.25px;
}
.smallBackdropPosterItem {
width: 157px;
}
.smallBackdropPosterItem .posterItemImage {
height: 88.3125px;
}
}
2013-12-22 10:16:24 -07:00
@media all and (min-width: 540px) {
2013-05-03 19:33:44 -07:00
2013-12-22 10:16:24 -07:00
.backdropPosterItem {
2014-03-07 21:20:31 -07:00
width: 266px;
2013-12-22 10:16:24 -07:00
}
.backdropPosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 149.625px;
2013-12-22 10:16:24 -07:00
}
2013-12-23 08:26:36 -07:00
.smallBackdropPosterItem {
2014-03-07 21:20:31 -07:00
width: 180px;
2013-12-23 08:26:36 -07:00
}
.smallBackdropPosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 101.25px;
2013-12-23 08:26:36 -07:00
}
}
@media all and (min-width: 600px) {
.squarePosterItem {
2014-03-07 21:20:31 -07:00
width: 170px;
}
.squarePosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 170px;
}
.portraitPosterItem {
2014-03-07 21:20:31 -07:00
width: 128px;
}
.portraitPosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 192px;
}
}
2013-04-25 18:52:29 -07:00
@media all and (min-width: 650px) {
2013-04-25 17:52:55 -07:00
.backdropPosterItem {
2014-03-07 21:20:31 -07:00
width: 282px;
2013-04-25 17:52:55 -07:00
}
.backdropPosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 158.625px;
2013-04-25 17:52:55 -07:00
}
2013-12-23 08:26:36 -07:00
.smallBackdropPosterItem {
2014-05-20 17:56:24 -07:00
width: 190px;
2013-12-23 08:26:36 -07:00
}
.smallBackdropPosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 113.625px;
2013-12-23 08:26:36 -07:00
}
2014-03-30 18:00:47 -07:00
.bannerPosterItem {
width: 300px;
}
.bannerPosterItem .posterItemImage {
height: 55.5px;
}
2013-04-25 18:52:29 -07:00
}
2014-05-20 17:56:24 -07:00
@media all and (min-width: 600px) {
.myLibraryPosterItem {
2014-05-27 07:30:21 -07:00
width: 30%;
2014-05-20 17:56:24 -07:00
}
}
2013-04-25 18:52:29 -07:00
@media all and (min-width: 750px) {
2013-04-25 17:52:55 -07:00
.portraitPosterItem {
2014-03-07 21:20:31 -07:00
width: 118px;
2013-04-25 17:52:55 -07:00
}
.portraitPosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 177px;
2013-04-25 17:52:55 -07:00
}
2014-03-30 18:00:47 -07:00
.bannerPosterItem {
width: 330px;
}
.bannerPosterItem .posterItemImage {
height: 61.05px;
}
2013-04-25 17:52:55 -07:00
}
2014-01-16 15:49:31 -07:00
@media all and (min-width: 1000px) {
2014-05-27 07:30:21 -07:00
.myLibraryPosterItem {
width: 23%;
}
2014-01-16 15:49:31 -07:00
.smallBackdropPosterItem {
2014-03-07 21:20:31 -07:00
width: 208px;
2014-01-16 15:49:31 -07:00
}
.smallBackdropPosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 117px;
2014-01-16 15:49:31 -07:00
}
}
2013-04-25 17:52:55 -07:00
@media all and (min-width: 1200px) {
.portraitPosterItem {
2014-03-07 21:20:31 -07:00
width: 144px;
2013-04-25 17:52:55 -07:00
}
.portraitPosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 216px;
2013-04-25 17:52:55 -07:00
}
2013-05-04 06:29:44 -07:00
.storeReviewCount {
display: inline;
}
2014-03-30 18:00:47 -07:00
.bannerPosterItem {
width: 500px;
}
.bannerPosterItem .posterItemImage {
height: 92.5px;
}
2013-04-25 17:52:55 -07:00
}
@media all and (min-width: 1440px) {
2014-05-27 07:30:21 -07:00
.myLibraryPosterItem {
width: 19%;
}
2014-03-17 18:45:41 -07:00
.squarePosterItem {
2014-05-02 07:49:28 -07:00
width: 167px;
2014-03-17 18:45:41 -07:00
}
.squarePosterItem .posterItemImage {
2014-05-02 07:49:28 -07:00
height: 167px;
2014-03-17 18:45:41 -07:00
}
2013-12-22 10:16:24 -07:00
.backdropPosterItem {
2014-03-07 21:20:31 -07:00
width: 298px;
2013-05-03 19:33:44 -07:00
}
2013-12-22 10:16:24 -07:00
.backdropPosterItem .posterItemImage {
2014-03-07 21:20:31 -07:00
height: 167.625px;
2013-12-22 10:16:24 -07:00
}
2014-03-30 18:00:47 -07:00
}
2014-05-27 14:17:48 -07:00
@media all and (min-width: 1600px) {
.myLibraryPosterItem {
width: 16%;
}
}