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

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

Issue 22875023: DevTools: Front-end for platform font inspection (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebasing onto a protocol Created 7 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 | 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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 534
535 .image-preview-container img { 535 .image-preview-container img {
536 margin: 2px auto; 536 margin: 2px auto;
537 max-width: 100px; 537 max-width: 100px;
538 max-height: 100px; 538 max-height: 100px;
539 background-image: url(Images/checker.png); 539 background-image: url(Images/checker.png);
540 -webkit-user-select: text; 540 -webkit-user-select: text;
541 -webkit-user-drag: auto; 541 -webkit-user-drag: auto;
542 } 542 }
543 543
544
545 .sidebar-pane.composite { 544 .sidebar-pane.composite {
546 overflow: hidden; 545 overflow: hidden;
547 position: absolute; 546 position: absolute;
548 } 547 }
549 548
550 .sidebar-pane.composite > .body { 549 .sidebar-pane.composite > .body {
551 height: 100%; 550 height: 100%;
552 } 551 }
553 552
554 .sidebar-pane.composite .metrics { 553 .sidebar-pane.composite .metrics {
555 border-bottom: 1px solid rgb(64%, 64%, 64%); 554 border-bottom: 1px solid rgb(64%, 64%, 64%);
556 height: 206px; 555 height: 206px;
557 display: -webkit-flex; 556 display: -webkit-flex;
558 -webkit-flex-direction: column; 557 -webkit-flex-direction: column;
559 -webkit-align-items: center; 558 -webkit-align-items: center;
560 -webkit-justify-content: center; 559 -webkit-justify-content: center;
561 } 560 }
562 561
562 .sidebar-pane.composite .computed-style {
563 border-bottom: 1px solid rgb(64%, 64%, 64%);
564 }
565
563 .sidebar-pane.composite .metrics-and-computed .sidebar-pane-toolbar { 566 .sidebar-pane.composite .metrics-and-computed .sidebar-pane-toolbar {
564 margin-top: 4px; 567 margin-top: 4px;
565 margin-bottom: -4px; 568 margin-bottom: -4px;
566 position: relative; 569 position: relative;
567 } 570 }
568 571
572 .sidebar-pane.composite .platform-fonts {
573 padding: 1ex;
574 -webkit-user-select: text;
575 }
576
577 .sidebar-pane.composite .platform-fonts .stats-section {
578 margin-bottom: 5px;
579 }
580
581 .sidebar-pane.composite .platform-fonts .css-font-value {
582 margin-left: 1ex;
583 }
584
585 .sidebar-pane.composite .platform-fonts .font-stats-item {
586 padding-left: 1em;
587 }
588
589 .sidebar-pane.composite .platform-fonts .font-stats-item .delimeter {
590 margin: 0px 1ex 0px 1ex;
aandrey 2013/08/22 13:05:35 0px -> 0
lushnikov 2013/08/22 14:52:39 Done.
591 }
592
569 .sidebar-pane.composite .sidebar-pane-toolbar > .sidebar-pane-subtitle { 593 .sidebar-pane.composite .sidebar-pane-toolbar > .sidebar-pane-subtitle {
570 left: 8px; 594 left: 8px;
571 } 595 }
572 596
573 .sidebar-pane.composite .styles-section.read-only { 597 .sidebar-pane.composite .styles-section.read-only {
574 background-color: inherit; 598 background-color: inherit;
575 } 599 }
576 600
577 .panel.elements .sidebar-pane-toolbar > select { 601 .panel.elements .sidebar-pane-toolbar > select {
578 float: right; 602 float: right;
(...skipping 28 matching lines...) Expand all
607 .panel.elements .sidebar-pane-toolbar > select > hr { 631 .panel.elements .sidebar-pane-toolbar > select > hr {
608 color: black; 632 color: black;
609 } 633 }
610 634
611 .styles-section:not(.read-only) .properties .webkit-css-property.styles-panel-ho vered, 635 .styles-section:not(.read-only) .properties .webkit-css-property.styles-panel-ho vered,
612 .styles-section:not(.read-only) .properties .value .styles-panel-hovered, 636 .styles-section:not(.read-only) .properties .value .styles-panel-hovered,
613 .styles-section:not(.read-only) .properties .value.styles-panel-hovered { 637 .styles-section:not(.read-only) .properties .value.styles-panel-hovered {
614 text-decoration: underline; 638 text-decoration: underline;
615 cursor: default; 639 cursor: default;
616 } 640 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698