Always show border for collection search bar

This commit is contained in:
Brett Sun 2015-12-09 17:41:55 +01:00
parent dcca228669
commit 160c4dd82e
2 changed files with 3 additions and 2 deletions

View File

@ -447,9 +447,9 @@ fieldset[disabled] .btn-secondary.active {
}
.search-bar > .form-group > .input-group {
border: 1px solid rgba(0, 0, 0, 0);
border: 1px solid $ascribe-blue-border;
&:hover, &:focus, &:active {
border-color: $ascribe-blue-border;
border-color: $ascribe-blue-border-active;
}
input::-webkit-input-placeholder {
color: rgba($ascribe-dark-blue, 0.5);

View File

@ -5,6 +5,7 @@ $ascribe-light-blue: #D3DEE4;
$ascribe-white: #F8F8F8;
$ascribe-pink: #D10074;
$ascribe-blue-border: rgba(0, 60, 105, 0.1);
$ascribe-blue-border-active: rgba(0, 60, 105, 0.2);
$ascribe-red-error: rgb(169, 68, 66);