Title: [141613] trunk/Source/WebCore
Revision
141613
Author
pfeld...@chromium.org
Date
2013-02-01 11:07:46 -0800 (Fri, 01 Feb 2013)

Log Message

Web Inspector: make console object state hint non-active
https://bugs.webkit.org/show_bug.cgi?id=108642

Reviewed by Vsevolod Vlasov.

Otherwise it seems like an active element user could click.

* inspector/front-end/inspector.css:
(.object-info-state-note):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (141612 => 141613)


--- trunk/Source/WebCore/ChangeLog	2013-02-01 19:04:43 UTC (rev 141612)
+++ trunk/Source/WebCore/ChangeLog	2013-02-01 19:07:46 UTC (rev 141613)
@@ -1,3 +1,15 @@
+2013-02-01  Pavel Feldman  <pfeld...@chromium.org>
+
+        Web Inspector: make console object state hint non-active
+        https://bugs.webkit.org/show_bug.cgi?id=108642
+
+        Reviewed by Vsevolod Vlasov.
+
+        Otherwise it seems like an active element user could click.
+
+        * inspector/front-end/inspector.css:
+        (.object-info-state-note):
+
 2013-02-01  Rashmi Shyamasundar  <rashmi...@samsung.com>
 
         Zero size gradient should paint nothing on canvas

Modified: trunk/Source/WebCore/inspector/front-end/inspector.css (141612 => 141613)


--- trunk/Source/WebCore/inspector/front-end/inspector.css	2013-02-01 19:04:43 UTC (rev 141612)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css	2013-02-01 19:07:46 UTC (rev 141613)
@@ -1214,24 +1214,21 @@
 
 .object-info-state-note {
     display: none;
-    width: 12px;
-    height: 12px;
+    width: 11px;
+    height: 11px;
     background-color: rgb(179, 203, 247);
     color: white;
     text-align: center;
-    border-radius: 5px;
+    border-radius: 3px;
     line-height: 13px;
-    margin: 0 8px;
+    margin: 0 6px;
+    font-size: 9px;
 }
 
 .object-info-state-note::before {
     content: "i";
 }
 
-.object-info-state-note:hover {
-    background-color: rgb(52, 115, 231);
-}
-
 .section.expanded .object-info-state-note {
     display: inline-block;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to