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

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

Issue 468223005: DevTools: [Regression] Callstack frames do not have stripes anymore. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 display: block; 1406 display: block;
1407 } 1407 }
1408 1408
1409 .placard { 1409 .placard {
1410 position: relative; 1410 position: relative;
1411 padding: 3px 8px 4px 18px; 1411 padding: 3px 8px 4px 18px;
1412 min-height: 18px; 1412 min-height: 18px;
1413 white-space: nowrap; 1413 white-space: nowrap;
1414 } 1414 }
1415 1415
1416 .placard:nth-of-type(2n) {
1417 background-color: rgb(234, 243, 255);
1418 }
1419
1416 .placard.selected { 1420 .placard.selected {
1417 background-color: rgb(212, 212, 212); 1421 background-color: rgb(212, 212, 212);
1418 background-clip: padding-box; 1422 background-clip: padding-box;
1419 } 1423 }
1420 1424
1421 .placard .title { 1425 .placard .title {
1422 font-weight: normal; 1426 font-weight: normal;
1423 word-wrap: break-word; 1427 word-wrap: break-word;
1424 white-space: normal; 1428 white-space: normal;
1425 } 1429 }
(...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after
2770 } 2774 }
2771 2775
2772 body.inactive select.chrome-select, 2776 body.inactive select.chrome-select,
2773 .chrome-select:disabled { 2777 .chrome-select:disabled {
2774 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 2778 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
2775 border-color: rgba(80, 80, 80, 0.2); 2779 border-color: rgba(80, 80, 80, 0.2);
2776 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 2780 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
2777 inset 0 1px 2px rgba(255, 255, 255, 0.75); 2781 inset 0 1px 2px rgba(255, 255, 255, 0.75);
2778 color: #aaa; 2782 color: #aaa;
2779 } 2783 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698