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

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: Final Merge 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 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 }
378
358 /* view-footer */ 379 /* view-footer */
359 380
360 view-footer { 381 view-footer {
361 padding: 1em; 382 padding: 1em;
362 padding-top: 10.3em; 383 padding-top: 10.3em;
363 float: right; 384 float: right;
364 align-content: right; 385 align-content: right;
365 } 386 }
366 387
367 view-footer > a { 388 view-footer > a {
368 margin-bottom: 0.17em; 389 margin-bottom: 0.17em;
369 font-size: 90%; 390 font-size: 90%;
370 float: right; 391 float: right;
371 clear: both; 392 clear: both;
372 display: block; 393 display: block;
373 } 394 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/app/application.dart ('k') | runtime/observatory/lib/src/elements/nav/refresh.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698