-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: School text-box dropdown in manage/questionnaires/edit missing b…
…ackground (#296) * fix(questionnaire): fixed background in school autocomplete fixed the questionnaire edit page so that it was blank in the management edit page * fix(questionnaire): sperated autocomplete sass into its own file seperated the sass for the autocomplete into its own file so that manage could use it without the other sass in forms.sass * Use grays for manage backgrouind Co-authored-by: Chris Baudouin, Jr <cjb5326@rit.edu> Co-authored-by: Peter Kos <pkos91@icloud.com>
- Loading branch information
1 parent
113cd61
commit c9d6658
Showing
5 changed files
with
41 additions
and
24 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,24 @@ | ||
|
||
// jquery ui override | ||
.ui-autocomplete | ||
@include css4 | ||
background: var(--input--background--focus) | ||
border: 1px solid var(--input--border-color--focus) | ||
color: var(--input--text--focus) | ||
list-style: none | ||
padding: 0 | ||
.ui-menu-item div | ||
padding: 2px 5px | ||
display: block | ||
cursor: pointer | ||
overflow: hidden | ||
text-overflow: ellipsis | ||
white-space: nowrap | ||
&:hover | ||
@include css4 | ||
background: var(--primary) | ||
@include css4 | ||
color: var(--white) | ||
// needed for ellipsis in text to work and acts as a min-width | ||
.ui-menu | ||
width: 50px |
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
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,12 @@ | ||
|
||
@import ../forms/autocomplete | ||
|
||
// jquery ui override | ||
.ui-autocomplete | ||
background: white | ||
border: 1px solid #333 | ||
color: #222 | ||
.ui-menu-item div | ||
&:hover | ||
background: #999 | ||
color: white |