refactor(calc-02): simplify display and button styling

Remove layered shadows and pressed-state transforms from the calculator UI, and update the stack copy icon markup and active feedback to match the new flat design.
This commit is contained in:
2026-05-16 03:21:49 +02:00
parent 849170ea49
commit c09fdc7e0f
2 changed files with 35 additions and 19 deletions
+31 -15
View File
@@ -58,7 +58,7 @@ body {
padding: 8px;
border-radius: 8px;
background: var(--panel);
box-shadow: 0 26px 70px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
grid-template-columns: 1fr;
grid-template-rows: auto auto auto auto auto;
row-gap: 6px;
@@ -78,14 +78,14 @@ body {
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.06);
background: rgba(6, 10, 16, 0.16);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
box-shadow: none;
}
.display-buttons-panel {
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.06);
background: rgba(6, 10, 16, 0.16);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
box-shadow: none;
}
.display-block {
@@ -180,7 +180,7 @@ body {
.display-button {
background: linear-gradient(180deg, var(--btnTop), var(--btnBottom));
color: #eef2f7;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 3px 0 rgba(0, 0, 0, 0.28);
box-shadow: none;
}
@@ -213,7 +213,7 @@ body {
border-radius: 8px;
background: rgba(6, 10, 16, 0.16);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
box-shadow: none;
}
.mode-menu-item {
@@ -304,8 +304,8 @@ button {
color: var(--btnText);
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
cursor: pointer;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 3px 0 rgba(0, 0, 0, 0.28);
transition: transform 120ms ease, filter 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
box-shadow: none;
transition: filter 120ms ease, opacity 120ms ease;
line-height: 1;
}
@@ -315,14 +315,29 @@ button:hover {
button:active {
transform: translateY(2px);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1px 0 rgba(0, 0, 0, 0.25);
transform: none;
box-shadow: none;
}
.stack-copy-button:active {
animation: stack-copy-flash 140ms ease-out;
}
@keyframes stack-copy-flash {
0% {
opacity: 0.7;
}
50% {
opacity: 1;
}
100% {
opacity: 0.7;
}
}
.stack-copy-button {
padding: 4px;
border-radius: 999px;
min-width: 24px;
width: 24px;
height: 24px;
@@ -330,8 +345,9 @@ button:active {
place-items: center;
opacity: 0;
pointer-events: none;
transform: scale(0.9);
transform: scale(1);
background: transparent;
border: none;
box-shadow: none;
color: rgba(31, 42, 18, 0.58);
margin-left: 0;
@@ -342,9 +358,9 @@ button:active {
}
.stack-copy-button svg {
width: 13px;
height: 13px;
fill: currentColor;
width: 15px;
height: 15px;
fill: #0a0a0a;
display: block;
}
@@ -361,7 +377,7 @@ button:active {
}
.stack-copy-button:active {
transform: translateY(2px) scale(1);
transform: scale(1);
color: rgba(31, 42, 18, 0.95);
}