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

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

Issue 1809773002: DevTools: split platformFontsWidget.css out of elementsPanel.css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 9 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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 } 613 }
614 614
615 .styles-sidebar-pane-filter-box > input { 615 .styles-sidebar-pane-filter-box > input {
616 outline: none !important; 616 outline: none !important;
617 border: none; 617 border: none;
618 width: 100%; 618 width: 100%;
619 background: transparent; 619 background: transparent;
620 margin-left: 4px; 620 margin-left: 4px;
621 } 621 }
622 622
623 .sidebar-pane.composite .platform-fonts {
624 -webkit-user-select: text;
625 }
626
627 .sidebar-pane.composite .platform-fonts .font-name {
628 font-weight: bold;
629 }
630
631 .sidebar-pane.composite .platform-fonts .font-usage {
632 color: #888;
633 padding-left: 3px;
634 }
635
636 .sidebar-pane.composite .platform-fonts .sidebar-separator {
637 height: 24px;
638 background-color: #f1f1f1;
639 border-color: #ddd;
640 display: flex;
641 align-items: center;
642 }
643
644 .sidebar-pane.composite .platform-fonts .stats-section {
645 margin: 5px 0;
646 }
647
648 .sidebar-pane.composite .platform-fonts .font-stats-item {
649 padding-left: 1em;
650 }
651
652 .sidebar-pane.composite .platform-fonts .font-stats-item .font-delimeter {
653 margin: 0 1ex 0 1ex;
654 }
655
656 .sidebar-pane.composite .metrics-and-styles .metrics { 623 .sidebar-pane.composite .metrics-and-styles .metrics {
657 border-bottom: none; 624 border-bottom: none;
658 } 625 }
659 626
660 .sidebar-pane > .split-widget { 627 .sidebar-pane > .split-widget {
661 position: absolute; 628 position: absolute;
662 top: 0; 629 top: 0;
663 bottom: 0; 630 bottom: 0;
664 left: 0; 631 left: 0;
665 right: 0; 632 right: 0;
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 position: absolute; 768 position: absolute;
802 right: 0; 769 right: 0;
803 bottom: 0; 770 bottom: 0;
804 visibility: hidden; 771 visibility: hidden;
805 background-color: rgba(255, 255, 255, 0.9); 772 background-color: rgba(255, 255, 255, 0.9);
806 } 773 }
807 774
808 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar { 775 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar {
809 visibility: visible; 776 visibility: visible;
810 } 777 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698