-
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.
- Small fixes - A start has been made for the Configurate menu
- Loading branch information
1 parent
29e1306
commit 142074d
Showing
6 changed files
with
140 additions
and
84 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,7 +1,13 @@ | ||
from seaplayer.seaplayer import SeaPlayer | ||
from rich.console import Console | ||
|
||
console = Console() | ||
|
||
# ! Start | ||
if __name__ == "__main__": | ||
app = SeaPlayer() | ||
app.run() | ||
app.started = False | ||
try: | ||
app = SeaPlayer() | ||
app.run() | ||
app.started = False | ||
#console.print(app.styles.background) | ||
except: console.print_exception(word_wrap=True, show_locals=True) |
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,60 @@ | ||
/* ! Music List */ | ||
.music-list-view { | ||
height: 1fr; | ||
} | ||
|
||
.music-list-view-item { | ||
height: 4; | ||
} | ||
|
||
.music-list-view-item-title-label { | ||
height: 1; | ||
color: #cacaca; | ||
} | ||
|
||
.music-list-view-item-subtitle-label { | ||
height: 1; | ||
color: #a9a9a9; | ||
} | ||
|
||
.music-list-screen-add-box { | ||
height: 3; | ||
} | ||
|
||
.music-list-screen-add-input { | ||
width: 3fr; | ||
} | ||
|
||
.music-list-screen-add-button { | ||
width: 1fr; | ||
} | ||
|
||
/* ! IndeterminateProgress */ | ||
.indeterminate-progress-bar { height: 1; } | ||
|
||
/* ! Image Label */ | ||
.image-label { | ||
height: 1fr; | ||
width: 1fr; | ||
align: center middle; | ||
text-align: center; | ||
} | ||
|
||
/* ! Configurate List */ | ||
.configurate-list-view { | ||
border: solid cadetblue; | ||
/*border: solid darkcyan;*/ | ||
height: 1fr; | ||
width: 1fr; | ||
} | ||
|
||
.configurate-list-view-item { | ||
border: solid dodgerblue; | ||
background: #0000; | ||
border-title-color: #aaaaaa; | ||
border-subtitle-color: #6b6b6b; | ||
} | ||
|
||
/* ! Any Elements CSS */ | ||
.pass-one-width { width: 1; } | ||
|
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