From 04cf4ec8d58f3f0802973d1527f173b3926b62d0 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Fri, 29 Jan 2021 19:10:57 -0500 Subject: Settings and welcome page improvements (#1326) * Update wording to be less repetitive * Remove the shadow theme option from the welcome page, to avoid confusion * Update input sizes * Update select text to not clip the triangle icon * Update wording * Update descriptions * Remove "popup" to not exclude the search page --- ext/bg/css/settings2.css | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'ext/bg/css') diff --git a/ext/bg/css/settings2.css b/ext/bg/css/settings2.css index 4a465a2c..46e859c1 100644 --- a/ext/bg/css/settings2.css +++ b/ext/bg/css/settings2.css @@ -45,9 +45,8 @@ --line-height-default: calc(20 / var(--font-size-no-units)); --outline-item-height: 40px; --outline-item-icon-size: 32px; - --input-short: 80px; - --input-height-short: 24px; - --input-half-width: calc(var(--input-width-large) / 2 - var(--padding) / 2); + --input-short-width: calc(var(--input-width-large) / 2 - var(--padding) / 2); + --input-short-height: 24px; --fab-button-size: 56px; --fab-button-padding: 16px; --modal-width: 600px; @@ -648,19 +647,14 @@ a.settings-item.settings-item-button { input[type=text].short-width, input[type=number].short-width, select.short-width { - width: var(--input-short); -} -input[type=text].half-width, -input[type=number].half-width, -select.short-width { - width: var(--input-half-width); + width: var(--input-short-width); } input[type=text].short-height, input[type=number].short-height, select.short-height { - height: var(--input-height-short); - margin-top: calc(var(--settings-group-right-max-height) - var(--input-height-short) - var(--font-size-small)); - line-height: var(--input-height-short); + height: var(--input-short-height); + margin-top: calc(var(--settings-group-right-max-height) - var(--input-short-height) - var(--font-size-small)); + line-height: var(--input-short-height); } .settings-item-button-group-container { max-height: none; -- cgit v1.2.3