From bb886868d2f5254ab2a7f45237898d85f253f951 Mon Sep 17 00:00:00 2001 From: tomasz1986 Date: Sun, 14 Mar 2021 16:14:19 +0900 Subject: [PATCH] gui: Use grey background for disabled options in form-control (#7468) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disabled options are currently barely distinguishable from enabled ones. This changes their background to grey, following the Bootstrap defaults already used for disabled . */ +.form-control option[disabled] { + background-color: #eeeeee; + opacity: 1; +}