From ff6c3041c248cbada40d1fe52aba77014adcf84e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Laxstr=C3=B6m?= Date: Tue, 18 Feb 2014 21:36:13 +0000 Subject: [PATCH] Wrong border color for caret After seeing this wrong color dozens of times while testing svg icons on high zooms, I can't stand the slightly different color of the border for the caret from the rest of the ULS dialog. The border of ULS is transparent with 0.2 alpha component over the background, in this case I just hardcoded the resulting color here to match. Change-Id: Ib2b2801f51ea02d2788d8703e3410eca9b3a57a3 --- resources/css/ext.uls.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/css/ext.uls.css b/resources/css/ext.uls.css index bb7c1a07..e02dcf54 100644 --- a/resources/css/ext.uls.css +++ b/resources/css/ext.uls.css @@ -4,7 +4,7 @@ .uls-menu.callout .caret-before { border-top: 20px solid transparent; - border-right: 20px solid #AAA; + border-right: 20px solid #C9C9C9; border-bottom: 20px solid transparent; display: inline-block; left: -21px;