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

Side by Side Diff: dashboard/dashboard/elements/chart-tooltip.html

Issue 2959503002: Enable Polymer.Settings.useNativeShadow on the dashboard. (Closed)
Patch Set: Created 3 years, 5 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright 2016 The Chromium Authors. All rights reserved. 3 Copyright 2016 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 <!-- 7 <!--
8 The chart-tooltip element is the box that is shown when you hover over or click 8 The chart-tooltip element is the box that is shown when you hover over or click
9 on a point on a graph. It shows more detailed information about the point that 9 on a point on a graph. It shows more detailed information about the point that
10 was just clicked. 10 was just clicked.
(...skipping 25 matching lines...) Expand all
36 36
37 #close-button { 37 #close-button {
38 float: right; 38 float: right;
39 } 39 }
40 </style> 40 </style>
41 41
42 <template> 42 <template>
43 <dialog-container id="container"> 43 <dialog-container id="container">
44 <triage-dialog id="triage" 44 <triage-dialog id="triage"
45 xsrf-token="{{xsrfToken}}" 45 xsrf-token="{{xsrfToken}}"
46 hidden$="{{!alerts}}"
46 alerts="{{alerts}}"></triage-dialog> 47 alerts="{{alerts}}"></triage-dialog>
47 <paper-card id="tooltip" alwaysOnTop elevation=4> 48 <paper-card id="tooltip" alwaysOnTop elevation=4>
48 <style> 49 <style>
49 #test-name { 50 #test-name {
50 word-wrap: break-word; 51 word-wrap: break-word;
51 } 52 }
52 53
53 div:not(:last-of-type) { 54 div:not(:last-of-type) {
54 margin-bottom: 15px; 55 margin-bottom: 15px;
55 } 56 }
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 247
247 bugNotInvalid(bugId) { 248 bugNotInvalid(bugId) {
248 return bugId != -1; 249 return bugId != -1;
249 }, 250 },
250 bugNotIgnored(bugId) { 251 bugNotIgnored(bugId) {
251 return bugId != -2; 252 return bugId != -2;
252 } 253 }
253 }); 254 });
254 </script> 255 </script>
255 </dom-module> 256 </dom-module>
OLDNEW
« no previous file with comments | « dashboard/dashboard/elements/chart-legend-tooltip-test.html ('k') | dashboard/dashboard/static/group_report.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698