Title: [98640] trunk/Source/WebCore
Revision
98640
Author
[email protected]
Date
2011-10-27 14:42:48 -0700 (Thu, 27 Oct 2011)

Log Message

Web Inspector: Advanced search style fixes.
https://bugs.webkit.org/show_bug.cgi?id=71036

Reviewed by Pavel Feldman.

* inspector/front-end/AdvancedSearchController.js:
(WebInspector.SearchView):
* inspector/front-end/Images/statusbarButtonGlyphs.png:
* inspector/front-end/inspector.css:
(.search-view .search-panel):
(.search-view .search-panel input[type="search"].search-config-search):
(.search-view .search-panel input[type="checkbox"].search-config-checkbox):
(body:not(.platform-mac) .search-view .search-panel input[type="checkbox"].search-config-checkbox):
(body.platform-mac .search-view .search-panel input[type="checkbox"].search-config-checkbox):
(#drawer-status-bar .search-status-bar-progress):
(body:not(.platform-mac) #drawer-status-bar .search-status-bar-progress):
(body.platform-mac #drawer-status-bar .search-status-bar-progress):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (98639 => 98640)


--- trunk/Source/WebCore/ChangeLog	2011-10-27 21:29:53 UTC (rev 98639)
+++ trunk/Source/WebCore/ChangeLog	2011-10-27 21:42:48 UTC (rev 98640)
@@ -1,3 +1,23 @@
+2011-10-27  Vsevolod Vlasov  <[email protected]>
+
+        Web Inspector: Advanced search style fixes.
+        https://bugs.webkit.org/show_bug.cgi?id=71036
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/front-end/AdvancedSearchController.js:
+        (WebInspector.SearchView):
+        * inspector/front-end/Images/statusbarButtonGlyphs.png:
+        * inspector/front-end/inspector.css:
+        (.search-view .search-panel):
+        (.search-view .search-panel input[type="search"].search-config-search):
+        (.search-view .search-panel input[type="checkbox"].search-config-checkbox):
+        (body:not(.platform-mac) .search-view .search-panel input[type="checkbox"].search-config-checkbox):
+        (body.platform-mac .search-view .search-panel input[type="checkbox"].search-config-checkbox):
+        (#drawer-status-bar .search-status-bar-progress):
+        (body:not(.platform-mac) #drawer-status-bar .search-status-bar-progress):
+        (body.platform-mac #drawer-status-bar .search-status-bar-progress):
+
 2011-10-27  David Hyatt  <[email protected]>
 
         https://bugs.webkit.org/show_bug.cgi?id=71061

Modified: trunk/Source/WebCore/inspector/front-end/AdvancedSearchController.js (98639 => 98640)


--- trunk/Source/WebCore/inspector/front-end/AdvancedSearchController.js	2011-10-27 21:29:53 UTC (rev 98639)
+++ trunk/Source/WebCore/inspector/front-end/AdvancedSearchController.js	2011-10-27 21:42:48 UTC (rev 98640)
@@ -156,6 +156,7 @@
 WebInspector.SearchView = function(controller)
 {
     WebInspector.View.call(this);
+    this.registerRequiredCSS("textViewer.css");
     
     this._controller = controller;
 

Modified: trunk/Source/WebCore/inspector/front-end/Images/statusbarButtonGlyphs.png


(Binary files differ)

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


--- trunk/Source/WebCore/inspector/front-end/inspector.css	2011-10-27 21:29:53 UTC (rev 98639)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css	2011-10-27 21:42:48 UTC (rev 98640)
@@ -2325,10 +2325,10 @@
 .search-view .search-panel {
     position: absolute;
     top: 0;
-    height: 35px;
+    height: 28px;
     left: 0;
     right: 0;
-    padding-top: 4px;
+    padding-top: 2px;
     padding-left: 10px;
     background-color: #EBEBEB;
     border-bottom: 1px solid #BBB;
@@ -2338,6 +2338,7 @@
 
 .search-view .search-panel input[type="search"].search-config-search {
     margin-right: 8px;
+    font-size: 11px;
     color: #303030;
 }
 
@@ -2348,9 +2349,16 @@
 
 .search-view .search-panel input[type="checkbox"].search-config-checkbox {
     vertical-align: bottom;
-    margin-bottom: 6px;
 }
 
+body:not(.platform-mac) .search-view .search-panel input[type="checkbox"].search-config-checkbox {
+    margin-bottom: 5px;
+}
+
+body.platform-mac .search-view .search-panel input[type="checkbox"].search-config-checkbox {
+    margin-bottom: 4px;
+}
+
 #drawer-status-bar .search-status-bar-item {
     cursor: pointer;
     font-size: 11px;
@@ -2365,12 +2373,19 @@
 }
 
 #drawer-status-bar .search-status-bar-progress {
-    height: 10px;
+    height: 11px;
     width: 100px;
-    margin-top: 8px;
     float: left;
 }
 
+body:not(.platform-mac) #drawer-status-bar .search-status-bar-progress {
+    margin-top: 8px;
+}
+
+body.platform-mac #drawer-status-bar .search-status-bar-progress {
+    margin-top: 7px;
+}
+
 #drawer-status-bar .search-status-bar-stop-button-item {
     width: 19px;
     height: 24px;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to