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

Unified Diff: chrome/common/extensions/docs/examples/apps/cycler/cycler.css

Issue 10832191: Major revision of page cycler UI. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Major revision to cycler UI Created 8 years, 4 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/common/extensions/docs/examples/apps/cycler/cycler.css
diff --git a/chrome/common/extensions/docs/examples/apps/cycler/cycler.css b/chrome/common/extensions/docs/examples/apps/cycler/cycler.css
new file mode 100644
index 0000000000000000000000000000000000000000..2bf4a89cdf37009fcd92c7f4c08acac2b8bb7069
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/apps/cycler/cycler.css
@@ -0,0 +1,140 @@
+/* Copyright (c) 2012 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. */
+
+body {
+ font-family: Arial, sans-serif;
+ font-size: 75%;
+}
+
+button {
+ -webkit-padding-end: 10px;
+ -webkit-padding-start: 10px;
+ background-color: buttonface;
+ background-image: -webkit-linear-gradient(#EDEDED, #EDEDED 38%, #DEDEDE);
+ border: 1px solid rgba(0, 0, 0, 0.25);
+ border-radius: 2px;
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
+ inset 0 1px 2px rgba(255, 255, 255, 0.75);
+ color: #444;
+ font: inherit;
+ margin: 0 1px 0 0;
+ min-height: 2em;
+ min-width: 4em;
+ text-shadow: #F0F0F0 0px 1px 0px;
+}
+
+button:active {
+ background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
+ box-shadow: none;
+ text-shadow: none;
+}
+
+input, select {
+ width: 15em;
+}
+
+h1, h2, h3 {
+ font-weight: normal;
+ line-height: 1;
+}
+
+h3 {
+ font-size: 1.2em;
+ margin-bottom: 0;
+}
+
+.border {
+ border: 1px solid;
+ padding: 4px;
+}
+
+.tab-label {
+ padding: .5em 10em .5em .5em;
+}
+
+.enabled-tab-label {
+ background:#EFF;
+ border: 1px solid;
+ border-color:#888;
+ border-radius:2px;
+}
+
+.disabled-tab-label {
+ background-color:#FFF;
+}
+
+.left-label {
+ width: 100px;
+}
+
+.column {
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+}
+
+.row {
+ -webkit-box-orient: horizontal;
+ display: -webkit-box;
+}
+
+.gapped {
+ margin-top: 1em;
+}
+
+.url-list {
+ height: 8em;
+ width: 20em;
+}
+
+.select {
+ background-color: #ddd;
+}
+
+#header-icon {
+ float:left;
+ position:relative;
+}
+
+#header-title {
+ font-size: 200%;
+ margin-left: 1em;
+}
+
+#tab-navigator {
+ float:left;
+ position:relative;
+ width:100px;
+}
+
+#tab-wrapper {
+ margin-left: 100px;
+}
+
+#playback-repeats {
+ width: 3em;
+}
+
+#popup {
+ background-color: rgba(255, 255, 255, .6);
+ height:100%;
+ left: 0;
+ position: absolute;
+ top: 0;
+ width:100%;
+ z-index: 1;
+}
+
+#popup-box {
+ background-color: #fff;
+ border: 1px solid;
+ left: 30em;
+ padding: 1em;
+ position: absolute;
+ top: 12em;
+ z-index: 2;
+}
+
+#no-captures {
+ padding-top: 20px;
+}

Powered by Google App Engine
This is Rietveld 408576698