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

Side by Side Diff: chrome/browser/resources/inspect/inspect.css

Issue 22277007: chrome://inspect: Add "open", "close" and "reload" actions to Devices tab (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2012 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 body { 7 body {
8 color: rgb(48, 57, 66); 8 color: rgb(48, 57, 66);
9 font-family: Arial, sans-serif; 9 font-family: Arial, sans-serif;
10 font-size: 13px; 10 font-size: 13px;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 color: #A0A0A0; 94 color: #A0A0A0;
95 } 95 }
96 96
97 .list { 97 .list {
98 margin-bottom: 20px; 98 margin-bottom: 20px;
99 margin-top: 5px; 99 margin-top: 5px;
100 } 100 }
101 101
102 a { 102 a {
103 color: rgb(17, 85, 204); 103 color: rgb(17, 85, 204);
104 padding: 0 3px;
104 text-decoration: none; 105 text-decoration: none;
105 } 106 }
106 107
108 .open {
109 margin-bottom: -4px;
110 margin-top: 5px;
111 }
112
113 .open > input {
114 border: 1px solid #aaa;
115 height: 17px;
116 line-height: 17px;
117 margin-left: 20px;
118 padding: 0 2px;
119 }
120
121 .open > button {
122 line-height: 13px;
123 }
124
107 #port-forwarding-settings { 125 #port-forwarding-settings {
108 position: absolute; 126 position: absolute;
109 right: 20px; 127 right: 20px;
110 top: 15px; 128 top: 15px;
111 } 129 }
112 130
113 #port-forwarding-overlay { 131 #port-forwarding-overlay {
114 -webkit-box-align: center; 132 -webkit-box-align: center;
115 -webkit-box-pack: center; 133 -webkit-box-pack: center;
116 background-color: rgba(255, 255, 255, 0.75); 134 background-color: rgba(255, 255, 255, 0.75);
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 pointer-events: none; 232 pointer-events: none;
215 } 233 }
216 234
217 .port-forwarding-pair:not(.selected) .close-button:not(:hover) { 235 .port-forwarding-pair:not(.selected) .close-button:not(:hover) {
218 opacity: 0.5; 236 opacity: 0.5;
219 } 237 }
220 238
221 #port-forwarding-config-buttons > button { 239 #port-forwarding-config-buttons > button {
222 float: right; 240 float: right;
223 } 241 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698