| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2016 The LUCI Authors. All rights reserved. | 2 Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 | 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. | 4 that can be found in the LICENSE file. |
| 5 | 5 |
| 6 This in an HTML Import-able file that contains the definition | 6 This in an HTML Import-able file that contains the definition |
| 7 of the following elements: | 7 of the following elements: |
| 8 | 8 |
| 9 <bot-page> | 9 <bot-page> |
| 10 | 10 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 white-space: nowrap; | 81 white-space: nowrap; |
| 82 margin-bottom: 5px; | 82 margin-bottom: 5px; |
| 83 margin-top: auto; | 83 margin-top: auto; |
| 84 } | 84 } |
| 85 | 85 |
| 86 .deleted { | 86 .deleted { |
| 87 text-align: center; | 87 text-align: center; |
| 88 font-size: larger; | 88 font-size: larger; |
| 89 } | 89 } |
| 90 | 90 |
| 91 paper-checkbox { | |
| 92 --paper-checkbox-label-color: #fff; | |
| 93 --paper-checkbox-checked-color: #fff; | |
| 94 --paper-checkbox-checkmark-color: #000; | |
| 95 --paper-checkbox-unchecked-color: #fff; | |
| 96 padding: 3px; | |
| 97 } | |
| 98 | |
| 99 paper-dialog { | 91 paper-dialog { |
| 100 border-radius: 6px; | 92 border-radius: 6px; |
| 101 } | 93 } |
| 102 </style> | 94 </style> |
| 103 | 95 |
| 104 <url-param name="id" | 96 <url-param name="id" |
| 105 value="{{bot_id}}"> | 97 value="{{bot_id}}"> |
| 106 </url-param> | 98 </url-param> |
| 107 <url-param name="show_all_events" | 99 <url-param name="show_all_events" |
| 108 value="{{_show_all}}"> | 100 value="{{_show_all}}"> |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 }, | 630 }, |
| 639 | 631 |
| 640 _toggleState: function() { | 632 _toggleState: function() { |
| 641 this.set("_show_state", !this._show_state); | 633 this.set("_show_state", !this._show_state); |
| 642 } | 634 } |
| 643 | 635 |
| 644 }); | 636 }); |
| 645 })(); | 637 })(); |
| 646 </script> | 638 </script> |
| 647 </dom-module> | 639 </dom-module> |
| OLD | NEW |