| OLD | NEW |
| 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 Loading... |
| 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(cbernaschina) fix error-ref-wrapped to error-ref when wrapper removed */ |
| 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(cbernaschina) fix isolate-ref-wrapped to isolate-ref when wrapper remove
d */ |
| 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(cbernaschina) 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 } |
| OLD | NEW |