| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 line-height: 17px; | 69 line-height: 17px; |
| 70 height: 41px; | 70 height: 41px; |
| 71 border-left: 1px solid #e1e1e1; | 71 border-left: 1px solid #e1e1e1; |
| 72 vertical-align: middle; | 72 vertical-align: middle; |
| 73 } | 73 } |
| 74 | 74 |
| 75 .network-log-grid.data-grid.small td { | 75 .network-log-grid.data-grid.small td { |
| 76 height: 21px; | 76 height: 21px; |
| 77 } | 77 } |
| 78 | 78 |
| 79 .network-log-grid.data-grid th { | 79 .network-timeline-header, .network-log-grid.data-grid th { |
| 80 border-bottom: 1px solid rgb(205, 205, 205); | 80 border-bottom: 1px solid rgb(205, 205, 205); |
| 81 border-left: 1px solid rgb(205, 205, 205); | 81 border-left: 1px solid rgb(205, 205, 205); |
| 82 background: white; | 82 background: white; |
| 83 } | 83 } |
| 84 | 84 |
| 85 .network-log-grid.data-grid .header-container { | 85 .network-timeline-header, .network-log-grid.data-grid .header-container { |
| 86 height: 31px; | 86 height: 31px; |
| 87 } | 87 } |
| 88 | 88 |
| 89 .network-log-grid.data-grid .data-container { | 89 .network-log-grid.data-grid .data-container { |
| 90 top: 31px; | 90 top: 31px; |
| 91 } | 91 } |
| 92 | 92 |
| 93 .network-log-grid.data-grid.small .header-container { | 93 .network-timeline-header.small, .network-log-grid.data-grid.small .header-contai
ner { |
| 94 height: 27px; | 94 height: 27px; |
| 95 } | 95 } |
| 96 | 96 |
| 97 .network-log-grid.data-grid.small .data-container { | 97 .network-log-grid.data-grid.small .data-container { |
| 98 top: 27px; | 98 top: 27px; |
| 99 } | 99 } |
| 100 | 100 |
| 101 .network-log-grid.data-grid select { | 101 .network-log-grid.data-grid select { |
| 102 -webkit-appearance: none; | 102 -webkit-appearance: none; |
| 103 background-color: transparent; | 103 background-color: transparent; |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 text-align: center; | 646 text-align: center; |
| 647 padding: 0 20px; | 647 padding: 0 20px; |
| 648 overflow: auto; | 648 overflow: auto; |
| 649 } | 649 } |
| 650 | 650 |
| 651 .network-status-pane > .recording-hint { | 651 .network-status-pane > .recording-hint { |
| 652 font-size: 14px; | 652 font-size: 14px; |
| 653 text-align: center; | 653 text-align: center; |
| 654 line-height: 28px; | 654 line-height: 28px; |
| 655 } | 655 } |
| 656 |
| 657 .network-timeline-header { |
| 658 position: absolute; |
| 659 border-left: 0px; |
| 660 width: 100%; |
| 661 display: table; |
| 662 z-index: 200; |
| 663 background-color:transparent; |
| 664 } |
| 665 |
| 666 .network-timeline-header:hover { |
| 667 background-color:hsla(0, 0%, 80%, .5); |
| 668 } |
| 669 |
| 670 .network-timeline-header div { |
| 671 display: table-cell; |
| 672 line-height: 14px; |
| 673 margin: auto 0px; |
| 674 vertical-align: middle; |
| 675 text-align: left; |
| 676 font-weight: normal; |
| 677 padding: 0px 4px; |
| 678 font-size: 11px; |
| 679 } |
| 680 |
| 681 .network-timeline-header .sort-order-icon-container { |
| 682 position: absolute; |
| 683 top: 1px; |
| 684 right: 0; |
| 685 bottom: 1px; |
| 686 display: flex; |
| 687 align-items: center; |
| 688 } |
| 689 |
| 690 .network-timeline-header .sort-order-icon { |
| 691 margin-right: 4px; |
| 692 background-image: url(Images/toolbarButtonGlyphs.png); |
| 693 background-size: 352px 168px; |
| 694 opacity: 0.5; |
| 695 width: 8px; |
| 696 height: 7px; |
| 697 display: none; |
| 698 } |
| 699 |
| 700 .network-timeline-header .sort-ascending.sort-order-icon { |
| 701 display: block; |
| 702 background-position: -4px -111px; |
| 703 } |
| 704 |
| 705 .network-timeline-header .sort-descending.sort-order-icon { |
| 706 display: block; |
| 707 background-position: -20px -99px; |
| 708 } |
| OLD | NEW |