From 3185d9342bbab7db4d63bfd40962d9aa602c53dc Mon Sep 17 00:00:00 2001 From: Jordan Santell Date: Tue, 19 May 2015 12:02:00 -0700 Subject: [PATCH] Bug 11663354 - A locked recording button should appear disabled in the performance tool. r=vp --- browser/themes/shared/devtools/performance.inc.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/browser/themes/shared/devtools/performance.inc.css b/browser/themes/shared/devtools/performance.inc.css index 5e6e4cbb6a3..fd445206914 100644 --- a/browser/themes/shared/devtools/performance.inc.css +++ b/browser/themes/shared/devtools/performance.inc.css @@ -112,6 +112,11 @@ background: var(--theme-selection-background); } +.record-button[locked] { + pointer-events: none; + opacity: 0.5; +} + #performance-view .realtime-disabled-message, #performance-view .realtime-disabled-on-e10s-message { display: none; @@ -158,10 +163,6 @@ list-style-image: url(profiler-stopwatch-checked.svg); } -#main-record-button[locked] { - pointer-events: none; -} - #main-record-button .button-icon { margin: 0; }