Title: [162966] trunk/Source/WebInspectorUI
Revision
162966
Author
joep...@webkit.org
Date
2014-01-28 15:02:05 -0800 (Tue, 28 Jan 2014)

Log Message

Unreviewed follow-up to r162965. Better coding style.

Timothy Hatcher pointed out a clearer style for classes
on the <body> is to specify body.class. I agree.

* UserInterface/DashboardView.css:
(body._javascript_ .toolbar .dashboard):
(body.web .toolbar.collapsed .dashboard > .logs):
(body._javascript_ .toolbar .dashboard > .resourcesCount):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (162965 => 162966)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-01-28 22:47:03 UTC (rev 162965)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-01-28 23:02:05 UTC (rev 162966)
@@ -1,5 +1,17 @@
 2014-01-28  Joseph Pecoraro  <pecor...@apple.com>
 
+        Unreviewed follow-up to r162965. Better coding style.
+
+        Timothy Hatcher pointed out a clearer style for classes
+        on the <body> is to specify body.class. I agree.
+
+        * UserInterface/DashboardView.css:
+        (body._javascript_ .toolbar .dashboard):
+        (body.web .toolbar.collapsed .dashboard > .logs):
+        (body._javascript_ .toolbar .dashboard > .resourcesCount):
+
+2014-01-28  Joseph Pecoraro  <pecor...@apple.com>
+
         Web Inspector: Tweak UI when debugging a JSContext
         https://bugs.webkit.org/show_bug.cgi?id=127799
 

Modified: trunk/Source/WebInspectorUI/UserInterface/DashboardView.css (162965 => 162966)


--- trunk/Source/WebInspectorUI/UserInterface/DashboardView.css	2014-01-28 22:47:03 UTC (rev 162965)
+++ trunk/Source/WebInspectorUI/UserInterface/DashboardView.css	2014-01-28 23:02:05 UTC (rev 162966)
@@ -54,19 +54,19 @@
 }
 
 .toolbar.collapsed .dashboard,
-._javascript_ .toolbar .dashboard {
+body._javascript_ .toolbar .dashboard {
     width: 175px;
 }
 
-.web .toolbar.collapsed .dashboard > .time,
-.web .toolbar.collapsed .dashboard > .resourcesSize,
-.web .toolbar.collapsed .dashboard > .logs {
+body.web .toolbar.collapsed .dashboard > .time,
+body.web .toolbar.collapsed .dashboard > .resourcesSize,
+body.web .toolbar.collapsed .dashboard > .logs {
     display: none;
 }
 
-._javascript_ .toolbar .dashboard > .time,
-._javascript_ .toolbar .dashboard > .resourcesSize,
-._javascript_ .toolbar .dashboard > .resourcesCount {
+body._javascript_ .toolbar .dashboard > .time,
+body._javascript_ .toolbar .dashboard > .resourcesSize,
+body._javascript_ .toolbar .dashboard > .resourcesCount {
     display: none;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to