forked from LeaVerou/awesomplete
-
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.
Split styles into a less opinionated base stylesheet and a theme styl…
…esheet and merge with Gulp (LeaVerou#16940) * add slash to explicitly ignore directories (https://git-scm.com/docs/gitignore) * Split the stylesheet into a base and theme file * Add gulp-concat which is used to merge the base and theme styles to create awesomplete.css * Add resulting awesomplete.css file * Correct gulp-dest target to match minify target * Update docs to reflect awesomplete.css is a generated file.
- Loading branch information
1 parent
92ddc9d
commit 58b0004
Showing
7 changed files
with
162 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
node_modules | ||
coverage | ||
node_modules/ | ||
coverage/ |
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,33 @@ | ||
.awesomplete [hidden] { | ||
display: none; | ||
} | ||
|
||
.awesomplete .visually-hidden { | ||
position: absolute; | ||
clip: rect(0, 0, 0, 0); | ||
} | ||
|
||
.awesomplete { | ||
display: inline-block; | ||
position: relative; | ||
} | ||
|
||
.awesomplete > input { | ||
display: block; | ||
} | ||
|
||
.awesomplete > ul { | ||
position: absolute; | ||
left: 0; | ||
z-index: 1; | ||
min-width: 100%; | ||
box-sizing: border-box; | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
background: #fff; | ||
} | ||
|
||
.awesomplete > ul:empty { | ||
display: 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
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,69 @@ | ||
.awesomplete > ul { | ||
border-radius: .3em; | ||
margin: .2em 0 0; | ||
background: hsla(0,0%,100%,.9); | ||
background: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8)); | ||
border: 1px solid rgba(0,0,0,.3); | ||
box-shadow: .05em .2em .6em rgba(0,0,0,.2); | ||
text-shadow: none; | ||
} | ||
|
||
@supports (transform: scale(0)) { | ||
.awesomplete > ul { | ||
transition: .3s cubic-bezier(.4,.2,.5,1.4); | ||
transform-origin: 1.43em -.43em; | ||
} | ||
|
||
.awesomplete > ul[hidden], | ||
.awesomplete > ul:empty { | ||
opacity: 0; | ||
transform: scale(0); | ||
display: block; | ||
transition-timing-function: ease; | ||
} | ||
} | ||
|
||
/* Pointer */ | ||
.awesomplete > ul:before { | ||
content: ""; | ||
position: absolute; | ||
top: -.43em; | ||
left: 1em; | ||
width: 0; height: 0; | ||
padding: .4em; | ||
background: white; | ||
border: inherit; | ||
border-right: 0; | ||
border-bottom: 0; | ||
-webkit-transform: rotate(45deg); | ||
transform: rotate(45deg); | ||
} | ||
|
||
.awesomplete > ul > li { | ||
position: relative; | ||
padding: .2em .5em; | ||
cursor: pointer; | ||
} | ||
|
||
.awesomplete > ul > li:hover { | ||
background: hsl(200, 40%, 80%); | ||
color: black; | ||
} | ||
|
||
.awesomplete > ul > li[aria-selected="true"] { | ||
background: hsl(205, 40%, 40%); | ||
color: white; | ||
} | ||
|
||
.awesomplete mark { | ||
background: hsl(65, 100%, 50%); | ||
} | ||
|
||
.awesomplete li:hover mark { | ||
background: hsl(68, 100%, 41%); | ||
} | ||
|
||
.awesomplete li[aria-selected="true"] mark { | ||
background: hsl(86, 100%, 21%); | ||
color: inherit; | ||
} |
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