mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
26 lines
501 B
CSS
26 lines
501 B
CSS
.popup {
|
|
width: 288px;
|
|
height: 252px;
|
|
position: absolute;
|
|
box-sizing: border-box;
|
|
max-width: 50%;
|
|
max-height: 50%;
|
|
padding: 20px;
|
|
margin: 5px;
|
|
background-color: white;
|
|
overflow-x: auto;
|
|
overflow-y: auto;
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
border: 2px solid black;
|
|
}
|
|
|
|
.popup .content {
|
|
width: 100%;
|
|
max-height: 100%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.popup .content.with-ctrls {
|
|
max-height: calc(100% - 40px);
|
|
} |