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

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

Issue 2988223002: config_service: make validation errors more distinguishable (Closed)
Patch Set: Nit: change icon for force refresh 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
« no previous file with comments | « no previous file | appengine/config_service/ui/src/config-ui/config-set-card.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-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 2d846f634f8378ece184465c18b2df070ea208cb..e56cbb1a9f5f1a6860fdd28a406b931a2585f8fe 100644
--- a/appengine/config_service/ui/src/config-ui/config-set.html
+++ b/appengine/config_service/ui/src/config-ui/config-set.html
@@ -113,7 +113,7 @@
</template>
<template is="dom-if" if="[[auth_headers]]">
<iron-icon id="force-refresh"
- icon="icons:refresh"
+ icon="icons:file-download"
on-tap="_forceRefresh">
</iron-icon>
<paper-tooltip for="force-refresh" offset="0">
@@ -126,7 +126,9 @@
<template is="dom-if" if="[[_not(isLoading)]]">
<template is="dom-if" if="[[lastImportAttempt]]">
<template is="dom-if" if="[[_not(lastImportAttempt.success)]]">
- Last import attempt failed: [[lastImportAttempt.message]]
+ <div class="paper-red">
+ Last import attempt failed: [[lastImportAttempt.message]]
+ </div>
</template>
<template is="dom-if" if="[[lastImportAttempt.success]]">
Last import succeeded.
« no previous file with comments | « no previous file | appengine/config_service/ui/src/config-ui/config-set-card.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698