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

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

Issue 2119733003: Wrapping leaf nodes in non polymer elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Converted error-ref tag 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 /* error-ref */
359 /* TODO: fix error-ref-wrapped to error-ref when wrapper removed */
rmacnak 2016/07/11 17:54:01 Our TODOs are always either TODO(username) or TODO
cbernaschina 2016/07/11 18:14:11 Done.
360
361 error-ref-wrapped > pre {
362 background-color: #f5f5f5;
363 border: 1px solid #ccc;
364 padding: 10px;
365 font-family: consolas, courier, monospace;
366 font-size: 1em;
367 line-height: 1.2em;
368 white-space: pre;
369 }
370
371 /* isolate-ref */
372 /* TODO: fix isolate-ref-wrapped to isolate-ref when wrapper removed */
373
374 isolate-ref-wrapped > a {
375 color: #0489c3;
376 text-decoration: none;
377 }
378
379 isolate-ref-wrapped > a:hover {
380 text-decoration: underline;
381 }
382
383 /* view-footer */
384
385 view-footer {
386 padding: 1em;
387 padding-top: 8em;
388 float: right;
389 align-content: right;
390 }
391
392 view-footer > a {
393 display: block;
394 }
395
396 /* vm-connect-target */
397 /* TODO: fix vm-connect-target-wrapped to vm-connect-target
398 whenwrapper removed */
399
400 vm-connect-target-wrapped > button.delete-button {
401 padding: 4px;
402 background: transparent;
403 border: none !important;
404 }
405
406 vm-connect-target-wrapped > button.delete-button:hover {
407 background: #ff0000;
408 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698