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

Side by Side Diff: dashboard/dashboard/elements/nav-bar.html

Issue 2995833002: Switch dashboard to new flexbox. (Closed)
Patch Set: Created 3 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
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 <link rel="import" href="/components/iron-icons/iron-icons.html"> 8 <link rel="import" href="/components/iron-icons/iron-icons.html">
9 9
10 <link rel="import" href="/dashboard/static/simple_xhr.html"> 10 <link rel="import" href="/dashboard/static/simple_xhr.html">
(...skipping 13 matching lines...) Expand all
24 font-size: 100%; 24 font-size: 100%;
25 font: inherit; 25 font: inherit;
26 vertical-align: baseline; 26 vertical-align: baseline;
27 z-index: 1000; 27 z-index: 1000;
28 margin-left: -10px; /* Ignore body's padding left. */ 28 margin-left: -10px; /* Ignore body's padding left. */
29 padding-right: 20px; /* Ignore body's padding right. */ 29 padding-right: 20px; /* Ignore body's padding right. */
30 } 30 }
31 31
32 #navbar > ul { 32 #navbar > ul {
33 display: flex; 33 display: flex;
34 display: -webkit-flex;
35 width: 100%; 34 width: 100%;
36 background-color: #2D2D2D; 35 background-color: #2D2D2D;
37 border-bottom: black; 36 border-bottom: black;
38 margin-bottom: 6px; 37 margin-bottom: 6px;
39 } 38 }
40 39
41 #navbar li { 40 #navbar li {
42 padding: 6px 10px; 41 padding: 6px 10px;
43 } 42 }
44 43
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 ' summary?\nShould these alerts be Google-internal?\n'; 321 ' summary?\nShould these alerts be Google-internal?\n';
323 const labels = [ 322 const labels = [
324 'Performance-Dashboard-MonitoringRequest', 323 'Performance-Dashboard-MonitoringRequest',
325 'Restrict-View-Google' 324 'Restrict-View-Google'
326 ]; 325 ];
327 this.openCrBugWindow('Monitoring Request', description, labels, []); 326 this.openCrBugWindow('Monitoring Request', description, labels, []);
328 } 327 }
329 }); 328 });
330 </script> 329 </script>
331 </dom-module> 330 </dom-module>
OLDNEW
« no previous file with comments | « dashboard/dashboard/elements/group-report-page.html ('k') | dashboard/dashboard/elements/speed-releasing-page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698