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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/mobile_throttling/throttlingSettingsTab.css

Issue 2938503002: DevTools: unify Network & CPU throttling (Closed)
Patch Set: fmt Created 3 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 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 :host { 7 :host {
8 overflow:hidden; 8 overflow:hidden;
9 } 9 }
10 10
(...skipping 21 matching lines...) Expand all
32 .conditions-list-item { 32 .conditions-list-item {
33 padding: 3px 5px 3px 5px; 33 padding: 3px 5px 3px 5px;
34 height: 30px; 34 height: 30px;
35 display: flex; 35 display: flex;
36 align-items: center; 36 align-items: center;
37 position: relative; 37 position: relative;
38 flex: auto 1 1; 38 flex: auto 1 1;
39 } 39 }
40 40
41 .conditions-list-text { 41 .conditions-list-text {
42 white-space: nowrap;
43 text-overflow: ellipsis; 42 text-overflow: ellipsis;
44 flex: 0 0 70px; 43 flex: 0 0 70px;
45 -webkit-user-select: none; 44 -webkit-user-select: none;
46 color: #222; 45 color: #222;
47 text-align: end; 46 text-align: end;
48 position: relative; 47 position: relative;
49 } 48 }
50 49
51 .conditions-list-title { 50 .conditions-list-title {
52 text-align: start; 51 text-align: start;
(...skipping 18 matching lines...) Expand all
71 70
72 .conditions-list-separator-invisible { 71 .conditions-list-separator-invisible {
73 visibility: hidden; 72 visibility: hidden;
74 height: 100% !important; 73 height: 100% !important;
75 } 74 }
76 75
77 .conditions-edit-row { 76 .conditions-edit-row {
78 flex: none; 77 flex: none;
79 display: flex; 78 display: flex;
80 flex-direction: row; 79 flex-direction: row;
80 margin: 6px 5px 18px;
81 }
82
83 .conditions-header-row {
84 flex: none;
85 display: flex;
86 flex-direction: row;
81 margin: 6px 5px; 87 margin: 6px 5px;
82 } 88 }
83 89
84 .conditions-edit-row input { 90 .conditions-edit-row input {
85 width: 100%; 91 width: 100%;
86 text-align: inherit; 92 text-align: inherit;
87 } 93 }
88 94
89 .conditions-edit-optional { 95 .conditions-edit-optional {
90 position: absolute; 96 position: absolute;
91 bottom: -20px; 97 bottom: -20px;
92 right: 0; 98 right: 0;
93 color: rgb(128, 128, 128); 99 color: rgb(128, 128, 128);
94 } 100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698