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

Unified Diff: chrome/browser/resources/print_preview/search/destination_search.css

Issue 587013003: Add Print Preview UI to accept and reject printer sharing invitations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: chrome/browser/resources/print_preview/search/destination_search.css
diff --git a/chrome/browser/resources/print_preview/search/destination_search.css b/chrome/browser/resources/print_preview/search/destination_search.css
index 6b3943ed0865e94df9c75cd59771bc4eb3f074bc..c2f0bacc563a719ea047f57248e9870834a54194 100644
--- a/chrome/browser/resources/print_preview/search/destination_search.css
+++ b/chrome/browser/resources/print_preview/search/destination_search.css
@@ -64,6 +64,41 @@
padding: 0 14px 18px;
}
+#destination-search .invitation-container {
+ -webkit-animation: invitation-fadein 500ms;
+ background-color: rgb(249, 237, 190);
+ border-top: solid 1px rgb(245, 233, 183);
+ padding: 12px;
+}
+
+@-webkit-keyframes invitation-fadein {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+
+#destination-search .invitation-text {
+ -webkit-padding-after: 12px;
+ text-align: center;
+}
+
+#destination-search .invitation-buttons {
+ align-items: center;
+ display: flex;
+ justify-content: center;
+}
+
+#destination-search .invitation-buttons > *:not(:first-child) {
+ -webkit-margin-start: 10px;
+}
+
+#destination-search #invitation-process-throbber {
+ display: block;
+}
+
#destination-search .cloudprint-promo {
-webkit-box-align: center;
-webkit-user-select: none;

Powered by Google App Engine
This is Rietveld 408576698