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

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: Rebased 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 a.disabled {
109 opacity: 0.5;
110 pointer-events: none;
111 }
112
113 .open {
114 margin-bottom: -4px;
115 margin-top: 5px;
116 }
117
118 .open > input {
119 border: 1px solid #aaa;
120 height: 17px;
121 line-height: 17px;
122 margin-left: 20px;
123 padding: 0 2px;
124 }
125
126 .open > button {
127 line-height: 13px;
128 }
129
107 #port-forwarding-settings { 130 #port-forwarding-settings {
108 position: absolute; 131 position: absolute;
109 right: 20px; 132 right: 20px;
110 top: 15px; 133 top: 15px;
111 } 134 }
112 135
113 #port-forwarding-overlay { 136 #port-forwarding-overlay {
114 -webkit-box-align: center; 137 -webkit-box-align: center;
115 -webkit-box-pack: center; 138 -webkit-box-pack: center;
116 background-color: rgba(255, 255, 255, 0.75); 139 background-color: rgba(255, 255, 255, 0.75);
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 pointer-events: none; 237 pointer-events: none;
215 } 238 }
216 239
217 .port-forwarding-pair:not(.selected) .close-button:not(:hover) { 240 .port-forwarding-pair:not(.selected) .close-button:not(:hover) {
218 opacity: 0.5; 241 opacity: 0.5;
219 } 242 }
220 243
221 #port-forwarding-config-buttons > button { 244 #port-forwarding-config-buttons > button {
222 float: right; 245 float: right;
223 } 246 }
OLDNEW
« no previous file with comments | « chrome/browser/devtools/devtools_adb_bridge.cc ('k') | chrome/browser/resources/inspect/inspect.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698