| 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 <swarming-app> | 9 <swarming-app> |
| 10 | 10 |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 button:active, | 253 button:active, |
| 254 button.raised:active { | 254 button.raised:active { |
| 255 background-color: #999; | 255 background-color: #999; |
| 256 transition: background-color 0.1s cubic-bezier(0.4, 0, 0.2, 1); | 256 transition: background-color 0.1s cubic-bezier(0.4, 0, 0.2, 1); |
| 257 } | 257 } |
| 258 | 258 |
| 259 button:disabled { | 259 button:disabled { |
| 260 color: #999; | 260 color: #999; |
| 261 } | 261 } |
| 262 | 262 |
| 263 button:disabled:hover { |
| 264 background: initial; |
| 265 cursor: initial; |
| 266 } |
| 267 |
| 263 button.action:active { | 268 button.action:active { |
| 264 background-color: #A6CEE3; | 269 background-color: #A6CEE3; |
| 265 transition: background-color 0.1s color 0.1s cubic-bezier(0.4, 0, 0.2, 1
); | 270 transition: background-color 0.1s color 0.1s cubic-bezier(0.4, 0, 0.2, 1
); |
| 266 } | 271 } |
| 267 | 272 |
| 268 button.action { | 273 button.action { |
| 269 color: white; | 274 color: white; |
| 270 background: #1f78b4; | 275 background: #1f78b4; |
| 271 border: none; | 276 border: none; |
| 272 } | 277 } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 293 border: none; | 298 border: none; |
| 294 line-height: 20px; | 299 line-height: 20px; |
| 295 vertical-align: middle; | 300 vertical-align: middle; |
| 296 } | 301 } |
| 297 | 302 |
| 298 select { | 303 select { |
| 299 overflow-y: auto; | 304 overflow-y: auto; |
| 300 } | 305 } |
| 301 </style> | 306 </style> |
| 302 </dom-module> | 307 </dom-module> |
| OLD | NEW |