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

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

Issue 682423002: Devtools Animations: Show subtree animations for a given node (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Collapse animation sections if there are a lot Created 6 years, 1 month 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 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 .swatch-inner { 732 .swatch-inner {
733 width: 100%; 733 width: 100%;
734 height: 100%; 734 height: 100%;
735 display: inline-block; 735 display: inline-block;
736 border: 1px solid rgba(128, 128, 128, 0.6); 736 border: 1px solid rgba(128, 128, 128, 0.6);
737 } 737 }
738 738
739 .swatch-inner:hover { 739 .swatch-inner:hover {
740 border: 1px solid rgba(64, 64, 64, 0.8); 740 border: 1px solid rgba(64, 64, 64, 0.8);
741 } 741 }
742
743 .animationsSettings {
744 padding: 4px;
745 }
746
747 .animationSectionBody {
748 display: none;
749 }
750
751 .animationSectionBody.expanded {
752 display: block;
753 }
754
755 .animationSectionBody .section {
756 border-bottom: 1px solid rgb(191, 191, 191);
757 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698