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

Side by Side Diff: Source/WebCore/inspector/front-end/inspector.css

Issue 10377162: Merge 116672 - Web Inspector: search title is shown beside the search field (not under) in the vert… (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 years, 7 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 .scrollable-content::-webkit-scrollbar-thumb:vertical:hover, 252 .scrollable-content::-webkit-scrollbar-thumb:vertical:hover,
253 .scrollable-content::-webkit-scrollbar-thumb:vertical:active { 253 .scrollable-content::-webkit-scrollbar-thumb:vertical:active {
254 background: -webkit-gradient(linear, left top, right top, from(rgb(230, 230, 230)), to(rgb(230, 230, 230)), color-stop(40%, rgb(252, 252, 252))); 254 background: -webkit-gradient(linear, left top, right top, from(rgb(230, 230, 230)), to(rgb(230, 230, 230)), color-stop(40%, rgb(252, 252, 252)));
255 } 255 }
256 256
257 .scrollable-content::-webkit-scrollbar-track:vertical { 257 .scrollable-content::-webkit-scrollbar-track:vertical {
258 background: -webkit-gradient(linear, left top, right top, from(rgb(128, 128, 128)), to(rgb(164, 164, 164)), color-stop(25%, rgb(164, 164, 164))); 258 background: -webkit-gradient(linear, left top, right top, from(rgb(128, 128, 128)), to(rgb(164, 164, 164)), color-stop(25%, rgb(164, 164, 164)));
259 border-radius: 5px; 259 border-radius: 5px;
260 } 260 }
261 261
262 .toolbar-search-item { 262 #toolbar-search-item {
263 display: -webkit-box; 263 display: -webkit-box;
264 -webkit-box-orient: horizontal; 264 -webkit-box-orient: horizontal;
265 -webkit-box-align: center; 265 -webkit-box-align: center;
266 -webkit-box-pack: end; 266 -webkit-box-pack: end;
267 } 267 }
268 268
269 #search { 269 #search {
270 width: 205px; 270 width: 205px;
271 font-size: 16px; 271 font-size: 16px;
272 } 272 }
273 273
274 #toolbar-search-navigation-control { 274 .with-navigation-buttons #search {
275 width: 40px; 275 width: 165px;
276 } 276 }
277 277
278 .toolbar-search-navigation-label { 278 .toolbar-search-navigation-label {
279 display: none;
279 border: 1px solid transparent; 280 border: 1px solid transparent;
280 border-radius: 2px; 281 border-radius: 2px;
281 padding: 3px; 282 padding: 3px;
282 margin-left: 2px; 283 margin-left: 2px;
283 width: 18px; 284 width: 18px;
284 height: 18px; 285 height: 18px;
285 float: right; 286 float: right;
286 } 287 }
287 288
289 .with-navigation-buttons .toolbar-search-navigation-label {
290 display: block;
291 }
292
288 .toolbar-search-navigation-label:hover { 293 .toolbar-search-navigation-label:hover {
289 border: 1px solid rgba(120, 120, 120, 0.6); 294 border: 1px solid rgba(120, 120, 120, 0.6);
290 } 295 }
291 296
292 .toolbar-search-navigation-icon-prev , .toolbar-search-navigation-icon-next { 297 .toolbar-search-navigation-icon-prev , .toolbar-search-navigation-icon-next {
293 width: 9px; 298 width: 9px;
294 margin-top: 2px; 299 margin-top: 2px;
295 height: 100%; 300 height: 100%;
296 background-repeat: no-repeat; 301 background-repeat: no-repeat;
297 } 302 }
(...skipping 2391 matching lines...) Expand 10 before | Expand all | Expand 10 after
2689 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0; 2694 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0;
2690 border-color: transparent; 2695 border-color: transparent;
2691 border-width: 11px 0 0 0; 2696 border-width: 11px 0 0 0;
2692 } 2697 }
2693 2698
2694 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:increment { 2699 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:increment {
2695 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0; 2700 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0;
2696 border-color: transparent; 2701 border-color: transparent;
2697 border-width: 0 0 11px 0; 2702 border-width: 0 0 11px 0;
2698 } 2703 }
OLDNEW
« no previous file with comments | « Source/WebCore/inspector/front-end/SearchController.js ('k') | Source/WebCore/inspector/front-end/inspector.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698