| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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> |
| OLD | NEW |