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

Side by Side Diff: chrome/browser/resources/net_internals/timeline_view.css

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: CSSOM Created 4 years 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 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #timeline-view-selection-div { 5 #timeline-view-selection-div {
6 display: inline-block; 6 display: inline-block;
7 overflow-y: auto; 7 overflow-y: auto;
8 } 8 }
9 9
10 #timeline-view-selection-toggle { 10 #timeline-view-selection-toggle {
11 background-color: #fff; 11 background-color: #fff;
12 background-image: url(chrome://resources/images/select.png); 12 background-image: url(chrome://resources/images/select.png);
13 border: none; 13 border: none;
14 height: 8px; 14 height: 8px;
15 padding: none; 15 padding: none;
16 width: 19px; 16 width: 19px;
17 } 17 }
18 18
19 .timeline-view-rotateleft { 19 .timeline-view-rotateleft {
20 -webkit-transform: rotate(90deg); 20 transform: rotate(90deg);
21 } 21 }
22 22
23 .timeline-view-rotateright { 23 .timeline-view-rotateright {
24 -webkit-transform: rotate(270deg); 24 transform: rotate(270deg);
25 } 25 }
26 26
27 #timeline-view-selection-div ul { 27 #timeline-view-selection-div ul {
28 margin-top: 0; 28 margin-top: 0;
29 padding-left: 10px; 29 padding-left: 10px;
30 } 30 }
31 31
32 #timeline-view-selection-div li { 32 #timeline-view-selection-div li {
33 list-style: none; 33 list-style: none;
34 white-space: nowrap; 34 white-space: nowrap;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 } 85 }
86 86
87 #timeline-view-scrollbar-div { 87 #timeline-view-scrollbar-div {
88 overflow-x: scroll; 88 overflow-x: scroll;
89 overflow-y: hidden; 89 overflow-y: hidden;
90 } 90 }
91 91
92 #timeline-view-scrollbar-inner-div { 92 #timeline-view-scrollbar-inner-div {
93 height: 1px; 93 height: 1px;
94 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698