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

Unified Diff: pkg/polymer/lib/elements/polymer-ui-toolbar/polymer-ui-toolbar.css

Issue 175443005: [polymer] import all elements (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updated from bower Created 6 years, 10 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: pkg/polymer/lib/elements/polymer-ui-toolbar/polymer-ui-toolbar.css
diff --git a/pkg/polymer/lib/elements/polymer-ui-toolbar/polymer-ui-toolbar.css b/pkg/polymer/lib/elements/polymer-ui-toolbar/polymer-ui-toolbar.css
new file mode 100644
index 0000000000000000000000000000000000000000..9e9e32804d731b35cb96909cd1ad94377b91342f
--- /dev/null
+++ b/pkg/polymer/lib/elements/polymer-ui-toolbar/polymer-ui-toolbar.css
@@ -0,0 +1,64 @@
+/*
+Copyright 2013 The Polymer 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 {
+ /* technical */
+ display: block;
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ /* border/shadow */
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+ /* size */
+ height: 60px;
+ font-size: 21px;
+ font-family: 'Helvetica Neue Medium', 'HelveticaNeue-Medium', Helvetica, sans-serif;
+ position: relative;
+}
+
+:host(.polymer-ui-light-theme:host) {
+ background: #f2f2f2 -webkit-linear-gradient(top, rgba(197,197,197,0), rgba(197,197,197,0.15));
+ background: #f2f2f2 -moz-linear-gradient(top, rgba(197,197,197,0), rgba(197,197,197,0.15));
+ background: #f2f2f2 -ms-linear-gradient(top, rgba(197,197,197,0), rgba(197,197,197,0.15));
+ color: #333333;
+}
+
+:host(.polymer-ui-dark-theme:host) {
+ background: #444444 none;
+ color: #f3f3f3;
+}
+
+:host(.narrow-layout[responsive]:host) {
+ position: fixed;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1;
+ border: 0;
+ border-top: 1px solid rgba(0, 0, 0, 0.28);
+}
+
+/* TODO(sorvell): use of !important due to inability to
+ naturally win over an :host style */
+/*@polyfill :host > polymer-ui-icon-button */
+::content > polymer-ui-icon-button {
+ margin: 0px 8px 0 8px !important;
+}
+
+/*@polyfill :host > polymer-ui-menu-button */
+::content > polymer-ui-menu-button {
+ margin: 0px 8px 0 8px !important;
+}
+
+/*@polyfill :host > polymer-ui-toolbar */
+::content > polymer-ui-toolbar {
+ margin: 0;
+}
+
+/*@polyfill :host > polymer-ui-toolbar:not(.narrow-layout) */
+::content > polymer-ui-toolbar:not(.narrow-layout) {
+ border: 0;
+ background: transparent none;
+}

Powered by Google App Engine
This is Rietveld 408576698