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

Side by Side Diff: tracing/tracing/ui/extras/about_tracing/record_selection_dialog.html

Issue 2382443002: [tracing] Stop categories text overlapping record options UI
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2013 The Chromium Authors. All rights reserved. 3 Copyright (c) 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <link rel="import" href="/tracing/core/filter.html"> 7 <link rel="import" href="/tracing/core/filter.html">
8 <link rel="import" href="/tracing/ui/base/dom_helpers.html"> 8 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
9 <link rel="import" href="/tracing/ui/base/info_bar_group.html"> 9 <link rel="import" href="/tracing/ui/base/info_bar_group.html">
10 <link rel="import" href="/tracing/ui/base/overlay.html"> 10 <link rel="import" href="/tracing/ui/base/overlay.html">
(...skipping 26 matching lines...) Expand all
37 -webkit-flex-direction: row; 37 -webkit-flex-direction: row;
38 } 38 }
39 39
40 .category-presets { 40 .category-presets {
41 padding: 4px; 41 padding: 4px;
42 } 42 }
43 43
44 .category-description { 44 .category-description {
45 color: #aaa; 45 color: #aaa;
46 font-size: small; 46 font-size: small;
47 max-height: 1em;
48 opacity: 1; 47 opacity: 1;
49 padding-left: 4px; 48 padding-left: 4px;
50 padding-right: 4px; 49 padding-right: 4px;
51 text-align: right; 50 text-align: right;
52 transition: max-height 1s ease, opacity 1s ease; 51 transition: max-height 1s ease, opacity 1s ease;
53 will-change: opacity; 52 will-change: opacity;
54 } 53 }
55 54
56 .category-description-hidden { 55 .category-description-hidden {
57 max-height: 0; 56 max-height: 0;
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 } 681 }
683 warningLink.onclick = onClickHandler.bind(this); 682 warningLink.onclick = onClickHandler.bind(this);
684 } 683 }
685 }; 684 };
686 685
687 return { 686 return {
688 RecordSelectionDialog: RecordSelectionDialog 687 RecordSelectionDialog: RecordSelectionDialog
689 }; 688 };
690 }); 689 });
691 </script> 690 </script>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698