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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/viewContainers.css

Issue 2222233002: DevTools: style selected call frames as arrows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/smallIcon.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 17 matching lines...) Expand all
28 */ 28 */
29 29
30 .sidebar-hidden-override { 30 .sidebar-hidden-override {
31 display: none !important; 31 display: none !important;
32 } 32 }
33 33
34 .expandable-view-title { 34 .expandable-view-title {
35 display: flex; 35 display: flex;
36 align-items: center; 36 align-items: center;
37 background-color: #eee; 37 background-color: #eee;
38 height: 26px; 38 height: 22px;
39 padding: 0 5px; 39 padding: 0 5px;
40 border-top: 1px solid #dadada; 40 border-top: 1px solid #dadada;
41 white-space: nowrap; 41 white-space: nowrap;
42 overflow: hidden; 42 overflow: hidden;
43 position: relative; 43 position: relative;
44 border-bottom: 1px solid transparent; 44 border-bottom: 1px solid transparent;
45 } 45 }
46 46
47 .expandable-view-title.expanded, 47 .expandable-view-title.expanded,
48 .expandable-view-title:last-child { 48 .expandable-view-title:last-child {
49 border-bottom: 1px solid #ddd; 49 border-bottom: 1px solid #ddd;
50 } 50 }
51 51
52 .expandable-view-title .toolbar {
53 margin-top: -3px;
54 }
55
52 .expandable-view-title:not(.expanded) .toolbar { 56 .expandable-view-title:not(.expanded) .toolbar {
53 display: none; 57 display: none;
54 } 58 }
55 59
56 .expandable-view-title::before { 60 .expandable-view-title::before {
57 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 61 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
58 -webkit-mask-size: 352px 168px; 62 -webkit-mask-size: 352px 168px;
59 background-color: #888; 63 background-color: #888;
60 float: left; 64 float: left;
61 width: 11px; 65 width: 11px;
(...skipping 24 matching lines...) Expand all
86 top: 0; 90 top: 0;
87 } 91 }
88 92
89 .sidebar-pane-container .toolbar { 93 .sidebar-pane-container .toolbar {
90 border-bottom: 1px solid #eee; 94 border-bottom: 1px solid #eee;
91 } 95 }
92 96
93 .sidebar-pane-container .toolbar > * { 97 .sidebar-pane-container .toolbar > * {
94 pointer-events: auto; 98 pointer-events: auto;
95 } 99 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/smallIcon.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698