Skip to content

Commit b7e34f2

Browse files
committed
Update full.css
1 parent bf7ab28 commit b7e34f2

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

full.css

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1680,6 +1680,69 @@ body.mobile .menu .icon a {
16801680
}
16811681

16821682

1683+
.dialog {
1684+
position: fixed;
1685+
background: var(--deep-midnight-blue);
1686+
color: #dcddde;
1687+
box-shadow: 0 8px 16px rgb(0 0 0 / 24%);
1688+
border-radius: 11.5px;
1689+
line-height: 1.5;
1690+
max-width: 200px;
1691+
width: 194px;
1692+
z-index: 100000;
1693+
padding: 2px;
1694+
transform: translate(-50%, -50%) scale(0.94);
1695+
opacity: 0;
1696+
top: 50%;
1697+
left: calc((var(--sidebar-width) - 1px) / 2);
1698+
will-change: transform;
1699+
transition: 0s .18s, .18s var(--bounce-function) opacity;
1700+
opacity: 0;
1701+
}
1702+
1703+
.dialog.shown {
1704+
opacity: 1;
1705+
transform: translate(-50%, -50%) scale(1);
1706+
padding: 7px;
1707+
transition: .18s var(--bounce-function);
1708+
}
1709+
1710+
.dialog .title {
1711+
padding: 8px 14px;
1712+
}
1713+
1714+
.dialog .button-wrapper {
1715+
display: flex;
1716+
margin-top: 7px;
1717+
}
1718+
1719+
.dialog .button {
1720+
padding: 8px 14px;
1721+
border-radius: 5.75px;
1722+
display: flex;
1723+
align-items: center;
1724+
justify-content: center;
1725+
width: 50%;
1726+
}
1727+
1728+
.dialog .cancel {
1729+
color: hsl(228deg 16% 37%);
1730+
}
1731+
1732+
.dialog .confirm {
1733+
color: var(--rosemary-lighter);
1734+
font-weight: 500;
1735+
}
1736+
1737+
.dialog .button:active {
1738+
background: rgba(255,255,255,0.1);
1739+
}
1740+
1741+
body:not(.mobile) .dialog .button:not(:active):hover {
1742+
background: rgba(255,255,255,0.05);
1743+
}
1744+
1745+
16831746
.message-wrapper {
16841747
position: fixed;
16851748
left: 0;

0 commit comments

Comments
 (0)