OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |