Skip to content

Commit

Permalink
Merge branch 'main' into update
Browse files Browse the repository at this point in the history
  • Loading branch information
soulhotel authored Dec 18, 2024
2 parents 14c52db + 72722d4 commit a227ca3
Show file tree
Hide file tree
Showing 5 changed files with 140 additions and 32 deletions.
91 changes: 91 additions & 0 deletions .github/ISSUE_TEMPLATE/1-issue-template.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
name: 🚩 Bugs, Errors, and Other Issues
description: Report an issue to help us improve FF Ultima.
labels:
- "bug"
- "issue"
body:
- type: markdown
attributes:
value: |
## Before submitting, have you already looked through the [FF Ultima Wiki](https://github.com/soulhotel/FF-ULTIMA/wiki)?
- type: dropdown
id: checked-wiki
attributes:
label: "Already looked at the Wiki?"
description: "[FF Ultima Wiki](https://github.com/soulhotel/FF-ULTIMA/wiki)"
options:
- "No"
- "Yes"
validations:
required: true

- type: textarea
id: issue-description
attributes:
label: "Describe the Issue"
placeholder: "A detailed description of what the issue is."
validations:
required: true

- type: textarea
id: expected-behavior
attributes:
label: "Expected Behavior"
placeholder: "A description of what you expected to happen"
validations:
required: true

- type: markdown
attributes:
value: "### Platform/Desktop"

- type: dropdown
id: platform-os
attributes:
label: "Platform/Desktop"
options:
- "Windows"
- "Linux"
- "Mac"
validations:
required: true

- type: dropdown
id: platform-browser
attributes:
label: "Web Browser"
options:
- "Firefox"
- "Firefox Nightly"
- "Firefox Dev Edition"
- "Other Browser"
validations:
required: true

- type: input
id: other-browser
attributes:
label: "If `Other Browser` was selected, specify here:"
placeholder: "Example: Waterfox v123"
validations:
required: false

- type: dropdown
id: browser-updated
attributes:
label: "Is your browser updated to the latest version?"
options:
- "Yes"
- "No"
validations:
required: true

- type: textarea
id: picture-video
attributes:
label: "Picture/Video of the Issue"
description: "Screenshot(s) or video of the issue are preferred."
placeholder: "Drag & Drop | Copy & Paste | or Link to Picture & Video"
validations:
required: false
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/2-feature-suggestion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: 🆕 Features, Suggestions, & Request
description: Suggest feature's, improvements or modifications to the theme.
title: "[Feature Request] "
labels:
- "enhancement"
- "issue"
body:
- type: markdown
attributes:
value: |
## Before submitting, have you already looked through the [FF Ultima Wiki](https://github.com/soulhotel/FF-ULTIMA/wiki)?
- type: checkboxes
id: confirmation
attributes:
label: "Please confirm (not required):"
options:
- label: "I have already looked at the Wiki."
- label: "I would like to contribute to this development."

- type: textarea
id: issue-description
attributes:
label: "Describe the Feature | Suggestion | Modification:"
placeholder: "A detailed description of the Feature / Suggestion / Modification"
validations:
required: true

- type: textarea
id: picture-video
attributes:
label: "Picture/Video of the desired outcome (if applicable):"
placeholder: "Drag & Drop | Copy & Paste | or Link to Picture & Video"
validations:
required: false
29 changes: 0 additions & 29 deletions .github/ISSUE_TEMPLATE/bugs--errors--other-issues.md

This file was deleted.

15 changes: 13 additions & 2 deletions theme/all-global-positioning.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ Vertical Tabs Disabled - setting
/* Toolbar spacing -----------------------------------------------------------------------*/

/* overriding toolbar heights with their default values for easier modification */
#navigator-toolbox {height: var(--uc-topbars-combined-height) !important; z-index:999 !important;}
#main-window:not([chromehidden="menubar toolbar location directories status extrachrome "]) #navigator-toolbox
{height: var(--uc-topbars-combined-height) !important; z-index:999 !important;}
#toolbar-menubar {height: var(--uc-menubar-height) !important; z-index:998 !important;}
#nav-bar {min-height:var(--uc-navbar-height) !important; max-height: var(--uc-navbar-height) !important; z-index:997 !important;}
#nav-bar .toolbarbutton-1 {margin-top:2.5px !important;} /*align child buttons vertically*/
Expand All @@ -86,6 +87,16 @@ Vertical Tabs Disabled - setting
@media (-moz-bool-pref: "sidebar.verticalTabs") {--uc-tabbar-height: 0px !important;}
}

/* Notification Deck */
#tab-notification-deck {
position:absolute !important;
z-index:9000 !important;
top: var(--uc-topbars-combined-height) !important;
right:0 !important;
border-radius:10px !important;
}
.notificationbox-stack {border-bottom-left-radius:8px !important;border-bottom-left-radius:8px !important;}


/* Compact spacing -----------------------------------------------------------------------*/

Expand Down Expand Up @@ -756,4 +767,4 @@ Vertical Tabs Disabled - setting





2 changes: 1 addition & 1 deletion theme/nightly-override.css
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ box-shadow: none !important;}}

/* vt container tweaks */
#sidebar-main {
-moz-window-dragging: drag; /*allow dragging window via vt sb*/
@media not (-moz-platform: windows) {-moz-window-dragging: drag;} /*allow dragging window via vt sb*/
margin: var(--uc-tab-margins) !important;
& .tab-close-button, & #vertical-tabs-newtab-button, & #tabs-newtab-button {border-radius: 8px !important;}
& #tabs-newtab-button .toolbarbutton-text {margin-left:4px !important;font-style: italic;}
Expand Down

0 comments on commit a227ca3

Please sign in to comment.