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

Unified Diff: third_party/WebKit/Source/devtools/front_end/settings/settingsScreen.css

Issue 1422703003: [DevTools] Use ListWidget for rendering of EditFileSystemView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/settings/settingsScreen.css
diff --git a/third_party/WebKit/Source/devtools/front_end/settings/settingsScreen.css b/third_party/WebKit/Source/devtools/front_end/settings/settingsScreen.css
index 95668c5f827067843540f97e3927431e9bac9578..40b1524ea442ee04bd0cc5fd1d558dc39d068690 100644
--- a/third_party/WebKit/Source/devtools/front_end/settings/settingsScreen.css
+++ b/third_party/WebKit/Source/devtools/front_end/settings/settingsScreen.css
@@ -274,6 +274,11 @@ fieldset {
margin-right: 20px;
}
+.file-system-mapping-view {
+ margin-left: 30px;
+ margin-right: 10px;
+}
+
.settings-tab .settings-list {
border: 1px solid hsl(0, 0%, 85%);
border-radius: 2px;
@@ -398,53 +403,41 @@ select.list-column-editor {
}
.settings-tab .file-system-container {
- margin-bottom: 20px;
+ padding-bottom: 20px;
+ margin-bottom: 18px;
+ padding: 0 8px;
+ border-left: 1px solid hsl(0, 0%, 90%);
}
.settings-tab .file-system-header {
display: flex;
flex-direction: row;
- align-items: baseline;
+ align-items: center;
+}
+
+.settings-tab .file-system-name {
+ font-weight: bold;
+ flex: none;
+ margin-right: 10px;
+ font-size: 15px;
}
.settings-tab .file-system-path {
white-space: nowrap;
- font-size: 1.4em;
- padding-right: 5px;
- -webkit-box-flex: 1;
- color: hsl(210, 16%, 22%);
- margin-bottom: 8px;
overflow: hidden;
- flex: 0 1 auto;
- margin-right: 5px;
text-overflow: ellipsis;
+ flex: auto;
}
-.settings-tab .file-system-path-name {
- padding-right: 6px;
- font-weight: bold;
+.settings-tab .file-system-remove {
+ flex: none;
+ margin-left: 10px;
}
.file-systems-list .settings-list-item .list-column.settings-list-column-path {
width: 100%;
}
-.file-mappings-list .settings-list-item .list-column.settings-list-column-url {
- width: 50%;
-}
-
-.file-mappings-list .settings-list-item .list-column.settings-list-column-path {
- width: 50%;
-}
-
-.excluded-folders-header {
- margin-top: 10px;
-}
-
-.excluded-folders-list .settings-list-item .list-column.settings-list-column-path {
- width: 100%;
-}
-
.settings-tab .settings-list .settings-list-item.disabled .settings-list-column-pattern .list-column-text {
color: #666;
text-decoration: line-through;

Powered by Google App Engine
This is Rietveld 408576698