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

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

Issue 2978003002: config_service: add a popup for icons and make cards more compact. (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 side-by-side diff with in-line comments
Download patch
Index: appengine/config_service/ui/src/config-ui/config-set.html
diff --git a/appengine/config_service/ui/src/config-ui/config-set.html b/appengine/config_service/ui/src/config-ui/config-set.html
index 2ae788f3a95a8e3d212033fa3b0c3a6efb9e8c56..ab6bb3c5657e4b0e25e412e6c0bb468240745ca6 100644
--- a/appengine/config_service/ui/src/config-ui/config-set.html
+++ b/appengine/config_service/ui/src/config-ui/config-set.html
@@ -11,6 +11,7 @@
<link rel="import" href="../../bower_components/paper-spinner/paper-spinner.html">
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/iron-icons/maps-icons.html">
+<link rel="import" href="../../bower_components/paper-tooltip/paper-tooltip.html">
<dom-module id="config-set">
<template>
@@ -97,7 +98,13 @@
</template>
</template>
<template is="dom-if" if="[[auth_headers]]">
- <iron-icon icon="icons:refresh" on-tap="_forceRefresh"></iron-icon>
+ <paper-icon-button id="force-refresh"
+ icon="icons:refresh"
+ on-tap="_forceRefresh">
+ </paper-icon-button>
+ <paper-tooltip for="force-refresh" offset="0">
+ Force the config refresh.
+ </paper-tooltip>
</template>
</div>
<div class="category">
@@ -107,6 +114,9 @@
<template is="dom-if" if="[[_not(lastImportAttempt.success)]]">
Last import attempt failed: [[lastImportAttempt.message]]
</template>
+ <template is="dom-if" if="[[lastImportAttempt.success]]">
+ Last import succeeded.
+ </template>
</template>
<template is="dom-if" if="[[_not(lastImportAttempt)]]">
Last import attempt info not available.

Powered by Google App Engine
This is Rietveld 408576698