-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #356 from mkocansey/v2.7
Release V2.7.0
- Loading branch information
Showing
12 changed files
with
325 additions
and
25 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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
@layer components { | ||
.bw-progress-bar .striped { | ||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.35) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.35) 75%, transparent 75%, transparent); | ||
background-size: 2.5rem 2.5rem; | ||
} | ||
|
||
.bw-progress-bar .striped.animated { | ||
animation: move-stripes 8s linear infinite; | ||
} | ||
|
||
@keyframes move-stripes { | ||
0% { | ||
background-position: 0 0; | ||
} | ||
100% { | ||
background-position: 100% 100%; | ||
} | ||
} | ||
} |
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,126 @@ | ||
@layer components { | ||
|
||
.bw-slider { | ||
@apply appearance-none w-full h-2 bg-gray-200 outline-0 opacity-90 rounded-full transition-opacity; | ||
} | ||
|
||
.bw-slider::-webkit-slider-thumb { | ||
@apply rounded-full cursor-pointer appearance-none size-6 | ||
} | ||
|
||
.bw-slider::-moz-range-thumb { | ||
@apply rounded-full cursor-pointer appearance-none size-6 | ||
} | ||
|
||
.bw-slider.primary::-webkit-slider-thumb { | ||
@apply bg-primary-500 | ||
} | ||
|
||
.bw-slider.primary::-moz-range-thumb { | ||
@apply bg-primary-500 | ||
} | ||
|
||
.bw-slider.pink::-webkit-slider-thumb { | ||
@apply bg-pink-500 | ||
} | ||
|
||
.bw-slider.pink::-moz-range-thumb { | ||
@apply bg-pink-500 | ||
} | ||
|
||
.bw-slider.blue::-webkit-slider-thumb { | ||
@apply bg-blue-500 | ||
} | ||
|
||
.bw-slider.blue::-moz-range-thumb { | ||
@apply bg-blue-500 | ||
} | ||
|
||
.bw-slider.red::-webkit-slider-thumb { | ||
@apply bg-red-500 | ||
} | ||
|
||
.bw-slider.red::-moz-range-thumb { | ||
@apply bg-red-500 | ||
} | ||
|
||
.bw-slider.yellow::-webkit-slider-thumb { | ||
@apply bg-amber-500 | ||
} | ||
|
||
.bw-slider.yellow::-moz-range-thumb { | ||
@apply bg-amber-500 | ||
} | ||
|
||
.bw-slider.black::-webkit-slider-thumb { | ||
@apply bg-slate-500 | ||
} | ||
|
||
.bw-slider.black::-moz-range-thumb { | ||
@apply bg-slate-500 | ||
} | ||
|
||
.bw-slider.gray::-webkit-slider-thumb { | ||
@apply bg-slate-500 | ||
} | ||
|
||
.bw-slider.gray::-moz-range-thumb { | ||
@apply bg-slate-500 | ||
} | ||
|
||
.bw-slider.purple::-webkit-slider-thumb { | ||
@apply bg-purple-500 | ||
} | ||
|
||
.bw-slider.purple::-moz-range-thumb { | ||
@apply bg-purple-500 | ||
} | ||
|
||
.bw-slider.cyan::-webkit-slider-thumb { | ||
@apply bg-cyan-500 | ||
} | ||
|
||
.bw-slider.cyan::-moz-range-thumb { | ||
@apply bg-cyan-500 | ||
} | ||
|
||
.bw-slider.orange::-webkit-slider-thumb { | ||
@apply bg-orange-500 | ||
} | ||
|
||
.bw-slider.orange::-moz-range-thumb { | ||
@apply bg-orange-500 | ||
} | ||
|
||
.bw-slider.violet::-webkit-slider-thumb { | ||
@apply bg-violet-500 | ||
} | ||
|
||
.bw-slider.violet::-moz-range-thumb { | ||
@apply bg-violet-500 | ||
} | ||
|
||
.bw-slider.indigo::-webkit-slider-thumb { | ||
@apply bg-indigo-500 | ||
} | ||
|
||
.bw-slider.indigo::-moz-range-thumb { | ||
@apply bg-indigo-500 | ||
} | ||
|
||
.bw-slider.fuchsia::-webkit-slider-thumb { | ||
@apply bg-fuchsia-500 | ||
} | ||
|
||
.bw-slider.fuchsia::-moz-range-thumb { | ||
@apply bg-fuchsia-500 | ||
} | ||
|
||
.bw-slider.green::-webkit-slider-thumb { | ||
@apply bg-green-500 | ||
} | ||
|
||
.bw-slider.green::-moz-range-thumb { | ||
@apply bg-green-500 | ||
} | ||
} |
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
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
Oops, something went wrong.