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

Side by Side Diff: appengine/swarming/elements/res/imp/common/swarming-app.html

Issue 2372323002: Add pageable data widget (Closed) Base URL: git@github.com:luci/luci-py@master
Patch Set: rebase Created 4 years, 2 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 | « appengine/swarming/elements/res/imp/common/pageable-data-demo.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « appengine/swarming/elements/res/imp/common/pageable-data-demo.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698