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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/networkConfigView.css

Issue 2033093004: DevTools: fix invalid outline style across inputs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 4 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 .network-config { 7 .network-config {
8 padding: 12px; 8 padding: 12px;
9 display: block; 9 display: block;
10 } 10 }
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 77
78 .network-config-ua input[readonly] { 78 .network-config-ua input[readonly] {
79 background-color: rgb(235, 235, 228); 79 background-color: rgb(235, 235, 228);
80 } 80 }
81 81
82 .network-config-ua input[type=text], .network-config-ua .chrome-select { 82 .network-config-ua input[type=text], .network-config-ua .chrome-select {
83 margin-top: 8px; 83 margin-top: 8px;
84 } 84 }
85 85
86 .network-config-ua input[type="text"]:invalid { 86 .network-config-ua input[type="text"]:invalid {
87 outline: auto red; 87 outline: auto 2px red;
88 outline-offset: -2px;
88 } 89 }
89 90
90 .network-config-ua .chrome-select { 91 .network-config-ua .chrome-select {
91 width: calc(100% - 20px); 92 width: calc(100% - 20px);
92 max-width: 250px; 93 max-width: 250px;
93 } 94 }
94 95
95 .network-config-ua label[is="dt-radio"] { 96 .network-config-ua label[is="dt-radio"] {
96 display: block; 97 display: block;
97 } 98 }
98 99
99 .network-config-ua-auto, .network-config-ua-custom { 100 .network-config-ua-auto, .network-config-ua-custom {
100 opacity: 0.5; 101 opacity: 0.5;
101 } 102 }
102 103
103 .network-config-ua-auto.checked, .network-config-ua-custom.checked { 104 .network-config-ua-auto.checked, .network-config-ua-custom.checked {
104 opacity: 1; 105 opacity: 1;
105 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698