-
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.
Project / MucOx: Taskbar Improvements, iFrame Window movement fix, ba…
…ckground image // Vita: highlight when hovering
- Loading branch information
Showing
34 changed files
with
334 additions
and
226 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
File renamed without changes
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
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,3 +1,5 @@ | ||
export interface MuxTheme { | ||
|
||
wallpaper: string; | ||
|
||
} |
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,26 +1,14 @@ | ||
.mux-desktop { | ||
display: grid; | ||
grid-template-rows: 62px 1fr 62px; | ||
grid-template-columns: 62px 1fr 62px; | ||
grid-template-areas: "main main main" "main main main" "menu taskbar taskbar"; | ||
height: 100%; | ||
width: 100%; | ||
gap: 4px; | ||
|
||
.mux-menu { | ||
grid-area: menu; | ||
} | ||
|
||
.mux-taskbar { | ||
grid-area: taskbar; | ||
} | ||
|
||
.mux-main-window { | ||
grid-area: main; | ||
overflow: hidden; | ||
} | ||
|
||
.mux-program-selection { | ||
grid-area: selection; | ||
.mux-desktop-background { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
z-index: -1; | ||
object-fit: cover; | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.mux-dock-item { | ||
position: relative; | ||
/* transition: width 0.1s ease; */ | ||
|
||
button { | ||
position: sticky; | ||
left: 0; | ||
right: 0; | ||
bottom: 4px; | ||
gap: 4px; | ||
padding: 4px; | ||
border-radius: var(--muxBorderRadius); | ||
display: grid; | ||
grid-template-rows: 1fr 2px; | ||
} | ||
} |
Oops, something went wrong.