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

Unified Diff: appengine/config_service/ui/src/config-ui/config-card.html

Issue 2935763003: config_service: improve landing page (Closed)
Patch Set: Fixed final nits. Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/config_service/ui/index.html ('k') | appengine/config_service/ui/src/config-ui/config-ui.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/config_service/ui/src/config-ui/config-card.html
diff --git a/appengine/config_service/ui/src/config-ui/config-card.html b/appengine/config_service/ui/src/config-ui/config-card.html
new file mode 100644
index 0000000000000000000000000000000000000000..0f679c04b579693e8355ede3136ad5fc6c0b44c8
--- /dev/null
+++ b/appengine/config_service/ui/src/config-ui/config-card.html
@@ -0,0 +1,39 @@
+<!--
+ Copyright 2017 The LUCI Authors. All rights reserved.
+ Use of this source code is governed under the Apache License, Version 2.0
+ that can be found in the LICENSE file.
+-->
+
+<link rel="import" href="../../bower_components/paper-item/paper-item.html">
+<link rel="import" href="../../bower_components/polymer/polymer.html">
+
+<dom-module id="config-card">
+ <template>
+ <style>
+ .center {
+ margin: auto;
+ width: 25%;
+ border-style: solid;
+ border-width: 2px;
+ }
+ </style>
+
+ <paper-item class="center">
+ <!-- TODO(cwpayton): Add launch icon next to the name of the config
+ so that upon clicking the icon, the user will be taken to the config
+ set page. -->
+ [[name]]
+ </paper-item>
+ </template>
+ <script>
+ Polymer({
+ is: "config-card",
+
+ properties: {
+ name: {
+ type: String
+ }
+ }
+ });
+ </script>
+</dom-module>
« no previous file with comments | « appengine/config_service/ui/index.html ('k') | appengine/config_service/ui/src/config-ui/config-ui.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698