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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/filteredListWidget.css

Issue 2584113002: DevTools: render progress while picking the go-to-file. (Closed)
Patch Set: rebaselined Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/ui_lazy/filteredListWidget.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/filteredListWidget.css b/third_party/WebKit/Source/devtools/front_end/ui_lazy/filteredListWidget.css
index ab169660a4fd49eb01875c8a6b850f9ae103a2c1..be8a73ffe531ec524b177bcdd766ce8a6f103700 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/filteredListWidget.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/filteredListWidget.css
@@ -11,9 +11,8 @@
}
.filtered-list-widget-prompt-element {
- flex: 0 0 36px;
+ flex: 0 0 34px;
border: 0;
- border-bottom:1px solid rgba(0, 0, 0, 0.2);
margin: 0;
padding: 0 6px;
z-index: 1;
@@ -23,10 +22,31 @@
.filtered-list-widget-input {
white-space: pre;
height: 18px;
- margin-top: 10px;
+ margin-top: 12px;
overflow: hidden;
}
+.filtered-list-widget-progress {
+ flex: none;
+ background: rgba(0, 0, 0, 0.2);
+ height: 2px;
+}
+
+.filtered-list-widget-progress-bar {
+ background-color: #2196F3;
+ height: 2px;
+ width: 100%;
+ transform: scaleX(0);
+ transform-origin: top left;
+ opacity: 1;
+ transition: none;
+}
+
+.filtered-widget-progress-fade {
+ opacity: 0;
+ transition: opacity 500ms;
+}
+
.filtered-list-widget > div.container {
flex: auto;
overflow-y: auto;
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698