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

Side by Side Diff: Source/devtools/front_end/sourcesPanel.css

Issue 102003006: Make pause-on-exceptions toggle/tri-state button. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed comment Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/StatusBarButton.js ('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 13 matching lines...) Expand all
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30 .scripts-pause-on-exceptions-status-bar-item .glyph { 30 .scripts-pause-on-exceptions-status-bar-item .glyph {
31 -webkit-mask-position: -256px 0; 31 -webkit-mask-position: -256px 0;
32 } 32 }
33 33
34 .scripts-pause-on-exceptions-status-bar-item.toggled-all .glyph { 34 .scripts-pause-on-exceptions-status-bar-item.toggled-uncaught .glyph {
35 background-color: rgb(66, 129, 235); 35 background-color: rgb(66, 129, 235);
36 } 36 }
37 37
38 .scripts-pause-on-exceptions-status-bar-item.toggled-uncaught .glyph { 38 .scripts-pause-on-exceptions-status-bar-item.toggled-all .glyph {
39 background-color: purple; 39 background-color: purple;
40 } 40 }
41 41
42 .evaluate-snippet-status-bar-item .glyph { 42 .evaluate-snippet-status-bar-item .glyph {
43 -webkit-mask-position: -64px -48px; 43 -webkit-mask-position: -64px -48px;
44 } 44 }
45 45
46 .evaluate-snippet-status-bar-item.toggled .glyph { 46 .evaluate-snippet-status-bar-item.toggled .glyph {
47 background-color: rgb(66, 129, 235); 47 background-color: rgb(66, 129, 235);
48 } 48 }
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 top: 2px; 240 top: 2px;
241 right: 17px; 241 right: 17px;
242 } 242 }
243 243
244 .sources-status-bar .scripts-debugger-show-hide-button { 244 .sources-status-bar .scripts-debugger-show-hide-button {
245 margin-top: 1px !important; 245 margin-top: 1px !important;
246 height: 16px !important; 246 height: 16px !important;
247 -webkit-transform: rotate(90deg); 247 -webkit-transform: rotate(90deg);
248 right: 0 !important; 248 right: 0 !important;
249 } 249 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/StatusBarButton.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698