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

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

Issue 2023483003: DevTools: empty user agent validation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated string from feedback 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/NetworkConfigView.js ('k') | 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 /* 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 } 76 }
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 {
87 outline: auto red;
88 }
89
86 .network-config-ua .chrome-select { 90 .network-config-ua .chrome-select {
87 width: calc(100% - 20px); 91 width: calc(100% - 20px);
88 max-width: 250px; 92 max-width: 250px;
89 } 93 }
90 94
91 .network-config-ua label[is="dt-radio"] { 95 .network-config-ua label[is="dt-radio"] {
92 display: block; 96 display: block;
93 } 97 }
94 98
95 .network-config-ua-auto, .network-config-ua-custom { 99 .network-config-ua-auto, .network-config-ua-custom {
96 opacity: 0.5; 100 opacity: 0.5;
97 } 101 }
98 102
99 .network-config-ua-auto.checked, .network-config-ua-custom.checked { 103 .network-config-ua-auto.checked, .network-config-ua-custom.checked {
100 opacity: 1; 104 opacity: 1;
101 } 105 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/NetworkConfigView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698