-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CDPT-1995: TypeError: r(...) is not a function (#276)
* CDPT-1995: TypeError: r(...) is not a function - remove nselect.js script and all reference - copy css for the select box but use default browser styles for the dropdown * CDPT-1995: TypeError: r(...) is not a function - move styles into form.scss * CDPT-1995: TypeError: r(...) is not a function - linting
- Loading branch information
1 parent
1ffccd6
commit c110974
Showing
5 changed files
with
33 additions
and
310 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 was deleted.
Oops, something went wrong.
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,32 @@ | ||
.filter form > div:has(select) { | ||
position: relative; | ||
width: 162px; | ||
&:after { | ||
position: absolute; | ||
content: ""; | ||
background: url(../img/select-btn.png) no-repeat right 0; | ||
width: 34px; | ||
height: 29px; | ||
z-index: 1; | ||
bottom: 1px; | ||
right: 1px; | ||
pointer-events: none; /* Purely decorative - allow users to click through to the select */ | ||
} | ||
select { | ||
appearance: none; | ||
background: linear-gradient(#fefefe, #dfdfdf); | ||
border-left: 1px solid #b3b2b2; | ||
border-right: 1px solid #b3b2b2; | ||
box-shadow: 0 1px 3px 0 #ddd; | ||
padding: 7px 45px 4px 10px; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
cursor: default; | ||
text-align: left; | ||
z-index: 0; | ||
color: #4e6280; | ||
width: 100%; | ||
height: 2.3em; | ||
} | ||
} |