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

Unified Diff: Source/devtools/front_end/inspectorCommon.css

Issue 988523003: Reimplement min-width: auto (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 years, 9 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: Source/devtools/front_end/inspectorCommon.css
diff --git a/Source/devtools/front_end/inspectorCommon.css b/Source/devtools/front_end/inspectorCommon.css
index 5e6e0b4f66b8bd2301bb68f1c4b7463189ca1fab..29ae1778c23f874b397bf574823a867bcb6103fe 100644
--- a/Source/devtools/front_end/inspectorCommon.css
+++ b/Source/devtools/front_end/inspectorCommon.css
@@ -1,3 +1,11 @@
+body /deep/ * {
pfeldman 2015/04/06 10:25:57 - Do you think this affects enterprise sites as mu
+ /* This is required for correct sizing of flex items because we rely
+ * on an old version of the flexbox spec.
+ * Longer-term we should remove this, see crbug.com/473625 */
+ min-width: 0;
+ min-height: 0;
+}
+
html {
height: 100%;
overflow: hidden;
« Source/core/layout/LayoutFlexibleBox.cpp ('K') | « Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698