summaryrefslogtreecommitdiff
path: root/ext/bg/css
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-01-29 19:10:57 -0500
committerGitHub <noreply@github.com>2021-01-29 19:10:57 -0500
commit04cf4ec8d58f3f0802973d1527f173b3926b62d0 (patch)
treed488443d62d9e0a16bd7565fcac7db7356154b29 /ext/bg/css
parentc7c5bab1a986c2babe40c3b41267ce4303b41499 (diff)
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
Diffstat (limited to 'ext/bg/css')
-rw-r--r--ext/bg/css/settings2.css18
1 files changed, 6 insertions, 12 deletions
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;