-
-
Notifications
You must be signed in to change notification settings - Fork 776
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a search function to projects page- Draft (#4942)
* search function draft * search function * operators capitalized * Fixed NOT operator * Event property changes * Additional event changes
- Loading branch information
1 parent
d78b71d
commit bf70550
Showing
4 changed files
with
312 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#search-bar { | ||
height: 44px; | ||
padding: 10px 16px; | ||
border-radius: 5px; | ||
border: 1px solid rgba(0, 0, 0, 0.24); | ||
display: flex; | ||
flex-direction: row; | ||
background: $color-white; | ||
gap: 4px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
//Styles to override the styles from _forms.scss | ||
#search{ | ||
padding-right: 0px; | ||
padding-left: 0px; | ||
appearance: none; | ||
background: $color-white; | ||
border: none; | ||
border-radius: 0px; | ||
box-shadow: none; | ||
color: $color-black; | ||
font-size: 1rem; | ||
height: 22px; | ||
margin-bottom: 10px; | ||
width: 100%; | ||
} | ||
|
||
.search-x { | ||
width: 24px; | ||
height: 24px; | ||
padding: 0; | ||
margin: 0; | ||
display: none; | ||
border:none; | ||
} | ||
|
||
.search-glass { | ||
width: 24px; | ||
height: 24px; | ||
padding: 0; | ||
margin: 0; | ||
border: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.