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

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: 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 .swatch { 636 .swatch {
661 background-image: url(Images/checker.png); 637 background-image: url(Images/checker.png);
662 } 638 }
663 639
664 li.child-editing .styles-clipboard-only { 640 li.child-editing .styles-clipboard-only {
665 display: none; 641 display: none;
666 } 642 }
667 643
668 li.editing .swatch, 644 li.editing .swatch,
669 li.editing .enabled-button { 645 li.editing .enabled-button {
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 position: absolute; 737 position: absolute;
762 right: 0; 738 right: 0;
763 bottom: 0; 739 bottom: 0;
764 visibility: hidden; 740 visibility: hidden;
765 background-color: rgba(255, 255, 255, 0.9); 741 background-color: rgba(255, 255, 255, 0.9);
766 } 742 }
767 743
768 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar { 744 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar {
769 visibility: visible; 745 visibility: visible;
770 } 746 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698