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

Unified Diff: tracing/tracing/ui/side_panel/side_panel_container.html

Issue 3002533002: Switch tracing to new flexbox. (Closed)
Patch Set: Created 3 years, 4 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
« no previous file with comments | « tracing/tracing/ui/find_control.html ('k') | tracing/tracing/ui/timeline_track_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/side_panel/side_panel_container.html
diff --git a/tracing/tracing/ui/side_panel/side_panel_container.html b/tracing/tracing/ui/side_panel/side_panel_container.html
index 9f75c8ada1f291e5743dca59cdadbe02235e8912..f19d8f3b5d851502e4db2e3c01bcc6b8efcb9fcf 100644
--- a/tracing/tracing/ui/side_panel/side_panel_container.html
+++ b/tracing/tracing/ui/side_panel/side_panel_container.html
@@ -14,15 +14,15 @@ found in the LICENSE file.
<style>
:host {
align-items: stretch;
- display: -webkit-flex;
+ display: flex;
background-color: white;
}
:host([expanded]) > #side_panel_drag_handle,
:host([expanded]) > active-panel-container {
- -webkit-flex: 1 1 auto;
+ flex: 1 1 auto;
border-left: 1px solid black;
- display: -webkit-flex;
+ display: flex;
}
:host(:not([expanded])) > #side_panel_drag_handle,
@@ -35,13 +35,13 @@ found in the LICENSE file.
}
tab-strip {
- -webkit-flex: 0 0 auto;
- -webkit-flex-direction: column;
+ flex: 0 0 auto;
+ flex-direction: column;
-webkit-user-select: none;
background-color: rgb(236, 236, 236);
border-left: 1px solid black;
cursor: default;
- display: -webkit-flex;
+ display: flex;
min-width: 18px; /* workaround for flexbox and writing-mode mixing bug */
padding: 10px 0 10px 0;
font-size: 12px;
« no previous file with comments | « tracing/tracing/ui/find_control.html ('k') | tracing/tracing/ui/timeline_track_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698