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

Side by Side Diff: Source/devtools/front_end/inspectorCommon.css

Issue 988523003: Reimplement min-width: auto (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments Created 5 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 body /deep/ * {
2 /* This is required for correct sizing of flex items because we rely
3 * on an old version of the flexbox spec.
4 * Longer-term we should remove this, see crbug.com/473625 */
5 min-width: 0;
6 min-height: 0;
7 }
8
1 html { 9 html {
2 height: 100%; 10 height: 100%;
3 overflow: hidden; 11 overflow: hidden;
4 } 12 }
5 13
6 body { 14 body {
7 height: 100%; 15 height: 100%;
8 width: 100%; 16 width: 100%;
9 position: relative; 17 position: relative;
10 overflow: hidden; 18 overflow: hidden;
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 html /deep/ .highlighted-search-result.current-search-result { 174 html /deep/ .highlighted-search-result.current-search-result {
167 border-radius: 1px; 175 border-radius: 1px;
168 padding: 1px; 176 padding: 1px;
169 margin: -1px; 177 margin: -1px;
170 background-color: rgba(255, 127, 0, 0.8); 178 background-color: rgba(255, 127, 0, 0.8);
171 } 179 }
172 180
173 .overflow-auto { 181 .overflow-auto {
174 overflow: auto; 182 overflow: auto;
175 } 183 }
OLDNEW
« no previous file with comments | « Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698