Fix layout: checkbox-row full-width in grid, shared-input overflow fix
- checkbox-row now spans full grid width (grid-column: 1 / -1) - Fixed shared link input: min-width:0, overflow:hidden, text-overflow:ellipsis - Made '(sends the plan as-is)' a muted inline span instead of all-caps label text - Removed unnecessary margin-bottom on checkbox-row
This commit is contained in:
+7
-2
@@ -173,7 +173,8 @@
|
|||||||
border: 1px solid var(--border);
|
border: 1px solid var(--border);
|
||||||
border-radius: var(--radius-sm);
|
border-radius: var(--radius-sm);
|
||||||
padding: 10px 14px;
|
padding: 10px 14px;
|
||||||
margin-bottom: 18px;
|
margin-bottom: 0;
|
||||||
|
grid-column: 1 / -1;
|
||||||
}
|
}
|
||||||
.tg-link {
|
.tg-link {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
@@ -378,6 +379,7 @@
|
|||||||
}
|
}
|
||||||
.shared-link-row input {
|
.shared-link-row input {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
font-size: 0.78rem;
|
font-size: 0.78rem;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
@@ -386,6 +388,9 @@
|
|||||||
border-radius: var(--radius-sm);
|
border-radius: var(--radius-sm);
|
||||||
padding: 7px 10px;
|
padding: 7px 10px;
|
||||||
outline: none;
|
outline: none;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
.copy-sm-btn {
|
.copy-sm-btn {
|
||||||
background: var(--accent);
|
background: var(--accent);
|
||||||
@@ -517,7 +522,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="control-group" style="grid-column: 1 / -1;">
|
<div class="control-group" style="grid-column: 1 / -1;">
|
||||||
<label>Share this link (sends the plan as-is)</label>
|
<label>Share this link <span style="font-weight:400;color:var(--text-muted);text-transform:none;letter-spacing:0;font-size:0.68rem;">(sends the plan as-is)</span></label>
|
||||||
<div class="shared-link-row">
|
<div class="shared-link-row">
|
||||||
<input type="text" id="sharedLink" readonly>
|
<input type="text" id="sharedLink" readonly>
|
||||||
<button class="copy-sm-btn" id="copyLinkBtn" onclick="copySharedLink()">📄 Copy</button>
|
<button class="copy-sm-btn" id="copyLinkBtn" onclick="copySharedLink()">📄 Copy</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user