Skip to content

Commit

Permalink
feat: same polishments on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
christorange committed Jan 30, 2024
1 parent 3e4ef79 commit 3588062
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 6 deletions.
10 changes: 9 additions & 1 deletion mac/userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,22 @@

/* Track protection icon */
#tracking-protection-icon-container{
border-radius: 16px !important;;
border-radius: 16px !important;
}

#tracking-protection-icon-container:hover{
cursor: pointer !important;
}

/* Star button */
#star-button-box{
border-radius: 16px !important;
}

#star-button-box:hover{
cursor: pointer !important;
}

/* | Borders | */

.tabbrowser-tab::after {
Expand Down
48 changes: 43 additions & 5 deletions windows/userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
--button-bgcolor: rgba(117, 117, 117, 0.9) !important;
--toolbarbutton-icon-fill-opacity: 0.8 !important;
--arrowpanel-border-color: rgb(55, 55, 55) !important;
--identity-btn-hover-color: rgba(117,117,117) !important;

--dark-menu-background-color: rgba(34, 34, 36, .5) !important;
--dark-menu-border-color: rgb(55, 55, 55) !important;
Expand All @@ -38,17 +39,20 @@

--arrowpanel-background: #e2e8f0 !important;
--button-hover-bgcolor: #9699a3 !important;
--button-hover-bgcolor: #cbd5e1 !important;
--button-active-bgcolor: #cbd5e1 !important;
--identity-btn-hover-color: white !important;
}
}

/* Suppress Connecting/Waiting/Reading/Transerring */
#statuspanel[type="status"] {
/* #statuspanel[type="status"] {
display: none !important;
}
} */
/* Suppress Link Destination Overlay */
#statuspanel[type="overLink"] {
/* #statuspanel[type="overLink"] {
display: none !important;
}
} */

/* URL BAR */
#urlbar {
Expand Down Expand Up @@ -113,6 +117,37 @@
transition: none !important;
}

/* Idendity icon button */
#identity-icon-box.identity-box-button{
margin: 3px 0 3px 3px;
border-radius: 14px !important;
background-color: var(--bg) !important;
opacity: 0.8
}

#identity-icon-box.identity-box-button:hover{
cursor: pointer;
background-color: var(--identity-btn-hover-color) !important;
}

/* Track protection icon */
#tracking-protection-icon-container{
border-radius: 16px !important;
}

#tracking-protection-icon-container:hover{
cursor: pointer !important;
}

/* Star button */
#star-button-box{
border-radius: 16px !important;
}

#star-button-box{
cursor: pointer !important;
}

/* | Borders | */

.tabbrowser-tab::after {
Expand Down Expand Up @@ -168,8 +203,11 @@
#navigator-toolbox {
border-color:var(--bg) !important;
}

/* Navigation bar Buttons */
:root,toolbar{ --toolbarbutton-hover-background: rgba(255,255,255,.11) !important; }
toolbarbutton:hover{
cursor: pointer;
}

/* Show Tab close button on hover */
.tabbrowser-tab:not([pinned]) .tab-close-button {
Expand Down

0 comments on commit 3588062

Please sign in to comment.