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

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

Issue 1311693004: [DevTools] UI for blocked URLs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 3 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/common/ParsedURL.js ('k') | Source/devtools/front_end/main/Main.js » ('j') | 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 } 246 }
247 247
248 .outline-disclosure ol.children.expanded { 248 .outline-disclosure ol.children.expanded {
249 display: block; 249 display: block;
250 } 250 }
251 251
252 .properties-accessor-property-name { 252 .properties-accessor-property-name {
253 font-style: italic; 253 font-style: italic;
254 } 254 }
255 255
256 .editing {
257 -webkit-user-select: text;
258 box-shadow: rgba(0, 0, 0, .5) 3px 3px 4px;
259 outline: 1px solid rgb(66%, 66%, 66%) !important;
260 background-color: white;
261 -webkit-user-modify: read-write-plaintext-only;
262 text-overflow: clip !important;
263 padding-left: 2px;
264 margin-left: -2px;
265 padding-right: 2px;
266 margin-right: -2px;
267 margin-bottom: -1px;
268 padding-bottom: 1px;
269 opacity: 1.0 !important;
270 }
271
272 .editing,
273 .editing * {
274 color: #222 !important;
275 text-decoration: none !important;
276 }
277
278 .child-editing { 256 .child-editing {
279 color: #222 !important; 257 color: #222 !important;
280 text-decoration: none !important; 258 text-decoration: none !important;
281 overflow: visible !important; 259 overflow: visible !important;
282 } 260 }
283 261
284 .sidebar { 262 .sidebar {
285 overflow-x: hidden; 263 overflow-x: hidden;
286 background-color: #f3f3f3; 264 background-color: #f3f3f3;
287 } 265 }
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 } 606 }
629 607
630 body.inactive select.chrome-select, 608 body.inactive select.chrome-select,
631 .chrome-select:disabled { 609 .chrome-select:disabled {
632 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 610 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
633 border-color: rgba(80, 80, 80, 0.2); 611 border-color: rgba(80, 80, 80, 0.2);
634 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 612 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
635 inset 0 1px 2px rgba(255, 255, 255, 0.75); 613 inset 0 1px 2px rgba(255, 255, 255, 0.75);
636 color: #aaa; 614 color: #aaa;
637 } 615 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/common/ParsedURL.js ('k') | Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698