aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/search/SearchBox.scss
diff options
context:
space:
mode:
authorandy temp <andytemp@Kates-MacBook-Pro.local>2020-07-20 11:50:15 -0400
committerandy temp <andytemp@Kates-MacBook-Pro.local>2020-07-20 11:50:15 -0400
commit2f3543eb4484205667bd2a248ef991147815f5a8 (patch)
tree42fd46902fe5995f24186b32af9fb19ab08b9d61 /src/client/views/search/SearchBox.scss
parentb5972bca2024f2d7ac5cb8762408dbe9be56e1e1 (diff)
bugfixes for highlighting
Diffstat (limited to 'src/client/views/search/SearchBox.scss')
-rw-r--r--src/client/views/search/SearchBox.scss10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/client/views/search/SearchBox.scss b/src/client/views/search/SearchBox.scss
index cd64d71ff..4d057f782 100644
--- a/src/client/views/search/SearchBox.scss
+++ b/src/client/views/search/SearchBox.scss
@@ -19,8 +19,7 @@
display: flex;
justify-content: flex-end;
align-items: center;
- padding-left: 2px;
-
+ background-color: black;
.searchBox-barChild {
&.searchBox-collection {
@@ -30,17 +29,20 @@
}
&.searchBox-input {
+ margin:5px;
+ border-radius:20px;
+ border:black;
display: block;
width: 130px;
-webkit-transition: width 0.4s;
transition: width 0.4s;
align-self: stretch;
-
+ outline:none;
}
.searchBox-input:focus {
width: 500px;
- outline: 3px solid lightblue;
+ outline:none;
}
&.searchBox-filter {