Polish GUI #7
No reviewers
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
WIP
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: gorb/frontend#7
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "GUI-polish"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I'm working on polishing the GUI, but i need help with the layering of user popups.
It might be a better idea to have a single "global" popup, that we just change the content of and move around at runtime, opinions?
I've attached an image of the layering in question
Looks good. One of my branches has changes that will probably conflict, but I'll handle that when I get there.
As for global popup, I've been making a Modal component in the branch I'm working on for invites that should be useful.
@ -9,21 +10,20 @@
const banner = useState("banner", () => false);
let current_theme = "dark" // default theme
Use pascalCase, not snake_case.
@ -74,6 +77,20 @@ onMounted(async () => {
// showHover.value = !showHover.value;
//}
function getDayDifference(date_1: Date, date_2: Date) {
Use pascalCase, not snake_case.
do i merge with the silly popup thing?
What do you mean?
Also fix the casing in the instances I commented on.
@sauceyred wrote in #7 (comment):
https://git.gorb.app/attachments/8649716a-c61b-4a4f-bd3e-7481f4390748
Nah, don't.
Good.
@ -1,5 +1,6 @@
<template>
<div>
<link :href="'/themes/' + currentTheme + '.css'" rel="stylesheet" type="text/css"></link>
Left this comment on PR #8:
Use
useHead()
in<script>
rather than<link>
in the body.