Audio player, tweaks to suit

This commit is contained in:
Sam Potts
2015-02-15 12:17:16 +11:00
parent 63c1d04d72
commit 0f77a44472
7 changed files with 180 additions and 75 deletions

View File

@ -21,14 +21,7 @@
@progress-bg: @gray;
@progress-value-bg: @blue;
// BORDER-BOX ALL THE THINGS! (http://paulirish.com/2012/box-sizing-border-box-ftw/)
// -------------------------------
.player,
.player *,
.player *::after,
.player *::before {
box-sizing: border-box;
}
// Utility classes & mixins
// -------------------------------
@ -76,6 +69,14 @@
overflow: hidden; // For the controls
background: #000;
// BORDER-BOX ALL THE THINGS!
// http://paulirish.com/2012/box-sizing-border-box-ftw/
&,
*,
*::after,
*::before {
box-sizing: border-box;
}
// For video
&-video {
@ -270,7 +271,7 @@
}
&:focus {
outline: 0;
&::-webkit-slider-thumb {
background: @control-color-active;
}
@ -309,7 +310,7 @@
}
}
/* fixing display for IE10+ */
// Fixing display for IE10+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.video-controls .player-volume {
position: relative;