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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network_conditions/networkConditionsSettingsTab.css

Issue 2915883002: DevTools: prepare to unify Network and CPU throttling UI (Closed)
Patch Set: gs Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/network_conditions/networkConditionsSettingsTab.css
diff --git a/third_party/WebKit/Source/devtools/front_end/network_conditions/networkConditionsSettingsTab.css b/third_party/WebKit/Source/devtools/front_end/network_conditions/networkConditionsSettingsTab.css
deleted file mode 100644
index b321849b9c887bc26c8f2fd37fee37ac46c55b92..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/devtools/front_end/network_conditions/networkConditionsSettingsTab.css
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * Copyright 2015 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-:host {
- overflow:hidden;
-}
-
-.header {
- padding: 0 0 6px;
- border-bottom: 1px solid #EEEEEE;
- font-size: 18px;
- font-weight: normal;
- flex: none;
-}
-
-.add-conditions-button {
- flex: none;
- margin: 10px 0;
- min-width: 140px;
- align-self: flex-start;
-}
-
-.conditions-list {
- max-width: 500px;
- min-width: 340px;
- flex: auto;
-}
-
-.conditions-list-item {
- padding: 3px 5px 3px 5px;
- height: 30px;
- display: flex;
- align-items: center;
- position: relative;
- flex: auto 1 1;
-}
-
-.conditions-list-text {
- white-space: nowrap;
- text-overflow: ellipsis;
- flex: 0 0 70px;
- -webkit-user-select: none;
- color: #222;
- text-align: end;
- position: relative;
-}
-
-.conditions-list-title {
- text-align: start;
- flex: auto;
- display: flex;
- align-items: flex-start;
-}
-
-.conditions-list-title-text {
- overflow: hidden;
- flex: auto;
- white-space: nowrap;
- text-overflow: ellipsis;
-}
-
-.conditions-list-separator {
- flex: 0 0 1px;
- background-color: rgb(231, 231, 231);
- height: 30px;
- margin: 0 4px;
-}
-
-.conditions-list-separator-invisible {
- visibility: hidden;
- height: 100% !important;
-}
-
-.conditions-edit-row {
- flex: none;
- display: flex;
- flex-direction: row;
- margin: 6px 5px;
-}
-
-.conditions-edit-row input {
- width: 100%;
- text-align: inherit;
-}
-
-.conditions-edit-optional {
- position: absolute;
- bottom: -20px;
- right: 0;
- color: rgb(128, 128, 128);
-}

Powered by Google App Engine
This is Rietveld 408576698