2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

minor visual improvements to mini-tag-chooser

This commit is contained in:
Joffrey JAFFEUX 2018-02-14 10:26:43 +01:00 committed by GitHub
parent 38f4acd55a
commit 480c94d298
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,8 +59,7 @@
} }
.selected-tag { .selected-tag {
background: $primary-low; background: $primary-very-low;
border-radius: 2px;
padding: 2px 4px; padding: 2px 4px;
margin: 2px; margin: 2px;
border: 0; border: 0;
@ -69,10 +68,17 @@
box-shadow: 0 0 2px $danger, 0 1px 0 rgba(0,0,0,0.05); box-shadow: 0 0 2px $danger, 0 1px 0 rgba(0,0,0,0.05);
} }
&:before { &:after {
content: '\f00d'; content: '\f00d';
color: $primary-low-mid;
font-family: 'FontAwesome'; font-family: 'FontAwesome';
} }
&:hover {
&:after {
color: $danger;
}
}
} }
} }
} }