Fix: FullScreen - MacOS Tab Min Height #1045

This commit is contained in:
alstjr7375 2025-01-13 02:04:28 +09:00
parent 36c05567b2
commit 87abdcd37a
3 changed files with 9 additions and 9 deletions

8
css/leptonChrome.css generated
View file

@ -314,8 +314,8 @@
}
/*= Windows - Classic Theme #734 =============================================*/
/*= MacOS Fullscreen clipping #1045 ==========================================*/
:root[sizemode="fullscreen"][macOSNativeFullscreen]:not([inDOMFullscreen="true"]) #navigator-toolbox {
border-top: 16px solid transparent;
:root[sizemode="fullscreen"][macOSNativeFullscreen]:not([inDOMFullscreen="true"]) #TabsToolbar {
min-height: var(--tab-min-height, fit-content) !important;
}
}
/*= Others - Compatibility ===================================================*/
@ -14390,8 +14390,8 @@
}
}
@media (-moz-bool-pref: "userChrome.compatibility.os") {
:root[sizemode="fullscreen"][macOSNativeFullscreen]:not([inDOMFullscreen="true"]) #navigator-toolbox {
border-top: 16px solid transparent;
:root[sizemode="fullscreen"][macOSNativeFullscreen]:not([inDOMFullscreen="true"]) #TabsToolbar {
min-height: var(--tab-min-height, fit-content) !important;
}
}
/*= Others - Compatibility ===================================================*/

View file

@ -495,8 +495,8 @@
}
}
/*= MacOS Fullscreen clipping #1045 ==========================================*/
:root[sizemode="fullscreen"][macOSNativeFullscreen]:not([inDOMFullscreen="true"]) #navigator-toolbox {
border-top: 16px solid transparent;
:root[sizemode="fullscreen"][macOSNativeFullscreen]:not([inDOMFullscreen="true"]) #TabsToolbar {
min-height: var(--tab-min-height, fit-content) !important;
}
}
/*= Others - Compatibility ===================================================*/

View file

@ -289,6 +289,6 @@ $_os_linuxDefaultShadow: 0 0 4px rgba(128, 128, 142, 0.5);
}
/*= MacOS Fullscreen clipping #1045 ==========================================*/
:root[sizemode="fullscreen"][macOSNativeFullscreen]:not([inDOMFullscreen="true"]) #navigator-toolbox {
border-top: 16px solid transparent;
}
:root[sizemode="fullscreen"][macOSNativeFullscreen]:not([inDOMFullscreen="true"]) #TabsToolbar {
min-height: var(--tab-min-height, fit-content) !important;
}