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

Side by Side Diff: dashboard/dashboard/elements/bug-info.html

Issue 2995833002: Switch dashboard 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright 2016 The Chromium Authors. All rights reserved. 3 Copyright 2016 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <dom-module id="bug-info"> 8 <dom-module id="bug-info">
9 <template> 9 <template>
10 <style> 10 <style>
11 #container { 11 #container {
12 display: flex; 12 display: flex;
13 display: -webkit-flex;
14 -webkit-flex-direction: column;
15 flex-direction: column; 13 flex-direction: column;
16 margin-left: 1px; 14 margin-left: 1px;
17 margin-top: 3px; 15 margin-top: 3px;
18 } 16 }
19 17
20 #container p { 18 #container p {
21 margin-top: 7px; 19 margin-top: 7px;
22 margin-bottom: 7px; 20 margin-bottom: 7px;
23 } 21 }
24 22
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 alerts[i].bot + '/' + 129 alerts[i].bot + '/' +
132 alerts[i].testsuite + '/' + 130 alerts[i].testsuite + '/' +
133 alerts[i].test; 131 alerts[i].test;
134 } 132 }
135 } 133 }
136 return null; 134 return null;
137 } 135 }
138 }); 136 });
139 </script> 137 </script>
140 </dom-module> 138 </dom-module>
OLDNEW
« no previous file with comments | « dashboard/dashboard/elements/bisect-form.html ('k') | dashboard/dashboard/elements/chart-container.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698