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

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

Issue 15962010: Indent media queries in CSS files for the DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Don't indent media queries but leave a comment explaining where the closing brace for media queries… Created 7 years, 7 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 .data-grid { 1 .data-grid {
2 position: relative; 2 position: relative;
3 border: 1px solid #aaa; 3 border: 1px solid #aaa;
4 font-size: 11px; 4 font-size: 11px;
5 line-height: 120%; 5 line-height: 120%;
6 } 6 }
7 7
8 .data-grid .highlight { 8 .data-grid .highlight {
9 background-color: rgb(255, 230, 179); 9 background-color: rgb(255, 230, 179);
10 } 10 }
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 height: 10px; 161 height: 10px;
162 content: "a"; 162 content: "a";
163 color: transparent; 163 color: transparent;
164 } 164 }
165 165
166 @media (-webkit-min-device-pixel-ratio: 1.5) { 166 @media (-webkit-min-device-pixel-ratio: 1.5) {
167 .data-grid th.sort-ascending > div::after, 167 .data-grid th.sort-ascending > div::after,
168 .data-grid th.sort-descending > div::after { 168 .data-grid th.sort-descending > div::after {
169 background-image: url(Images/statusbarButtonGlyphs2x.png); 169 background-image: url(Images/statusbarButtonGlyphs2x.png);
170 } 170 }
171 } 171 } /* media */
172 172
173 .data-grid th.sort-ascending > div::after { 173 .data-grid th.sort-ascending > div::after {
174 background-position: -4px -108px; 174 background-position: -4px -108px;
175 } 175 }
176 176
177 .data-grid th.sort-descending > div::after { 177 .data-grid th.sort-descending > div::after {
178 background-position: -20px -96px; 178 background-position: -20px -96px;
179 } 179 }
180 180
181 .data-grid button { 181 .data-grid button {
(...skipping 23 matching lines...) Expand all
205 205
206 .data-grid tr.parent td.disclosure::before { 206 .data-grid tr.parent td.disclosure::before {
207 background-color: rgb(110, 110, 110); 207 background-color: rgb(110, 110, 110);
208 -webkit-mask-position: -4px -96px; 208 -webkit-mask-position: -4px -96px;
209 } 209 }
210 210
211 @media (-webkit-min-device-pixel-ratio: 1.5) { 211 @media (-webkit-min-device-pixel-ratio: 1.5) {
212 .data-grid tr.parent td.disclosure::before { 212 .data-grid tr.parent td.disclosure::before {
213 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png); 213 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png);
214 } 214 }
215 } 215 } /* media */
216 216
217 .data-grid tr.expanded td.disclosure::before { 217 .data-grid tr.expanded td.disclosure::before {
218 -webkit-mask-position: -20px -96px; 218 -webkit-mask-position: -20px -96px;
219 } 219 }
220 220
221 .data-grid tr.selected { 221 .data-grid tr.selected {
222 background-color: rgb(212, 212, 212); 222 background-color: rgb(212, 212, 212);
223 color: inherit; 223 color: inherit;
224 } 224 }
225 225
(...skipping 21 matching lines...) Expand all
247 } 247 }
248 248
249 .data-grid-resizer { 249 .data-grid-resizer {
250 position: absolute; 250 position: absolute;
251 top: 0; 251 top: 0;
252 bottom: 0; 252 bottom: 0;
253 width: 5px; 253 width: 5px;
254 z-index: 500; 254 z-index: 500;
255 cursor: col-resize; 255 cursor: col-resize;
256 } 256 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698