| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 } | 87 } |
| 88 | 88 |
| 89 .network-log-grid.data-grid.small .header-container { | 89 .network-log-grid.data-grid.small .header-container { |
| 90 height: 23px; | 90 height: 23px; |
| 91 } | 91 } |
| 92 | 92 |
| 93 .network-log-grid.data-grid.small .data-container { | 93 .network-log-grid.data-grid.small .data-container { |
| 94 top: 23px; | 94 top: 23px; |
| 95 } | 95 } |
| 96 | 96 |
| 97 .network-log-grid.data-grid select { | |
| 98 -webkit-appearance: none; | |
| 99 background-color: transparent; | |
| 100 border: none; | |
| 101 width: 100%; | |
| 102 color: inherit; | |
| 103 } | |
| 104 | |
| 105 .network-log-grid.data-grid .name-column { | 97 .network-log-grid.data-grid .name-column { |
| 106 cursor: pointer; | 98 cursor: pointer; |
| 107 } | 99 } |
| 108 | 100 |
| 109 .network-log-grid.data-grid .timeline-column { | 101 .network-log-grid.data-grid td.timeline-column { |
| 110 padding: 1px 0; | 102 padding: 1px 0; |
| 111 } | 103 } |
| 112 | 104 |
| 113 #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:h
over { | 105 #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:h
over { |
| 114 text-decoration: underline; | 106 text-decoration: underline; |
| 115 } | 107 } |
| 116 | 108 |
| 117 .network-log-grid.data-grid.small .network-graph-side { | 109 .network-log-grid.data-grid.small .network-graph-side { |
| 118 height: 19px; | 110 height: 19px; |
| 119 } | 111 } |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 | 577 |
| 586 #network-container { | 578 #network-container { |
| 587 overflow-y: auto; | 579 overflow-y: auto; |
| 588 overflow-x: hidden; | 580 overflow-x: hidden; |
| 589 } | 581 } |
| 590 | 582 |
| 591 /* Brief mode peculiarities. */ | 583 /* Brief mode peculiarities. */ |
| 592 #network-container.brief-mode .network-timeline-grid { | 584 #network-container.brief-mode .network-timeline-grid { |
| 593 display: none; | 585 display: none; |
| 594 } | 586 } |
| OLD | NEW |