Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/networkLogView.css

Issue 2400093002: [Devtools] New network timeline experiment Part 1 (Closed)
Patch Set: changes Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 .timelineHeader, .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 .timelineHeader, .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 .timelineHeader.small, .network-log-grid.data-grid.small .header-container {
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
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 .timelineHeader {
dgozman 2016/10/08 00:36:41 .network-timeline-header
allada 2016/10/08 01:09:01 Done.
658 position: absolute;
659 border-left: 0px;
660 width: 100%;
661 display: table;
662 z-index: 200;
663 background-color:transparent;
664 }
665
666 .timelineHeader:hover {
667 background-color:hsla(0, 0%, 80%, .5);
668 }
669
670 .timelineHeader 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 .timelineHeader .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 .timelineHeader .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 .timelineHeader .sort-ascending.sort-order-icon {
701 display: block;
702 background-position: -4px -111px;
703 }
704
705 .timelineHeader .sort-descending.sort-order-icon {
706 display: block;
707 background-position: -20px -99px;
708 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698