stable
This commit is contained in:
parent
71009c551f
commit
80aae72feb
10 changed files with 830 additions and 5041 deletions
54
styles.css
54
styles.css
|
|
@ -995,8 +995,8 @@ body, button, input, select, textarea {
|
|||
text-transform: uppercase;
|
||||
}
|
||||
.reportDialog {
|
||||
position: absolute;
|
||||
z-index: 20;
|
||||
position: fixed;
|
||||
z-index: 9998;
|
||||
inset: 0;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
|
|
@ -1052,8 +1052,9 @@ body, button, input, select, textarea { font-size: 15px; }
|
|||
.authorCard { min-width: 210px; }
|
||||
.authorCard small { display:block; margin-top:6px; font-size:12px; line-height:1.35; opacity:.82; }
|
||||
.miniButton { margin-top:6px; padding:6px 8px; border:2px solid #243044; background:#fff3d9; box-shadow:2px 2px 0 rgba(36,48,68,.22); cursor:pointer; font-size:12px; }
|
||||
.placementPreviewBar { position:fixed; left:50%; bottom:22px; transform:translateX(-50%); z-index:35; display:flex; align-items:center; gap:10px; max-width:min(760px, calc(100vw - 24px)); padding:12px 14px; border:3px solid #243044; background:#fff7de; box-shadow:5px 5px 0 rgba(36,48,68,.25); font-size:15px; }
|
||||
.placementPreviewBar[hidden] { display:none; }
|
||||
.homeLink { position:fixed; left:12px; top:12px; z-index:6; display:inline-flex; align-items:center; gap:6px; padding:7px 9px; border:2px solid #243044; background:rgba(255,247,222,.92); box-shadow:3px 3px 0 rgba(36,48,68,.22); color:#243044; text-decoration:none; font-weight:800; letter-spacing:.02em; }
|
||||
.homeLinkIcon { display:grid; place-items:center; width:22px; height:22px; border:2px solid currentColor; background:#fffdf5; line-height:1; }
|
||||
.homeLinkText { font-size:13px; }
|
||||
.likedCodex { margin:8px 0 14px; padding:10px; border:2px dashed rgba(36,48,68,.35); background:rgba(255,255,255,.45); font-size:14px; }
|
||||
.likedCodexTitle { font-weight:700; margin-bottom:6px; }
|
||||
.likedCodexList { display:flex; gap:8px; flex-wrap:wrap; }
|
||||
|
|
@ -1213,6 +1214,25 @@ body, button, input, select, textarea { font-size: 15px; }
|
|||
box-shadow: none !important;
|
||||
}
|
||||
.clockCard.utilityControl { display: none !important; }
|
||||
.accountSettingsCard .accountCard.utilityControl {
|
||||
max-width: none !important;
|
||||
width: 100% !important;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
background: #fffdf5 !important;
|
||||
}
|
||||
.accountSettingsCard .accountFields {
|
||||
grid-template-columns: minmax(90px, 1fr) minmax(120px, 1.2fr) minmax(120px, 1.2fr);
|
||||
flex: 1 1 360px;
|
||||
}
|
||||
.accountSettingsCard .accountCard small {
|
||||
max-width: none !important;
|
||||
flex-basis: 100%;
|
||||
}
|
||||
@media (max-width: 560px) {
|
||||
.accountSettingsCard .accountFields { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
.editorToolRow { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
|
||||
.editorHistoryRow { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
|
||||
.studioDrawer.advancedTools .editorToolRow { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
|
||||
|
|
@ -1266,7 +1286,6 @@ body, button, input, select, textarea { font-size: 15px; }
|
|||
font-size: 11px;
|
||||
}
|
||||
.finishActions { grid-template-columns: 1.4fr 1fr !important; }
|
||||
.placementPreviewBar span::after { content: " Left-click chooses a tile; right-click cancels selection."; }
|
||||
@media (max-width: 980px) {
|
||||
.islandTopBar { width: calc(100vw - 16px) !important; flex-wrap: wrap; justify-content: center; }
|
||||
.accountCard.utilityControl { order: 3; max-width: 100% !important; }
|
||||
|
|
@ -1462,7 +1481,7 @@ body, button, input, select, textarea { font-size: 15px; }
|
|||
width: 4px;
|
||||
height: 28px;
|
||||
transform-origin: 50% 100%;
|
||||
transform: translate(-50%, -100%) rotate(var(--clock-rotate));
|
||||
transform: translate(-50%, -100%) rotate(var(--clock-rotate, 0deg));
|
||||
background: #243044;
|
||||
border-radius: 6px 6px 2px 2px;
|
||||
box-shadow: 1px 0 0 rgba(255,255,255,.45);
|
||||
|
|
@ -2895,3 +2914,26 @@ body, button, input, select, textarea { font-size: 15px; }
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* v3 placement confirmation: explicit button, never the old bottom preview bar. */
|
||||
.placeHereButton {
|
||||
position: fixed;
|
||||
z-index: 92;
|
||||
transform: translate(-50%, -100%);
|
||||
padding: 9px 12px !important;
|
||||
border: 3px solid var(--line) !important;
|
||||
border-radius: 13px !important;
|
||||
background: #fff2a8 !important;
|
||||
color: #243044 !important;
|
||||
box-shadow: 0 6px 0 rgba(36,48,68,.22), 0 10px 18px rgba(22,31,46,.18) !important;
|
||||
font-size: 13px !important;
|
||||
font-weight: 900 !important;
|
||||
letter-spacing: .04em;
|
||||
cursor: pointer;
|
||||
}
|
||||
.placeHereButton[hidden] { display: none !important; }
|
||||
#confirmDialog.reportDialog { position: fixed !important; z-index: 10000 !important; }
|
||||
.reportDialog { z-index: 9998; }
|
||||
.assetStatus.validating { background: #fff2a8; }
|
||||
.assetStatus.failed { background: #ffe2e2; color: #8b2424; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue