mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-15 01:59:57 +00:00
* Prevent two-up being lost under options. Fixes #241. * Working around some glitching when page was scrolled. * Prevent software keyboard popping up again in Android Chrome.
59 lines
1.0 KiB
SCSS
59 lines
1.0 KiB
SCSS
$horizontalPadding: 15px;
|
|
|
|
.options-title {
|
|
background: rgba(0, 0, 0, 0.9);
|
|
margin: 0;
|
|
padding: 10px $horizontalPadding;
|
|
font-weight: normal;
|
|
font-size: 1.4rem;
|
|
border-bottom: 1px solid #000;
|
|
}
|
|
|
|
.option-text-first {
|
|
display: grid;
|
|
align-items: center;
|
|
grid-template-columns: 87px 1fr;
|
|
grid-gap: 0.7em;
|
|
padding: 10px $horizontalPadding;
|
|
}
|
|
|
|
.option-one-cell {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
padding: 10px $horizontalPadding;
|
|
}
|
|
|
|
.option-input-first,
|
|
.section-enabler {
|
|
cursor: pointer;
|
|
display: grid;
|
|
align-items: center;
|
|
grid-template-columns: auto 1fr;
|
|
grid-gap: 0.7em;
|
|
padding: 10px $horizontalPadding;
|
|
}
|
|
|
|
.section-enabler {
|
|
background: rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
.options-section {
|
|
background: rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
.text-field {
|
|
background: #fff;
|
|
font: inherit;
|
|
border: none;
|
|
padding: 2px 0 2px 10px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.options-scroller {
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|