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

Side by Side Diff: dashboard/dashboard/elements/alerts-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 | « no previous file | dashboard/dashboard/elements/bisect-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 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 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css"> 8 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css">
9 <link rel="import" href="/components/paper-button/paper-button.html"> 9 <link rel="import" href="/components/paper-button/paper-button.html">
10 <link rel="import" href="/components/paper-dropdown-menu/paper-dropdown-menu.htm l"> 10 <link rel="import" href="/components/paper-dropdown-menu/paper-dropdown-menu.htm l">
(...skipping 23 matching lines...) Expand all
34 /* The action bar contains the graph button and triage button. */ 34 /* The action bar contains the graph button and triage button. */
35 #action-bar { 35 #action-bar {
36 margin-top: 20px; 36 margin-top: 20px;
37 width: 100%; 37 width: 100%;
38 } 38 }
39 39
40 /* The content container contains everything below the sheriff select menu. 40 /* The content container contains everything below the sheriff select menu.
41 */ 41 */
42 #content { 42 #content {
43 display: inline-flex; 43 display: inline-flex;
44 display: -webkit-inline-flex;
45 flex-direction: column; 44 flex-direction: column;
46 -webkit-flex-direction: column;
47 align-items: flex-start; 45 align-items: flex-start;
48 -webkit-align-items: flex-start;
49 } 46 }
50 47
51 /* This class indicates a button toggled on (e.g. show improvements). */ 48 /* This class indicates a button toggled on (e.g. show improvements). */
52 .alert-togglebutton { 49 .alert-togglebutton {
53 float: right; 50 float: right;
54 margin-left: 4px; 51 margin-left: 4px;
55 margin-right: 4px; 52 margin-right: 4px;
56 } 53 }
57 54
58 .alert-togglebutton[active] { 55 .alert-togglebutton[active] {
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 this.updateFromURIParameters(); 405 this.updateFromURIParameters();
409 }.bind(this), 406 }.bind(this),
410 function(msg) { 407 function(msg) {
411 this.error = msg; 408 this.error = msg;
412 this.loading = false; 409 this.loading = false;
413 }.bind(this)); 410 }.bind(this));
414 } 411 }
415 }); 412 });
416 </script> 413 </script>
417 </dom-module> 414 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | dashboard/dashboard/elements/bisect-form.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698