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

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: 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 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 .swatch-inner { 688 .swatch-inner {
689 width: 100%; 689 width: 100%;
690 height: 100%; 690 height: 100%;
691 display: inline-block; 691 display: inline-block;
692 border: 1px solid rgba(128, 128, 128, 0.6); 692 border: 1px solid rgba(128, 128, 128, 0.6);
693 } 693 }
694 694
695 .swatch-inner:hover { 695 .swatch-inner:hover {
696 border: 1px solid rgba(64, 64, 64, 0.8); 696 border: 1px solid rgba(64, 64, 64, 0.8);
697 } 697 }
698
699 .animationsSettings {
700 padding: 4px;
701 }
702
703 .animationSectionBody {
704 display: none;
705 }
706
707 .animationSectionBody.expanded {
708 display: block;
709 }
710
711 .animationSectionBody .section {
712 border-bottom: 1px solid rgb(191, 191, 191);
713 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/StylesSidebarPane.js ('k') | Source/devtools/front_end/sdk/AnimationModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698