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

Side by Side 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 4133 matching lines...) Expand 10 before | Expand all | Expand 10 after
4144 .search-view .search-panel label.search-config-label { 4144 .search-view .search-panel label.search-config-label {
4145 margin-right: 8px; 4145 margin-right: 8px;
4146 color: #303030; 4146 color: #303030;
4147 } 4147 }
4148 4148
4149 .search-view .search-panel input[type="checkbox"].search-config-checkbox { 4149 .search-view .search-panel input[type="checkbox"].search-config-checkbox {
4150 vertical-align: bottom; 4150 vertical-align: bottom;
4151 margin-bottom: 6px; 4151 margin-bottom: 6px;
4152 } 4152 }
4153 4153
4154 #drawer-status-bar .search-status-bar-item {
4155 cursor: pointer;
4156 font-size: 11px;
4157 height: 23px;
4158 }
4159
4160 #drawer-status-bar .search-status-bar-message {
4161 margin-left:5px;
4162 margin-right:5px;
4163 margin-top:6px;
4164 float:left;
4165 }
4166
4167 #drawer-status-bar .search-status-bar-progress {
4168 height: 10px;
4169 width: 100px;
4170 margin-top: 8px;
4171 float: left;
4172 }
4173
4174 #drawer-status-bar .search-status-bar-stop-button-item {
4175 width: 19px;
4176 height: 24px;
4177 overflow: hidden;
4178 }
4179
4180 #drawer-status-bar .search-status-bar-stop-button .glyph {
4181 -webkit-mask-position: -96px -48px;
4182 background-color: rgb(216, 0, 0) !important;
4183 }
4184
4185 #drawer-status-bar .search-results-status-bar-message {
4186 margin-right: 10px;
4187 cursor: default;
4188 font-size: 11px;
4189 }
4190
4154 .search-view .search-results { 4191 .search-view .search-results {
4155 position: absolute; 4192 position: absolute;
4156 top: 35px; 4193 top: 35px;
4157 bottom: 0; 4194 bottom: 0;
4158 left: 0; 4195 left: 0;
4159 right: 0; 4196 right: 0;
4160 overflow-y: auto; 4197 overflow-y: auto;
4161 4198 }
4199
4200 #search-results-pane-file-based .search-results-outline-disclosure {
4162 padding-bottom: 5px; 4201 padding-bottom: 5px;
4163 } 4202 }
4164 4203
4165 #search-results-pane-file-based .search-result { 4204 #search-results-pane-file-based .search-result {
4166 font-size: 12px; 4205 font-size: 12px;
4167 margin-top: 3px; 4206 margin-top: 3px;
4207 word-wrap: normal;
4208 white-space: pre;
4209 cursor: pointer;
4210 }
4211
4212 #search-results-pane-file-based .search-result:hover {
4213 background-color: rgba(121, 121, 121, 0.1);
4214 -webkit-border-radius: 5px;
4168 } 4215 }
4169 4216
4170 #search-results-pane-file-based .search-result:first-child { 4217 #search-results-pane-file-based .search-result:first-child {
4171 margin-top: 1px; 4218 margin-top: 1px;
4172 } 4219 }
4173 4220
4174 4221
4175 #search-results-pane-file-based .search-result .search-result-file-name { 4222 #search-results-pane-file-based .search-result .search-result-file-name {
4176 font-weight: bold; 4223 font-weight: bold;
4177 color: #222; 4224 color: #222;
4178 } 4225 }
4179 4226
4180 #search-results-pane-file-based .search-result .search-result-matches-count { 4227 #search-results-pane-file-based .search-result .search-result-matches-count {
4181 margin-left: 5px; 4228 margin-left: 5px;
4182 color: #333; 4229 color: #333;
4183 } 4230 }
4184 4231
4232 #search-results-pane-file-based .show-more-matches {
4233 margin-left: 5px;
4234 color: #333;
4235 cursor: pointer;
4236 }
4237
4238 #search-results-pane-file-based .show-more-matches:hover {
4239 text-decoration: underline;
4240 }
4241
4242
4185 #search-results-pane-file-based .search-match { 4243 #search-results-pane-file-based .search-match {
4186 font-family: 'dejavu sans mono', monospace; 4244 font-family: 'dejavu sans mono', monospace;
4187 font-size: 11px; 4245 font-size: 11px;
4188 word-wrap: normal; 4246 word-wrap: normal;
4189 white-space: pre; 4247 white-space: pre;
4190 } 4248 }
4191 4249
4192 #search-results-pane-file-based .search-match .webkit-line-number.search-match-l ine-number { 4250 #search-results-pane-file-based .search-match .webkit-line-number.search-match-l ine-number {
4193 margin-right: 5px; 4251 margin-right: 5px;
4194 border-right: 1px solid #BBB; 4252 border-right: 1px solid #BBB;
4195 } 4253 }
4196 4254
4197 #search-results-pane-file-based .search-match:not(:hover) .webkit-line-number.se arch-match-line-number { 4255 #search-results-pane-file-based .search-match:not(:hover) .webkit-line-number.se arch-match-line-number {
4198 background-color: #F0F0F0; 4256 background-color: #F0F0F0;
4199 } 4257 }
4200 4258
4201 #search-results-pane-file-based .search-match:hover { 4259 #search-results-pane-file-based .search-match:hover {
4202 background-color: rgba(56, 121, 217, 0.1); 4260 background-color: rgba(56, 121, 217, 0.1);
4203 -webkit-border-radius: 5px;*/ 4261 -webkit-border-radius: 5px;
4204 } 4262 }
4205 4263
4206 #search-results-pane-file-based .search-match .highlighted-match { 4264 #search-results-pane-file-based .search-match .highlighted-match {
4207 background-color: #F1EA00; 4265 background-color: #F1EA00;
4208 } 4266 }
4209 4267
4210 #search-results-pane-file-based a { 4268 #search-results-pane-file-based a {
4211 text-decoration: none; 4269 text-decoration: none;
4212 display: block; 4270 display: block;
4213 } 4271 }
4214 4272
4215 #search-results-pane-file-based .search-match .search-match-content { 4273 #search-results-pane-file-based .search-match .search-match-content {
4216 color: #000; 4274 color: #000;
4217 white-space: pre; 4275 white-space: pre;
4218 } 4276 }
OLDNEW
« 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