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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/devices/devicesView.css

Issue 2912563003: DevTools: cleanup button styles (Closed)
Patch Set: a Created 3 years, 6 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) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2015 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 .devices-container { 7 .devices-container {
8 overflow: hidden; 8 overflow: hidden;
9 flex: auto; 9 flex: auto;
10 } 10 }
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 345
346 .device-page-url { 346 .device-page-url {
347 margin: 3px 100px 3px 0; 347 margin: 3px 100px 3px 0;
348 } 348 }
349 349
350 .device-page-url a { 350 .device-page-url a {
351 color: #777; 351 color: #777;
352 word-break: break-all; 352 word-break: break-all;
353 } 353 }
354 354
355 .device-inspect-button {
356 flex: none;
357 }
luoe 2017/05/26 23:41:06 Without this, you can get the button to shrink.
pfeldman 2017/05/30 21:18:17 It should be done for all buttons thought, no?
luoe 2017/05/30 22:39:45 Yes! Done.
358
355 .device-view-more { 359 .device-view-more {
356 cursor: pointer; 360 cursor: pointer;
357 text-decoration: underline; 361 text-decoration: underline;
358 color: rgb(17, 85, 204); 362 color: rgb(17, 85, 204);
359 margin: 5px 0 0 10px; 363 margin: 5px 0 0 10px;
360 display: none; 364 display: none;
361 } 365 }
362 366
363 .device-view-more.device-needs-view-more { 367 .device-view-more.device-needs-view-more {
364 display: block; 368 display: block;
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 } 459 }
456 460
457 :host-context(.node-frontend) .network-discovery-edit-row input { 461 :host-context(.node-frontend) .network-discovery-edit-row input {
458 height: 30px; 462 height: 30px;
459 padding-left: 5px; 463 padding-left: 5px;
460 } 464 }
461 465
462 :host-context(.node-frontend) .network-discovery-edit-row { 466 :host-context(.node-frontend) .network-discovery-edit-row {
463 margin: 6px 9px; 467 margin: 6px 9px;
464 } 468 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698