Merge pull request #64 from ascribe/show-search-bar-border

Always show border for collection search bar
This commit is contained in:
Tim Daubenschütz 2016-01-18 09:08:16 +01:00
commit 600096376c
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);