Title: [131342] trunk/Source/WebCore
Revision
131342
Author
commit-qu...@webkit.org
Date
2012-10-15 13:03:37 -0700 (Mon, 15 Oct 2012)

Log Message

Web Inspector: Hide useless controls in remote-debugging mode.
https://bugs.webkit.org/show_bug.cgi?id=99300

Patch by Eugene Klyuchnikov <eustas....@gmail.com> on 2012-10-15
Reviewed by Vsevolod Vlasov.

"Close inspector" and "change docking mode" buttons seem to be rather
useless in remote debugging mode.

* inspector/front-end/inspector.css:
(body.remote .toolbar-item.close-left, body.remote .toolbar-item.close-right):
(body.remote .dock-status-bar-item):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (131341 => 131342)


--- trunk/Source/WebCore/ChangeLog	2012-10-15 20:03:10 UTC (rev 131341)
+++ trunk/Source/WebCore/ChangeLog	2012-10-15 20:03:37 UTC (rev 131342)
@@ -1,3 +1,17 @@
+2012-10-15  Eugene Klyuchnikov  <eustas....@gmail.com>
+
+        Web Inspector: Hide useless controls in remote-debugging mode.
+        https://bugs.webkit.org/show_bug.cgi?id=99300
+
+        Reviewed by Vsevolod Vlasov.
+
+        "Close inspector" and "change docking mode" buttons seem to be rather
+        useless in remote debugging mode.
+
+        * inspector/front-end/inspector.css:
+        (body.remote .toolbar-item.close-left, body.remote .toolbar-item.close-right):
+        (body.remote .dock-status-bar-item):
+
 2012-10-15  Christophe Dumez  <christophe.du...@intel.com>
 
         [EFL][WK2] Implement Favicons API

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


--- trunk/Source/WebCore/inspector/front-end/inspector.css	2012-10-15 20:03:10 UTC (rev 131341)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css	2012-10-15 20:03:37 UTC (rev 131342)
@@ -481,6 +481,10 @@
     display: none;
 }
 
+body.remote .toolbar-item.close-left, body.remote .toolbar-item.close-right {
+    display: none;
+}
+
 body:not(.platform-mac) .toolbar-item.close-left {
     display: none;
 }
@@ -751,8 +755,9 @@
     -webkit-mask-position: -160px -24px;
 }
 
-body.port-qt #dock-status-bar-item {
-    display: none
+body.remote .dock-status-bar-item,
+body.port-qt .dock-status-bar-item {
+    display: none;
 }
 
 .console-status-bar-item .glyph {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to