forked from jsantell/firefox-patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1066472-fix-text-cursor-wae.patch
57 lines (48 loc) · 1.43 KB
/
1066472-fix-text-cursor-wae.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
From 77ff26c605414301d40146b681d6bbf7490dac30 Mon Sep 17 00:00:00 2001
From: Jordan Santell <[email protected]>
Date: Mon, 15 Sep 2014 10:41:51 -0700
Subject: Bug 1066472 - AudioParam connections in web audio editor should not appear clickable. r=vp
---
browser/themes/shared/devtools/webaudioeditor.inc.css | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/browser/themes/shared/devtools/webaudioeditor.inc.css b/browser/themes/shared/devtools/webaudioeditor.inc.css
index 95faced..9e33f2b 100644
--- a/browser/themes/shared/devtools/webaudioeditor.inc.css
+++ b/browser/themes/shared/devtools/webaudioeditor.inc.css
@@ -100,34 +100,38 @@ g.edgePath.param-connection {
.theme-dark .nodes g.selected rect {
fill: #1d4f73; /* Select Highlight Blue */
}
.theme-light .nodes g.selected rect {
fill: #4c9ed9; /* Select Highlight Blue */
}
-/* Text in nodes */
+/* Text in nodes and edges */
text {
- cursor: pointer;
+ cursor: default; /* override the "text" cursor */
font-weight: 300;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serf;
font-size: 14px;
}
.theme-dark text {
fill: #b6babf; /* Grey foreground text */
}
.theme-light text {
fill: #585959; /* Grey foreground text */
}
.theme-light g.selected text {
fill: #f0f1f2; /* Toolbars */
}
+.nodes text {
+ cursor: pointer;
+}
+
/**
* Inspector Styles
*/
#web-audio-inspector-title {
margin: 6px;
}
--
1.8.4.2