Color bar component: style fixes

This commit is contained in:
María Checa 2016-02-18 20:05:07 +01:00
parent bde6ec4559
commit 89f0e13fae
2 changed files with 4 additions and 4 deletions

View File

@ -57,7 +57,6 @@
border-radius: 6px; border-radius: 6px;
&::after { &::after {
content:"";
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;
@ -65,6 +64,7 @@
left: 0; left: 0;
border: 1px solid rgba(0, 0, 0, 0.2); border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px; border-radius: 6px;
content:"";
} }
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
@ -106,7 +106,7 @@
} }
&:last-child { &:last-child {
border-radius: 2px 6px 6px 2px; border-radius: 2px 6px 6px 2px;
&:after { &::after {
border-radius: 2px 6px 6px 2px; border-radius: 2px 6px 6px 2px;
} }
} }

View File

@ -81,14 +81,14 @@
box-sizing: content-box; box-sizing: content-box;
&::after { &::after {
content: "·";
color: $cHintText; color: $cHintText;
padding: 9px; padding: 9px;
content: "·";
} }
&:last-child { &:last-child {
&::after { &::after {
content: "";
padding: 0; padding: 0;
content: "";
} }
} }
} }