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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/sourcesPanel.css

Issue 2157713002: DevTools: introduce View: a named widget with the toolbar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: lcean Created 4 years, 5 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) 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 cursor: pointer; 102 cursor: pointer;
103 } 103 }
104 104
105 .cursor-auto { 105 .cursor-auto {
106 cursor: auto; 106 cursor: auto;
107 } 107 }
108 108
109 .callstack-info { 109 .callstack-info {
110 text-align: center; 110 text-align: center;
111 font-style: italic; 111 font-style: italic;
112 font-size: 90%;
113 padding: 6px; 112 padding: 6px;
114 color: #888; 113 color: #888;
115 pointer-events: none; 114 pointer-events: none;
116 } 115 }
117 116
118 .callstack-info.status { 117 .callstack-info.status {
119 border-top: 1px solid rgb(189, 189, 189); 118 border-top: 1px solid rgb(189, 189, 189);
120 background-color: rgb(255, 255, 194); 119 background-color: rgb(255, 255, 194);
121 } 120 }
122 121
(...skipping 14 matching lines...) Expand all
137 right: 3px; 136 right: 3px;
138 display: none; 137 display: none;
139 } 138 }
140 139
141 .watch-expression-header:hover .watch-expression-delete-button { 140 .watch-expression-header:hover .watch-expression-delete-button {
142 display: inline; 141 display: inline;
143 } 142 }
144 143
145 .watch-expressions { 144 .watch-expressions {
146 overflow-x: hidden; 145 overflow-x: hidden;
147 padding: 3px 6px 6px 0px;
148 } 146 }
149 147
150 .watch-expressions .dimmed { 148 .watch-expressions .dimmed {
151 opacity: 0.6; 149 opacity: 0.6;
152 } 150 }
153 151
154 .watch-expression-title { 152 .watch-expression-title {
155 white-space: nowrap; 153 white-space: nowrap;
156 text-overflow: ellipsis; 154 text-overflow: ellipsis;
157 overflow: hidden; 155 overflow: hidden;
158 line-height: 12px; 156 line-height: 12px;
159 margin-left: 11px; 157 margin-left: 11px;
160 } 158 }
161 159
162 .watch-expression-object-header .watch-expression-title { 160 .watch-expression-object-header .watch-expression-title {
163 margin-left: 1px; 161 margin-left: 1px;
164 } 162 }
165 163
166 .watch-expression { 164 .watch-expression {
167 position: relative; 165 position: relative;
168 padding: 1px 0px 1px 6px; 166 padding: 1px 0px 1px 6px;
169 flex: none; 167 flex: none;
168 min-height: 20px;
170 } 169 }
171 170
172 .watch-expressions .name { 171 .watch-expressions .name {
173 color: rgb(136, 19, 145); 172 color: rgb(136, 19, 145);
174 flex: none; 173 flex: none;
175 white-space: nowrap; 174 white-space: nowrap;
176 text-overflow: ellipsis ; 175 text-overflow: ellipsis ;
177 overflow: hidden; 176 overflow: hidden;
178 } 177 }
179 178
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 .scope-chain-sidebar-pane-section-title { 248 .scope-chain-sidebar-pane-section-title {
250 font-weight: normal; 249 font-weight: normal;
251 word-wrap: break-word; 250 word-wrap: break-word;
252 white-space: normal; 251 white-space: normal;
253 } 252 }
254 253
255 .scope-chain-sidebar-pane-section { 254 .scope-chain-sidebar-pane-section {
256 padding: 2px 4px 2px 4px; 255 padding: 2px 4px 2px 4px;
257 overflow: hidden; 256 overflow: hidden;
258 } 257 }
258
259 .hidden-callframes-message {
260 text-align: center;
261 font-style: italic;
262 padding: 4px;
263 color: #888;
264 background-color: #FFFFC2;
265 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698