1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

begin detail page consolidation

This commit is contained in:
Luke Pulverenti 2013-04-10 09:53:44 -04:00
parent a65280a36c
commit 86603de5f2
6 changed files with 458 additions and 447 deletions

View file

@ -186,3 +186,48 @@
padding: 3px 10px;
border-bottom-left-radius: 10px;
}
/* Firefox and Polyfill */
.itemProgress {
border: solid #222222 1px;
background: #444444 !important; /* !important only needed in polyfill */
border-radius: 0!important;
height: 12px;
opacity: .7;
position: absolute;
left: 10%;
right: 10%;
bottom: 61px;
width: 80%;
}
/* Chrome */
.itemProgress::-webkit-progress-bar {
background: #444444;
border-radius: 0!important;
}
/*
* Background of the progress bar value
*/
/* Firefox */
.itemProgress::-moz-progress-bar {
border-radius: 0!important;
background-image: -moz-linear-gradient( center bottom, rgb(43,194,83) 37%, rgb(84,240,84) 69% );
}
/* Chrome */
.itemProgress::-webkit-progress-value {
border-radius: 0!important;
background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(43,194,83)), color-stop(1, rgb(84,240,84)) );
background-image: -webkit-linear-gradient( center bottom, rgb(43,194,83) 37%, rgb(84,240,84) 69% );
}
/* Polyfill */
.itemProgress[aria-valuenow]:before {
border-radius: 0!important;
background-image: -moz-linear-gradient( center bottom, rgb(43,194,83) 37%, rgb(84,240,84) 69% );
background-image: -ms-linear-gradient( center bottom, rgb(43,194,83) 37%, rgb(84,240,84) 69% );
background-image: -o-linear-gradient( center bottom, rgb(43,194,83) 37%, rgb(84,240,84) 69% );
}