Skip to content

Commit

Permalink
Fix bug 666734 - making the background color always be white
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Jun 24, 2011
1 parent 1c4a736 commit d001a6f
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions mozilla/patches/bug656666-hudservice.patch
Original file line number Diff line number Diff line change
Expand Up @@ -822,21 +822,15 @@ diff --git a/toolkit/themes/pinstripe/global/webConsole.css b/toolkit/themes/pin

.jsterm-output-line {
font-size: 1em;
@@ -399,3 +406,44 @@
@@ -399,3 +406,38 @@
width: 100%;
background-color: white;
}
+
+.jsterm-stack-node.gcliVALID {
+ background-color: #FFF;
+}
+
+.jsterm-stack-node.gcliINCOMPLETE {
+ background-color: #DDD;
+}
+
+.jsterm-stack-node.gcliVALID,
+.jsterm-stack-node.gcliINCOMPLETE,
+.jsterm-stack-node.gcliERROR {
+ background-color: #DDD;
+ background-color: #FFF;
+}
+
+.jsterm-complete-node span {
Expand Down

2 comments on commit d001a6f

@joewalker
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happens if we just remove all the background colors for .jsterm-stack-node.gcliI[VALID|NCOMPLETE|ERROR]?

@fitzgen
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are right, we don't need it and can get away without it. I have updated this branch with this commit: 79384c9

Please sign in to comment.