OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
610 background-color: rgba(56, 121, 217, 0.1); | 610 background-color: rgba(56, 121, 217, 0.1); |
611 } | 611 } |
612 | 612 |
613 .network-log-grid .network-node-on-initiator-path { | 613 .network-log-grid .network-node-on-initiator-path { |
614 background-color: hsla(120, 68%, 54%, 0.2) !important; | 614 background-color: hsla(120, 68%, 54%, 0.2) !important; |
615 } | 615 } |
616 | 616 |
617 .network-log-grid .network-node-on-initiated-path { | 617 .network-log-grid .network-node-on-initiated-path { |
618 background-color: hsla(0, 68%, 54%, 0.2) !important; | 618 background-color: hsla(0, 68%, 54%, 0.2) !important; |
619 } | 619 } |
| 620 |
| 621 .network-status-pane { |
| 622 color: #777; |
| 623 background-color: white; |
| 624 font-size: 30px; |
| 625 z-index: 500; |
| 626 display: flex; |
| 627 justify-content: center; |
| 628 align-items: center; |
| 629 text-align: center; |
| 630 padding: 0 20px; |
| 631 overflow: auto; |
| 632 } |
| 633 |
| 634 .network-status-pane > .recording-hint { |
| 635 font-size: 14px; |
| 636 text-align: left; |
| 637 } |
OLD | NEW |