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

Unified Diff: chrome/browser/resources/chromeos/login/pairing_device_list.css

Issue 642313002: Implemented UI for the meetings controller out-of-box. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@merge_point
Patch Set: Empty line removed. Created 6 years, 2 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/chromeos/login/pairing_device_list.css
diff --git a/chrome/browser/resources/chromeos/login/pairing_device_list.css b/chrome/browser/resources/chromeos/login/pairing_device_list.css
new file mode 100644
index 0000000000000000000000000000000000000000..c51e95d73274e74fe106a92af3eb27261e91ddad
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/pairing_device_list.css
@@ -0,0 +1,57 @@
+/* Copyright 2014 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/* TODO(dzhioev): support RTL. http://crbug.com/423354 */
+
+:host {
+ display: block;
+ overflow: auto;
+}
+
+core-selector {
+ display: block;
+}
+
+:host([connecting]) {
+ pointer-events: none;
+}
+
+core-item {
+ padding-bottom: 22px;
+ padding-top: 22px;
+}
+
+/* [icon] is needed to increase specificity. */
+core-item core-icon[icon] {
+ height: 40px;
+ margin-right: 1em;
+ width: 40px;
+}
+
+/* Items separator. */
+core-item:not(:last-child)::after {
+ background-color: rgba(0, 0, 0, 0.1);
+ bottom: 0;
+ content: '';
+ display: block;
+ height: 1px;
+ left: calc(40px + 1em);
+ position: absolute;
+ right: 0;
+}
+
+.throbber {
+ display: none;
+}
+
+:host([connecting]) core-item.core-selected .throbber {
+ background: url('chrome://resources/images/throbber.svg') no-repeat;
+ background-size: cover;
+ display: inline-block;
+ height: 25px;
+ margin-right: 10px;
+ width: 25px;
+}
+

Powered by Google App Engine
This is Rietveld 408576698