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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/elements/elementsPanel.css

Issue 2237663002: DevTools: Use png icon for bezier editor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Inline _createDOM function 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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 } 626 }
627 627
628 .styles-clipboard-only { 628 .styles-clipboard-only {
629 display: inline-block; 629 display: inline-block;
630 width: 0; 630 width: 0;
631 opacity: 0; 631 opacity: 0;
632 pointer-events: none; 632 pointer-events: none;
633 white-space: pre; 633 white-space: pre;
634 } 634 }
635 635
636 .popover-icon {
637 margin-left: 1px;
638 margin-right: 2px;
639 width: 10px;
640 height: 10px;
641 position: relative;
642 top: 1px;
643 display: inline-block;
644 line-height: 1px;
645 -webkit-user-select: none;
646 }
647
648 .bezier-icon {
649 background-color: #9C27B0;
650 border-radius: 2px;
651 }
652
653 .bezier-icon path {
654 stroke: white;
655 stroke-width: 1.5;
656 stroke-linecap: square;
657 fill: none;
658 }
659
660 li.child-editing .styles-clipboard-only { 636 li.child-editing .styles-clipboard-only {
661 display: none; 637 display: none;
662 } 638 }
663 639
664 li.editing .enabled-button { 640 li.editing .enabled-button {
665 display: none !important; 641 display: none !important;
666 } 642 }
667 643
668 .sidebar-separator { 644 .sidebar-separator {
669 background-color: #ddd; 645 background-color: #ddd;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 position: absolute; 721 position: absolute;
746 right: 0; 722 right: 0;
747 bottom: 0; 723 bottom: 0;
748 visibility: hidden; 724 visibility: hidden;
749 background-color: rgba(255, 255, 255, 0.9); 725 background-color: rgba(255, 255, 255, 0.9);
750 } 726 }
751 727
752 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar { 728 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar {
753 visibility: visible; 729 visibility: visible;
754 } 730 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698