-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Prev and Next buttons now navigate to the previous/next logical marker according to sorted and enabled regions. Additionally, it adds a virtual marker at the beginning of each region allowing to quickly navigate between regions. Also: - cache textColor func - fixed hover colors - reduced bottom navigation size and removed border
- Loading branch information
Showing
16 changed files
with
552 additions
and
248 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,41 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
@layer components { | ||
button.btn-region { | ||
@apply appearance-none | ||
py-2.5 | ||
px-5 | ||
font-medium | ||
text-sm | ||
focus:outline-none | ||
rounded-lg | ||
border-2 | ||
border-transparent | ||
brightness-75 | ||
bg-gray-800 | ||
text-gray-400 | ||
hover:brightness-100; | ||
} | ||
|
||
.btn-region.selected { | ||
@apply text-white | ||
z-10 | ||
border-slate-200 | ||
brightness-125 | ||
hover:brightness-[135%]; | ||
} | ||
|
||
.btn-region.playing { | ||
@apply border-2 border-emerald-300; | ||
} | ||
|
||
.btn-region.paused { | ||
@apply border-2 border-yellow-600; | ||
} | ||
|
||
.btn-region.stopped { | ||
@apply border-2 border-orange-600; | ||
} | ||
} |
Oops, something went wrong.