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

Side by Side Diff: chrome/browser/resources/chromeos/network_ui/network_ui.css

Issue 972223002: Fix chrome://network CSS for cr-network-icon (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 paper-button[raised].colored { 5 paper-button[raised].colored {
6 background: rgb(66, 133, 244); 6 background: rgb(66, 133, 244);
7 color: white; 7 color: white;
8 } 8 }
9 9
10 #header { 10 #header {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 .state-table tr td { 44 .state-table tr td {
45 border: 1px solid rgb(220, 220, 220); 45 border: 1px solid rgb(220, 220, 220);
46 font-size: 13px; 46 font-size: 13px;
47 } 47 }
48 48
49 .state-table-header { 49 .state-table-header {
50 font-weight: bold; 50 font-weight: bold;
51 } 51 }
52 52
53 .state-table-icon-cell {
54 display: flex;
55 justify-content: center;
56 }
57
58 .state-table-expand-button-cell { 53 .state-table-expand-button-cell {
59 text-align: center; 54 text-align: center;
60 } 55 }
61 56
62 .state-table-expand-button { 57 .state-table-expand-button {
63 background-color: #fff; 58 background-color: #fff;
64 border: none; 59 border: none;
65 height: 20px; 60 height: 20px;
66 margin: 0; 61 margin: 0;
67 outline: none; 62 outline: none;
68 padding: 0; 63 padding: 0;
69 width: 20px; 64 width: 20px;
70 } 65 }
71 66
72 .state-table-expanded-cell { 67 .state-table-expanded-cell {
73 white-space: pre-wrap; 68 white-space: pre-wrap;
74 } 69 }
75 70
76 .state-table cr-network-icon { 71 .state-table cr-network-icon {
77 height: 25px; 72 height: 25px;
73 vertical-align: middle;
michaelpg 2015/03/03 21:09:09 w00t I figured this out! (kind of) TL;DR: It's a
stevenjb 2015/03/03 21:43:01 TLDR; display:block in the icon does fix this and
78 width: 25px; 74 width: 25px;
79 } 75 }
80 76
81 #advanced-options { 77 #advanced-options {
82 margin-top: 10px; 78 margin-top: 10px;
83 } 79 }
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