-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 #188 from nukeop/feature/ui-enhancements
Feature/ui enhancements
- Loading branch information
Showing
7 changed files
with
52 additions
and
64 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
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 |
---|---|---|
@@ -1,17 +1,15 @@ | ||
@import "../../vars"; | ||
|
||
.seekbar_container { | ||
height: 4px; | ||
height: 1em; | ||
|
||
cursor: pointer; | ||
|
||
background-color: rgba(248, 248, 242, 0.25); | ||
background-color: $background2; | ||
|
||
flex: 0 0 auto; | ||
} | ||
|
||
.seekbar_fill { | ||
height: 4px; | ||
|
||
background-color: $pink; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,7 +89,6 @@ | |
flex: 0 0 auto; | ||
flex-flow: column; | ||
|
||
height: 80px; | ||
width: 100%; | ||
max-width: 100%; | ||
|
||
|
4e9e481
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For me this commit broke something in the dashboard : when I click on an artist name, the app reloads + error : "TypeError: Cannot read property 'loading' of undefined" at ArtistView/index.js:21
4e9e481
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll take a look, though I didn't touch that view. There's also a problem with the queue and its popups.
4e9e481
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This bug occurs because of this function: https://github.com/nukeop/nuclear/blame/master/app/components/ArtistView/index.js#L21
For a moment
artist
is undefined. So trying to access its properties causes a crash. Working on it now.BTW. the problem with queue popups is solved now.