mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-02-06 15:30:46 -08:00
Clean: SASS - Warning
This commit is contained in:
parent
26e0f1e24b
commit
0f01c5d42d
5 changed files with 22 additions and 3 deletions
|
|
@ -4498,6 +4498,9 @@
|
|||
height: var(--uc-titlebar-buttonbox-height, var(--uc-navbar-height, 36px));
|
||||
}
|
||||
@media (-moz-os-version: windows-win10), (-moz-platform: windows-win10) {
|
||||
#toolbar-menubar[autohide="true"][inactive="true"] > .titlebar-buttonbox-container .titlebar-button {
|
||||
stroke: var(--toolbar-color, currentColor) !important;
|
||||
}
|
||||
}
|
||||
.titlebar-buttonbox-container > .titlebar-buttonbox {
|
||||
height: 100%;
|
||||
|
|
@ -4649,6 +4652,9 @@
|
|||
height: var(--uc-titlebar-buttonbox-height, var(--uc-navbar-height, 36px));
|
||||
}
|
||||
@media (-moz-os-version: windows-win10), (-moz-platform: windows-win10) {
|
||||
#toolbar-menubar[autohide="true"][inactive="true"] > .titlebar-buttonbox-container .titlebar-button {
|
||||
stroke: var(--toolbar-color, currentColor) !important;
|
||||
}
|
||||
}
|
||||
.titlebar-buttonbox-container > .titlebar-buttonbox {
|
||||
height: 100%;
|
||||
|
|
@ -4797,6 +4803,9 @@
|
|||
height: var(--uc-titlebar-buttonbox-height, var(--uc-navbar-height, 36px));
|
||||
}
|
||||
@media (-moz-os-version: windows-win10), (-moz-platform: windows-win10) {
|
||||
#toolbar-menubar[autohide="true"][inactive="true"] > .titlebar-buttonbox-container .titlebar-button {
|
||||
stroke: var(--toolbar-color, currentColor) !important;
|
||||
}
|
||||
}
|
||||
.titlebar-buttonbox-container > .titlebar-buttonbox {
|
||||
height: 100%;
|
||||
|
|
@ -4948,6 +4957,9 @@
|
|||
height: var(--uc-titlebar-buttonbox-height, var(--uc-navbar-height, 36px));
|
||||
}
|
||||
@media (-moz-os-version: windows-win10), (-moz-platform: windows-win10) {
|
||||
#toolbar-menubar[autohide="true"][inactive="true"] > .titlebar-buttonbox-container .titlebar-button {
|
||||
stroke: var(--toolbar-color, currentColor) !important;
|
||||
}
|
||||
}
|
||||
.titlebar-buttonbox-container > .titlebar-buttonbox {
|
||||
height: 100%;
|
||||
|
|
@ -5106,6 +5118,9 @@
|
|||
height: var(--uc-titlebar-buttonbox-height, var(--uc-navbar-height, 36px));
|
||||
}
|
||||
@media (-moz-os-version: windows-win10), (-moz-platform: windows-win10) {
|
||||
#toolbar-menubar[autohide="true"][inactive="true"] > .titlebar-buttonbox-container .titlebar-button {
|
||||
stroke: var(--toolbar-color, currentColor) !important;
|
||||
}
|
||||
}
|
||||
.titlebar-buttonbox-container > .titlebar-buttonbox {
|
||||
height: 100%;
|
||||
|
|
@ -5254,6 +5269,9 @@
|
|||
height: var(--uc-titlebar-buttonbox-height, var(--uc-navbar-height, 36px));
|
||||
}
|
||||
@media (-moz-os-version: windows-win10), (-moz-platform: windows-win10) {
|
||||
#toolbar-menubar[autohide="true"][inactive="true"] > .titlebar-buttonbox-container .titlebar-button {
|
||||
stroke: var(--toolbar-color, currentColor) !important;
|
||||
}
|
||||
}
|
||||
.titlebar-buttonbox-container > .titlebar-buttonbox {
|
||||
height: 100%;
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
@use "utils/has" as *;
|
||||
@use "utils/proton_elements" as Proton;
|
||||
@use "sass:selector";
|
||||
@use "sass:math";
|
||||
|
||||
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
||||
@namespace html "http://www.w3.org/1999/xhtml";
|
||||
|
|
|
|||
|
|
@ -135,7 +135,7 @@
|
|||
--tab-border-radius: 0px;
|
||||
width: unset !important;
|
||||
padding-inline: 0px !important;
|
||||
margin-inline: calc(var(--uc-tab-corner-half-height) - #{( 15.5px / 2 )}) !important;
|
||||
margin-inline: calc(var(--uc-tab-corner-half-height) - #{math.div(15.5px, 2)}) !important;
|
||||
|
||||
background-color: transparent !important;
|
||||
// background-size: calc((var(--toolbarbutton-inner-padding) * 2 + 16px) - var(--uc-tab-corner-size)) 100%;
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ See the above repository for updates as well as full license text. */
|
|||
}
|
||||
|
||||
@include OS($win10) {
|
||||
&[inactive="true"] > > .titlebar-buttonbox-container .titlebar-button {
|
||||
&[inactive="true"] > .titlebar-buttonbox-container .titlebar-button {
|
||||
stroke: var(--toolbar-color, currentColor) !important;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@
|
|||
--uc-window-control-width: 138px;
|
||||
}
|
||||
@include OS($linux) {
|
||||
$linuxWindowControlWidth: 84px / 3; /* 84px is default value of linux */
|
||||
$linuxWindowControlWidth: math.div(84px, 3); /* 84px is default value of linux */
|
||||
|
||||
@media (-moz-gtk-csd-minimize-button),
|
||||
(-moz-gtk-csd-maximize-button),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue