mirror of
https://github.com/nimbold/Firelink.git
synced 2026-08-30 04:19:28 +00:00
fix(settings): keep user agent menu above rows
This commit is contained in:
@@ -799,7 +799,7 @@ runEngineChecks(false);
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2 className="settings-section-title">Identity</h2>
|
<h2 className="settings-section-title">Identity</h2>
|
||||||
<div className="mac-settings-group">
|
<div className="mac-settings-group settings-popup-group">
|
||||||
<div className="mac-settings-row settings-network-row">
|
<div className="mac-settings-row settings-network-row">
|
||||||
<div className="settings-row-label">
|
<div className="settings-row-label">
|
||||||
<span>Custom User-Agent</span>
|
<span>Custom User-Agent</span>
|
||||||
|
|||||||
+17
-1
@@ -1189,6 +1189,12 @@ html[data-list-density="relaxed"] {
|
|||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.settings-popup-group {
|
||||||
|
position: relative;
|
||||||
|
z-index: 10;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
.mac-settings-row {
|
.mac-settings-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@@ -1243,12 +1249,22 @@ html[data-list-density="relaxed"] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.settings-network-row {
|
.settings-network-row {
|
||||||
|
position: relative;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
|
grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
|
||||||
gap: 18px;
|
gap: 18px;
|
||||||
align-items: start;
|
align-items: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.settings-popup-group .settings-network-row:focus-within {
|
||||||
|
z-index: 20;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-popup-group .settings-group-footer {
|
||||||
|
position: relative;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.settings-network-row > .settings-row-label {
|
.settings-network-row > .settings-row-label {
|
||||||
padding-top: 3px;
|
padding-top: 3px;
|
||||||
}
|
}
|
||||||
@@ -1272,7 +1288,7 @@ html[data-list-density="relaxed"] {
|
|||||||
|
|
||||||
.settings-combobox-menu {
|
.settings-combobox-menu {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 50;
|
z-index: 100;
|
||||||
top: calc(100% + 6px);
|
top: calc(100% + 6px);
|
||||||
right: 0;
|
right: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user