From 183dd63021e6ee0acb2c9a86bfab7b7e647e0ff5 Mon Sep 17 00:00:00 2001 From: Gazook89 Date: Mon, 21 Oct 2024 21:19:49 -0500 Subject: [PATCH] style change on page text input Reduce the visual prominence of the page input by using a darker background and a text color that matches the rest of the toolbar icons. Darker background still indicates this is an interactive item (is an input), hopefully. --- client/homebrew/brewRenderer/toolBar/toolBar.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/homebrew/brewRenderer/toolBar/toolBar.less b/client/homebrew/brewRenderer/toolBar/toolBar.less index 4a72ab82c..4cc125aad 100644 --- a/client/homebrew/brewRenderer/toolBar/toolBar.less +++ b/client/homebrew/brewRenderer/toolBar/toolBar.less @@ -39,9 +39,9 @@ height : 1.5em; padding : 2px 5px; font-family : 'Open Sans', sans-serif; - color : #000000; - background : #EEEEEE; - border : 1px solid gray; + color : inherit; + background : #3B3B3B; + border : none; &:focus { outline : 1px solid #D3D3D3; } // `.range-input` if generic to all range inputs, or `#zoom-slider` if only for zoom slider @@ -76,7 +76,7 @@ // `.text-input` if generic to all range inputs, or `#page-input` if only for current page input &#page-input { - width : 8ch; + width : 10ch; margin-right : 1ch; text-align : center; }