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

Side by Side Diff: appengine/config_service/ui/src/config-ui/config-ui.html

Issue 2977763002: config_service: Changed lists from paper-items to paper-cards, fixed (Closed)
Patch Set: Fixed nit regarding first letter of sentence in comment. 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 <!-- 1 <!--
2 Copyright 2017 The LUCI Authors. All rights reserved. 2 Copyright 2017 The LUCI Authors. All rights reserved.
3 Use of this source code is governed under the Apache License, Version 2.0 3 Use of this source code is governed under the Apache License, Version 2.0
4 that can be found in the LICENSE file. 4 that can be found in the LICENSE file.
5 --> 5 -->
6 6
7 <link rel="import" href="../../bower_components/polymer/polymer.html"> 7 <link rel="import" href="../../bower_components/polymer/polymer.html">
8 <link rel="import" href="../../bower_components/app-layout/app-layout.html"> 8 <link rel="import" href="../../bower_components/app-layout/app-layout.html">
9 <link rel="import" href="../../bower_components/paper-search/paper-search-bar.ht ml"> 9 <link rel="import" href="../../bower_components/paper-search/paper-search-bar.ht ml">
10 <link rel="import" href="../../bower_components/app-route/app-location.html"> 10 <link rel="import" href="../../bower_components/app-route/app-location.html">
11 <link rel="import" href="../../bower_components/app-route/app-route.html"> 11 <link rel="import" href="../../bower_components/app-route/app-route.html">
12 12
13 <link rel="import" href="../../common/auth-signin.html"> 13 <link rel="import" href="../../common/auth-signin.html">
14 <link rel="import" href="config-set.html"> 14 <link rel="import" href="config-set.html">
15 <link rel="import" href="front-page.html"> 15 <link rel="import" href="front-page.html">
16 16
17 <dom-module id="config-ui"> 17 <dom-module id="config-ui">
18 <template> 18 <template>
19 <style> 19 <style>
20 * { 20 * { font-family: sans-serif; }
21 font-family: sans-serif;
22 }
23 21
24 app-toolbar { 22 app-toolbar {
25 background-color: #efefef; 23 background-color: #efefef;
26 color: #232323; 24 color: #232323;
27 } 25 }
28 26
29 app-header { 27 app-header { @apply --layout-fixed-top; }
30 @apply --layout-fixed-top;
31 }
32 28
33 .logo { 29 .logo { height: 100%; }
34 height: 100%;
35 }
36 30
37 .right { 31 .right { margin-left:15px; }
38 margin-left:15px;
39 }
40 32
41 .title { 33 .title {
42 padding-left: 1%; 34 padding-left: 1%;
43 padding-bottom: 0.5%; 35 padding-bottom: 0.5%;
44 font-size: 150%; 36 font-size: 150%;
45 } 37 }
46 </style> 38 </style>
47 39
48 <app-header reveals> 40 <app-header reveals>
49 <app-toolbar> 41 <app-toolbar>
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 // If the path is blank, redirect to / 115 // If the path is blank, redirect to /
124 if (!this.route.path) { 116 if (!this.route.path) {
125 this.set('route.path', '/'); 117 this.set('route.path', '/');
126 } 118 }
127 }); 119 });
128 }, 120 },
129 121
130 }); 122 });
131 </script> 123 </script>
132 </dom-module> 124 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698