From ace44af815f973c1343093375e20321fa4603307 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Mon, 21 Jan 2019 21:34:27 +0100 Subject: [PATCH] theme: Reduce minimum OSK key width/height The OSK panel uses 1/3rd of the monitor height, plus we specify a minimum size for the keys. This doesn't play along if contents won't fit (short monitor, big fonts, ...) pushing contents offscreen. Reduce the minimum size a bit so there's better chances to fit. Closes: https://gitlab.gnome.org/GNOME/gnome-shell/issues/675 --- data/theme/gnome-shell-sass/_common.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/theme/gnome-shell-sass/_common.scss b/data/theme/gnome-shell-sass/_common.scss index 1c4f85f89..dc72a4925 100644 --- a/data/theme/gnome-shell-sass/_common.scss +++ b/data/theme/gnome-shell-sass/_common.scss @@ -1644,8 +1644,8 @@ StScrollBar { .keyboard-key { background-color: #393f3f; - min-height: 2em; - min-width: 2em; + min-height: 1.2em; + min-width: 1.2em; font-size: 16pt; border-radius: 3px; border: 1px solid #464d4d;