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

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

Issue 363973002: DevTools: bake generic css files into the concatenated one. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
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 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 .styles-clipboard-only { 728 .styles-clipboard-only {
729 display: inline-block; 729 display: inline-block;
730 width: 0; 730 width: 0;
731 opacity: 0; 731 opacity: 0;
732 pointer-events: none; 732 pointer-events: none;
733 } 733 }
734 734
735 li.child-editing .styles-clipboard-only { 735 li.child-editing .styles-clipboard-only {
736 display: none; 736 display: none;
737 } 737 }
738
739 /* Breadcrumbs */
740
741 .crumbs {
742 display: inline-block;
743 pointer-events: auto;
744 cursor: default;
745 font-size: 11px;
746 line-height: 17px;
747 }
748
749 .crumbs .crumb {
750 display: inline-block;
751 padding: 0 7px;
752 height: 18px;
753 white-space: nowrap;
754 }
755
756 .crumbs .crumb.collapsed > * {
757 display: none;
758 }
759
760 .crumbs .crumb.collapsed::before {
761 content: "\2026";
762 font-weight: bold;
763 }
764
765 .crumbs .crumb.compact .extra {
766 display: none;
767 }
768
769 .crumbs .crumb.selected, .crumbs .crumb.selected:hover {
770 background-color: rgb(56, 121, 217);
771 color: white;
772 text-shadow: rgba(255, 255, 255, 0.5) 0 0 0;
773 }
774
775 .crumbs .crumb:hover {
776 background-color: rgb(216, 216, 216);
777 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698