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

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

Issue 2207283002: DevTools: make sidebar section headers wider. (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
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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 padding: 6px; 112 padding: 6px;
113 color: #888; 113 color: #888;
114 pointer-events: none; 114 pointer-events: none;
115 display: flex;
116 align-items: center;
117 justify-content: center;
115 } 118 }
116 119
117 .callstack-info.status { 120 .callstack-info.status {
118 border-top: 1px solid rgb(189, 189, 189); 121 border-top: 1px solid rgb(189, 189, 189);
119 background-color: rgb(255, 255, 194); 122 background-color: rgb(255, 255, 194);
120 } 123 }
121 124
122 .-theme-with-dark-background .callstack-info.status { 125 .-theme-with-dark-background .callstack-info.status {
123 background-color: hsl(46, 98%, 22%); 126 background-color: hsl(46, 98%, 22%);
124 color: #ccc; 127 color: #ccc;
125 } 128 }
126 129
127 .watch-expression-delete-button { 130 .watch-expression-delete-button {
128 width: 10px; 131 width: 10px;
129 height: 10px; 132 height: 10px;
130 background-image: url(Images/deleteIcon.png); 133 background-image: url(Images/deleteIcon.png);
131 background-position: 0 0; 134 background-position: 0 0;
132 background-color: transparent; 135 background-color: transparent;
133 background-repeat: no-repeat; 136 background-repeat: no-repeat;
134 border: 0 none transparent; 137 border: 0 none transparent;
135 position: absolute; 138 position: absolute;
139 top: 4px;
136 right: 3px; 140 right: 3px;
137 display: none; 141 display: none;
138 } 142 }
139 143
140 .watch-expression-header:hover .watch-expression-delete-button { 144 .watch-expression-header:hover .watch-expression-delete-button {
141 display: inline; 145 display: inline;
142 } 146 }
143 147
144 .watch-expressions { 148 .watch-expressions {
145 overflow-x: hidden; 149 overflow-x: hidden;
150 min-height: 26px;
146 } 151 }
147 152
148 .watch-expressions .dimmed { 153 .watch-expressions .dimmed {
149 opacity: 0.6; 154 opacity: 0.6;
150 } 155 }
151 156
152 .watch-expression-title { 157 .watch-expression-title {
153 white-space: nowrap; 158 white-space: nowrap;
154 text-overflow: ellipsis; 159 text-overflow: ellipsis;
155 overflow: hidden; 160 overflow: hidden;
156 line-height: 12px; 161 line-height: 16px;
157 margin-left: 11px; 162 margin-left: 11px;
158 } 163 }
159 164
160 .watch-expression-object-header .watch-expression-title { 165 .watch-expression-object-header .watch-expression-title {
161 margin-left: 1px; 166 margin-left: 1px;
162 } 167 }
163 168
164 .watch-expression { 169 .watch-expression {
165 position: relative; 170 position: relative;
166 padding: 1px 0px 1px 6px; 171 padding: 1px 0px 1px 6px;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 padding: 2px 4px 2px 4px; 256 padding: 2px 4px 2px 4px;
252 } 257 }
253 258
254 .hidden-callframes-message { 259 .hidden-callframes-message {
255 text-align: center; 260 text-align: center;
256 font-style: italic; 261 font-style: italic;
257 padding: 4px; 262 padding: 4px;
258 color: #888; 263 color: #888;
259 background-color: #FFFFC2; 264 background-color: #FFFFC2;
260 } 265 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698