Skip to content
This repository has been archived by the owner on Nov 22, 2021. It is now read-only.

Commit

Permalink
Merge PR #155
Browse files Browse the repository at this point in the history
  • Loading branch information
mbenford committed Aug 17, 2014
2 parents fe711f5 + 7cd29c4 commit 54731a9
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions scss/bootstrap.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
@import "main";

tags-input {
.tags {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
&.focused {
border-color: #66afe9;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);
}
.tag-item {
background: #428bca;
border: 1px solid #357ebd;
border-radius: 4px;
color: #fff;
&.selected {
background: #d9534f;
border: 1px solid #d43f3a;
border-radius: 4px;
color: #fff;
}
button {
background: transparent;
color: #000;
opacity: .4;
}
}
}
.autocomplete {
border-radius: 4px;
.suggestion-item {
&.selected {
color: #262626;
background-color: #e9e9e9;
em {
color: #262626;
background-color: #ffff00;
}
}
em {
font-weight: normal;
background-color: #ffff00;
}
}
}
}

0 comments on commit 54731a9

Please sign in to comment.