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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 vertical-align: middle; | 64 vertical-align: middle; |
65 } | 65 } |
66 | 66 |
67 .network-log-grid.data-grid.small td { | 67 .network-log-grid.data-grid.small td { |
68 height: 21px; | 68 height: 21px; |
69 } | 69 } |
70 | 70 |
71 .network-log-grid.data-grid th { | 71 .network-log-grid.data-grid th { |
72 border-bottom: 1px solid rgb(205, 205, 205); | 72 border-bottom: 1px solid rgb(205, 205, 205); |
73 border-left: 1px solid rgb(205, 205, 205); | 73 border-left: 1px solid rgb(205, 205, 205); |
74 } | |
75 | |
76 .network-log-grid.data-grid th, | |
77 .network-log-grid.data-grid th.sort-descending, | |
78 .network-log-grid.data-grid th.sort-ascending { | |
79 background: white; | 74 background: white; |
80 } | 75 } |
81 | 76 |
82 .network-log-grid.data-grid .header-container { | 77 .network-log-grid.data-grid .header-container { |
83 height: 31px; | 78 height: 31px; |
84 } | 79 } |
85 | 80 |
86 .network-log-grid.data-grid .data-container { | 81 .network-log-grid.data-grid .data-container { |
87 top: 31px; | 82 top: 31px; |
88 } | 83 } |
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 | 564 |
570 #network-container { | 565 #network-container { |
571 overflow-y: auto; | 566 overflow-y: auto; |
572 overflow-x: hidden; | 567 overflow-x: hidden; |
573 } | 568 } |
574 | 569 |
575 /* Brief mode peculiarities. */ | 570 /* Brief mode peculiarities. */ |
576 #network-container.brief-mode .network-timeline-grid { | 571 #network-container.brief-mode .network-timeline-grid { |
577 display: none; | 572 display: none; |
578 } | 573 } |
579 | |
580 #network-container.brief-mode td, | |
581 #network-container.brief-mode th { | |
582 border-left: none; | |
583 } | |
584 | |
585 #network-container.brief-mode .network-log-grid.data-grid .data-grid-resizer { | |
586 display: none; | |
587 } | |
588 | |
589 #network-container.brief-mode .network-timeline-grid { | |
590 display: none; | |
591 } | |
592 | |
593 #network-container:not(.brief-mode) .data-grid tr.selected { | |
594 background-color: transparent; | |
595 color: #222; | |
596 } | |
597 | |
598 #network-container.brief-mode .data-grid .data-container { | |
599 padding-right: 0; | |
600 } | |
OLD | NEW |