summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/login/gaia_button.css
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2015-08-14 11:38:45 +0200
committerAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2015-08-14 17:16:47 +0000
commit3a97ca8dd9b96b599ae2d33e40df0dd2f7ea5859 (patch)
tree43cc572ba067417c7341db81f71ae7cc6e0fcc3e /chromium/chrome/browser/resources/chromeos/login/gaia_button.css
parentf61ab1ac7f855cd281809255c0aedbb1895e1823 (diff)
downloadqtwebengine-chromium-3a97ca8dd9b96b599ae2d33e40df0dd2f7ea5859.tar.gz
BASELINE: Update chromium to 45.0.2454.40
Change-Id: Id2121d9f11a8fc633677236c65a3e41feef589e4 Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
Diffstat (limited to 'chromium/chrome/browser/resources/chromeos/login/gaia_button.css')
-rw-r--r--chromium/chrome/browser/resources/chromeos/login/gaia_button.css40
1 files changed, 40 insertions, 0 deletions
diff --git a/chromium/chrome/browser/resources/chromeos/login/gaia_button.css b/chromium/chrome/browser/resources/chromeos/login/gaia_button.css
new file mode 100644
index 00000000000..67f758ea424
--- /dev/null
+++ b/chromium/chrome/browser/resources/chromeos/login/gaia_button.css
@@ -0,0 +1,40 @@
+/* Copyright 2015 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.
+ */
+
+:host {
+ display: inline-block;
+}
+
+paper-button {
+ background-color: var(--google-blue-500);
+ color: white;
+ font-size: 14px;
+ min-width: 90px;
+}
+
+:host([type='link']) paper-button,
+:host([type='dialog']) paper-button {
+ background-color: transparent;
+ color: var(--google-blue-500);
+ margin: 0;
+ min-width: 0;
+}
+
+:host([type='link']) paper-button[focused],
+:host([type='dialog']) paper-button[focused] {
+ background-color: rgba(66, 133, 244, 0.12);
+}
+
+:host([type='link']) paper-button[disabled],
+:host([type='dialog']) paper-button[disabled] {
+ color: rgb(168,168,168);
+}
+
+:host([type='link']) paper-button {
+ border-radius: 0;
+ margin-left: -0.57em;
+ margin-right: -0.57em;
+ text-transform: none;
+}