fix: don't underline the search icon

This commit is contained in:
curben 2018-11-11 21:29:16 +10:30
parent 7d15668c04
commit 7bbf3f4183
1 changed files with 9 additions and 1 deletions

View File

@ -1411,7 +1411,7 @@ pre .keyword {
} }
/* search bar */ /* search bar */
.searchContainer{ .searchContainer {
width: 10em; width: 10em;
color:#d8d8d8; color:#d8d8d8;
background-color:#333; background-color:#333;
@ -1421,6 +1421,14 @@ pre .keyword {
position: relative; position: relative;
} }
/* don't underline the search icon */
.searchContainer a:hover,
.searchContainer a:visited,
.searchContainer a:link,
.searchContainer a:active {
border-bottom: none;
}
/* inline-block to position them in same line */ /* inline-block to position them in same line */
.searchBox, .searchBox,
.searchBtn{ .searchBtn{