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

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

Issue 1582093002: [DevTools] Turn NetworkConditionsSettingsTab into web component, move to network module. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/module.json ('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 2015 The Chromium Authors. All rights reserved. 2 * Copyright 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-conditions-settings-tab .settings-tab.help-content { 7 :host {
8 display: flex; 8 overflow:hidden;
9 flex-direction: column;
10 align-items: stretch;
11 height: 100%;
12 margin: 0;
13 max-width: 500px;
14 } 9 }
15 10
16 .network-conditions-settings-tab .conditions-title { 11 .header {
17 font-size: 120%; 12 padding: 0 0 6px;
18 color: #222; 13 border-bottom: 1px solid #EEEEEE;
14 font-size: 18px;
15 font-weight: normal;
19 flex: none; 16 flex: none;
20 } 17 }
21 18
22 .network-conditions-settings-tab .button-row { 19 .add-conditions-button {
23 flex: none; 20 flex: none;
24 display: flex; 21 margin: 10px 0;
25 margin-bottom: 10px; 22 min-width: 140px;
23 align-self: flex-start;
26 } 24 }
27 25
28 .network-conditions-settings-tab .button-row button { 26 .conditions-list {
29 margin-right: 10px; 27 max-width: 500px;
30 min-width: 120px; 28 min-width: 340px;
31 flex: none; 29 flex: auto;
32 } 30 }
33 31
34 .conditions-list-item { 32 .conditions-list-item {
35 padding: 3px 5px 3px 5px; 33 padding: 3px 5px 3px 5px;
36 height: 30px; 34 height: 30px;
37 display: flex; 35 display: flex;
38 align-items: center; 36 align-items: center;
39 position: relative; 37 position: relative;
40 flex: auto 1 1; 38 flex: auto 1 1;
41 } 39 }
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 width: 100%; 85 width: 100%;
88 text-align: inherit; 86 text-align: inherit;
89 } 87 }
90 88
91 .conditions-edit-optional { 89 .conditions-edit-optional {
92 position: absolute; 90 position: absolute;
93 bottom: -20px; 91 bottom: -20px;
94 right: 0; 92 right: 0;
95 color: rgb(128, 128, 128); 93 color: rgb(128, 128, 128);
96 } 94 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698