fix hound

This commit is contained in:
Emilio García 2016-01-25 15:59:18 +01:00
parent 5472801a8f
commit 37f5c9df9d
4 changed files with 18 additions and 18 deletions

View File

@ -21,8 +21,8 @@
border: 1px solid $cMainLine; border: 1px solid $cMainLine;
border-radius: 3px; border-radius: 3px;
&:before, &::before,
&:after { &::after {
display: block; display: block;
position: absolute; position: absolute;
bottom: 3px; bottom: 3px;
@ -32,13 +32,13 @@
content: ''; content: '';
} }
&:before { &::before {
right: $baseSize / 2; right: $baseSize / 2;
height: $baseSize; height: $baseSize;
transform: rotate(45deg); transform: rotate(45deg);
} }
&:after { &::after {
left: $baseSize / 2; left: $baseSize / 2;
height: $baseSize - 2; height: $baseSize - 2;
transform: rotate(-45deg); transform: rotate(-45deg);
@ -52,8 +52,8 @@
border: 1px solid $cBlue; border: 1px solid $cBlue;
} }
&:before, &::before,
&:after { &::after {
background: $cWhite; background: $cWhite;
} }
} }
@ -74,8 +74,8 @@
border: 1px solid $cSecondaryLine; border: 1px solid $cSecondaryLine;
} }
&:before, &::before,
&:after { &::after {
background: $cWhite; background: $cWhite;
} }
} }

View File

@ -22,7 +22,7 @@
border: 1px solid $cMainLine; border: 1px solid $cMainLine;
border-radius: 50%; border-radius: 50%;
&:before { &::before {
display: block; display: block;
position: absolute; position: absolute;
top: 50%; top: 50%;
@ -44,7 +44,7 @@
border: 1px solid $cBlue; border: 1px solid $cBlue;
} }
&:before { &::before {
background: $cWhite; background: $cWhite;
} }
} }
@ -65,7 +65,7 @@
border: 1px solid $cSecondaryLine; border: 1px solid $cSecondaryLine;
} }
&:before { &::before {
background: $cWhite; background: $cWhite;
} }
} }

View File

@ -37,7 +37,7 @@
background: $cMainLine; background: $cMainLine;
} }
.CDB-Range::-webkit-slider-thumb:before { .CDB-Range::-webkit-slider-thumb::before {
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;
@ -49,7 +49,7 @@
content: ''; content: '';
} }
.CDB-Range::-webkit-slider-thumb:after { .CDB-Range::-webkit-slider-thumb::after {
position: absolute; position: absolute;
top: -6px; top: -6px;
right: -6px; right: -6px;
@ -69,16 +69,16 @@
outline: none; outline: none;
} }
.CDB-Range:hover::-webkit-slider-thumb:after, .CDB-Range:hover::-webkit-slider-thumb::after,
.CDB-Range:focus::-webkit-slider-thumb:after { .CDB-Range:focus::-webkit-slider-thumb::after {
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.64); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.64);
cursor: pointer; cursor: pointer;
} }
.CDB-Range:disabled::-webkit-slider-thumb:before { .CDB-Range:disabled::-webkit-slider-thumb::before {
opacity: 0.2; opacity: 0.2;
} }
.CDB-Range:disabled::-webkit-slider-thumb:after { .CDB-Range:disabled::-webkit-slider-thumb::after {
opacity: 0.2; opacity: 0.2;
} }