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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/searchableView.css

Issue 2010223002: [DevTools] Add white-space:nowrap for "Replace All" search button (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .search-bar { 7 .search-bar {
8 flex: 0 0 23px; 8 flex: 0 0 23px;
9 background-color: #eee; 9 background-color: #eee;
10 border-top: 1px solid #ccc; 10 border-top: 1px solid #ccc;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 opacity: 1.0; 65 opacity: 1.0;
66 } 66 }
67 67
68 .toolbar-search button.search-action-button { 68 .toolbar-search button.search-action-button {
69 border: 1px solid rgb(163, 163, 163); 69 border: 1px solid rgb(163, 163, 163);
70 border-radius: 8px; 70 border-radius: 8px;
71 margin: 0; 71 margin: 0;
72 background-image: linear-gradient(rgb(241, 241, 241), rgb(220, 220, 220)); 72 background-image: linear-gradient(rgb(241, 241, 241), rgb(220, 220, 220));
73 width: 100%; 73 width: 100%;
74 height: 20px; 74 height: 20px;
75 white-space: nowrap;
75 } 76 }
76 77
77 .toolbar-search button.search-action-button:active { 78 .toolbar-search button.search-action-button:active {
78 background-image: linear-gradient(rgb(185, 185, 185), rgb(156, 156, 156)); 79 background-image: linear-gradient(rgb(185, 185, 185), rgb(156, 156, 156));
79 } 80 }
80 81
81 .toolbar-search-control { 82 .toolbar-search-control {
82 display: -webkit-flex; 83 display: -webkit-flex;
83 position: relative; 84 position: relative;
84 background-color: white; 85 background-color: white;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116)); 125 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116));
125 } 126 }
126 127
127 .search-results-matches { 128 .search-results-matches {
128 display: inline-block; 129 display: inline-block;
129 text-align: right; 130 text-align: right;
130 font-size: 11px; 131 font-size: 11px;
131 padding: 0 4px; 132 padding: 0 4px;
132 color: rgb(165, 165, 165); 133 color: rgb(165, 165, 165);
133 } 134 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698