Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Unified Diff: Source/WebCore/inspector/front-end/inspector.css

Issue 8381041: Merge 98105 - Web Inspector: Advanced search is working very slowly and does not show searching p... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/912/
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/WebCore/inspector/front-end/inspector.css
===================================================================
--- Source/WebCore/inspector/front-end/inspector.css (revision 98335)
+++ Source/WebCore/inspector/front-end/inspector.css (working copy)
@@ -4151,6 +4151,43 @@
margin-bottom: 6px;
}
+#drawer-status-bar .search-status-bar-item {
+ cursor: pointer;
+ font-size: 11px;
+ height: 23px;
+}
+
+#drawer-status-bar .search-status-bar-message {
+ margin-left:5px;
+ margin-right:5px;
+ margin-top:6px;
+ float:left;
+}
+
+#drawer-status-bar .search-status-bar-progress {
+ height: 10px;
+ width: 100px;
+ margin-top: 8px;
+ float: left;
+}
+
+#drawer-status-bar .search-status-bar-stop-button-item {
+ width: 19px;
+ height: 24px;
+ overflow: hidden;
+}
+
+#drawer-status-bar .search-status-bar-stop-button .glyph {
+ -webkit-mask-position: -96px -48px;
+ background-color: rgb(216, 0, 0) !important;
+}
+
+#drawer-status-bar .search-results-status-bar-message {
+ margin-right: 10px;
+ cursor: default;
+ font-size: 11px;
+}
+
.search-view .search-results {
position: absolute;
top: 35px;
@@ -4158,15 +4195,25 @@
left: 0;
right: 0;
overflow-y: auto;
-
+}
+
+#search-results-pane-file-based .search-results-outline-disclosure {
padding-bottom: 5px;
}
#search-results-pane-file-based .search-result {
font-size: 12px;
margin-top: 3px;
+ word-wrap: normal;
+ white-space: pre;
+ cursor: pointer;
}
+#search-results-pane-file-based .search-result:hover {
+ background-color: rgba(121, 121, 121, 0.1);
+ -webkit-border-radius: 5px;
+}
+
#search-results-pane-file-based .search-result:first-child {
margin-top: 1px;
}
@@ -4182,6 +4229,17 @@
color: #333;
}
+#search-results-pane-file-based .show-more-matches {
+ margin-left: 5px;
+ color: #333;
+ cursor: pointer;
+}
+
+#search-results-pane-file-based .show-more-matches:hover {
+ text-decoration: underline;
+}
+
+
#search-results-pane-file-based .search-match {
font-family: 'dejavu sans mono', monospace;
font-size: 11px;
@@ -4200,7 +4258,7 @@
#search-results-pane-file-based .search-match:hover {
background-color: rgba(56, 121, 217, 0.1);
- -webkit-border-radius: 5px;*/
+ -webkit-border-radius: 5px;
}
#search-results-pane-file-based .search-match .highlighted-match {
« no previous file with comments | « Source/WebCore/inspector/front-end/TimelinePanel.js ('k') | Source/WebCore/inspector/front-end/utilities.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698