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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 } | 103 } |
104 | 104 |
105 .network-log-grid.data-grid .name-column { | 105 .network-log-grid.data-grid .name-column { |
106 cursor: pointer; | 106 cursor: pointer; |
107 } | 107 } |
108 | 108 |
109 .network-log-grid.data-grid .timeline-column { | 109 .network-log-grid.data-grid .timeline-column { |
110 padding: 1px 0; | 110 padding: 1px 0; |
111 } | 111 } |
112 | 112 |
| 113 .network-log-grid.data-grid .timeline-column .sort-order-icon-container { |
| 114 right: 15px; |
| 115 pointer-events: none; |
| 116 } |
| 117 |
113 #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:h
over { | 118 #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:h
over { |
114 text-decoration: underline; | 119 text-decoration: underline; |
115 } | 120 } |
116 | 121 |
117 .network-log-grid.data-grid.small .network-graph-side { | 122 .network-log-grid.data-grid.small .network-graph-side { |
118 height: 19px; | 123 height: 19px; |
119 } | 124 } |
120 | 125 |
121 .network-log-grid.data-grid th.sortable:active { | 126 .network-log-grid.data-grid th.sortable:active { |
122 background-image: none !important; | 127 background-image: none !important; |
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
598 | 603 |
599 #network-container { | 604 #network-container { |
600 overflow-y: auto; | 605 overflow-y: auto; |
601 overflow-x: hidden; | 606 overflow-x: hidden; |
602 } | 607 } |
603 | 608 |
604 /* Brief mode peculiarities. */ | 609 /* Brief mode peculiarities. */ |
605 #network-container.brief-mode .network-timeline-grid { | 610 #network-container.brief-mode .network-timeline-grid { |
606 display: none; | 611 display: none; |
607 } | 612 } |
OLD | NEW |