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

Side by Side Diff: runtime/observatory/lib/src/elements/css/shared.css

Issue 2161633005: Converted Observatory nav-refresh element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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
OLDNEW
1 /* Global styles */ 1 /* Global styles */
2 * { 2 * {
3 margin: 0; 3 margin: 0;
4 padding: 0; 4 padding: 0;
5 font: 400 14px 'Montserrat', sans-serif; 5 font: 400 14px 'Montserrat', sans-serif;
6 color: #333; 6 color: #333;
7 box-sizing: border-box; 7 box-sizing: border-box;
8 } 8 }
9 9
10 .content { 10 .content {
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 -webkit-transform: translate3d(10px, 0, 0); 347 -webkit-transform: translate3d(10px, 0, 0);
348 -ms-transform: translate3d(10px, 0, 0); 348 -ms-transform: translate3d(10px, 0, 0);
349 transform: translate3d(10px, 0, 0); 349 transform: translate3d(10px, 0, 0);
350 } 350 }
351 } 351 }
352 352
353 .shake { 353 .shake {
354 animation: shake 0.5s; 354 animation: shake 0.5s;
355 -webkit-animation: shake 0.5s; 355 -webkit-animation: shake 0.5s;
356 } 356 }
357
358 /* nav-refresh */
359 /* TODO(cbernaschina) fix nav-refresh-wrapped to nav-refresh when wrapper
360 removed */
361
362 nav-refresh-wrapped > li > button {
363 color: #000;
364 margin: 3px;
365 padding: 8px;
366 border-width: 2px;
367 line-height: 13px;
368 font: 400 13px 'Montserrat', sans-serif;
369 }
370 nav-refresh-wrapped > li > button[disabled] {
371 color: #aaa;
372 cursor: wait;
373 }
374 nav-refresh-wrapped > li {
375 float: right;
376 margin: 0;
377 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698