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

Side by Side Diff: dashboard/dashboard/elements/speed-releasing-page.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
« no previous file with comments | « dashboard/dashboard/elements/nav-bar.html ('k') | dashboard/dashboard/elements/trace-form.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright 2017 The Chromium Authors. All rights reserved. 3 Copyright 2017 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 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css"> 8 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css">
9 9
10 <link rel="import" href="/components/paper-button/paper-button.html"> 10 <link rel="import" href="/components/paper-button/paper-button.html">
(...skipping 15 matching lines...) Expand all
26 font-weight: bold; 26 font-weight: bold;
27 } 27 }
28 28
29 .center { 29 .center {
30 margin: auto; 30 margin: auto;
31 padding: 10px; 31 padding: 10px;
32 } 32 }
33 33
34 #content { 34 #content {
35 display: inline-flex; 35 display: inline-flex;
36 display: -webkit-inline-flex;
37 flex-direction: column; 36 flex-direction: column;
38 -webkit-flex-direction: column;
39 align-items: flex-start; 37 align-items: flex-start;
40 -webkit-align-items: flex-start;
41 } 38 }
42 39
43 #loading-spinner { 40 #loading-spinner {
44 width: 100%; 41 width: 100%;
45 display: flex; 42 display: flex;
46 justify-content: center; 43 justify-content: center;
47 } 44 }
48 </style> 45 </style>
49 <template is="dom-if" if="{{loading}}"> 46 <template is="dom-if" if="{{loading}}">
50 <div id="loading-spinner"><img src="//www.google.com/images/loading.gif">< /div> 47 <div id="loading-spinner"><img src="//www.google.com/images/loading.gif">< /div>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 } else { // POST in speed-releasing-table will get the values. 115 } else { // POST in speed-releasing-table will get the values.
119 this.tableName = path; 116 this.tableName = path;
120 this.showList = false; 117 this.showList = false;
121 this.loading = false; 118 this.loading = false;
122 } 119 }
123 } 120 }
124 121
125 }); 122 });
126 </script> 123 </script>
127 </dom-module> 124 </dom-module>
OLDNEW
« no previous file with comments | « dashboard/dashboard/elements/nav-bar.html ('k') | dashboard/dashboard/elements/trace-form.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698