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

Unified Diff: appengine/config_service/ui/src/config-ui/front-page.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/front-page.html
diff --git a/appengine/config_service/ui/src/config-ui/front-page.html b/appengine/config_service/ui/src/config-ui/front-page.html
index b7d31a9c9827edac319b2eb3557510df83087874..4caa89b1af57d748cb25f35a502ed876edb02e00 100644
--- a/appengine/config_service/ui/src/config-ui/front-page.html
+++ b/appengine/config_service/ui/src/config-ui/front-page.html
@@ -39,6 +39,12 @@
padding-bottom: 2%;
}
+ .name {
+ font-family: sans-serif;
+ word-wrap: break-word;
+ text-align: center;
+ }
+
paper-search-bar {
@apply --shadow-elevation-4dp;
width: 40%;
@@ -70,7 +76,7 @@
</template>
<template is="dom-if" if="[[_not(isLoading)]]">
<template is="dom-if" if="[[_isEmpty(searchResults)]]">
- <div class="center">No config sets found.</div>
+ <div class="center name">No config sets found.</div>
</template>
<template is="dom-if" if="[[_not(_isEmpty(searchResults))]]">
<template is="dom-repeat" items="[[searchResults]]" as="config">

Powered by Google App Engine
This is Rietveld 408576698