Skip to content

Commit

Permalink
style: format code with Prettier (#17)
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in f6a4d85 according to the output
from Prettier.

Details: None

Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
  • Loading branch information
deepsource-autofix[bot] authored Feb 14, 2024
1 parent f6a4d85 commit 68fb33a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions chrome/bar/toolbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,18 @@ toolbarbutton[open="true"] {
#PersonalToolbar {
opacity: 0;
visibility: collapse;
transition: opacity 0.4s ease-in-out, visibility 0s linear 0.3s;
transition:
opacity 0.4s ease-in-out,
visibility 0s linear 0.3s;
}

/* Show bookmarks toolbar when toolbar is hovered */
#navigator-toolbox:hover > #PersonalToolbar {
opacity: 1;
visibility: visible;
transition: opacity 0.4s ease-in-out, visibility 0s linear 0.3s;
transition:
opacity 0.4s ease-in-out,
visibility 0s linear 0.3s;
}

/* Remove maximum/minimum width restriction of sidebar */
Expand Down
2 changes: 1 addition & 1 deletion chrome/userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
@import "menu/mainmenu.css";
@import "menu/extensions-menu.css";
@import "browser/navigation.css";
@import "misc/round-items.css";
@import "misc/round-items.css";

0 comments on commit 68fb33a

Please sign in to comment.