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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 body {
6 font-family: Arial, sans-serif;
7 font-size: 75%;
8 }
9
10 button {
11 -webkit-padding-end: 10px;
12 -webkit-padding-start: 10px;
13 background-color: buttonface;
14 background-image: -webkit-linear-gradient(#EDEDED, #EDEDED 38%, #DEDEDE);
15 border: 1px solid rgba(0, 0, 0, 0.25);
16 border-radius: 2px;
17 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
18 inset 0 1px 2px rgba(255, 255, 255, 0.75);
19 color: #444;
20 font: inherit;
21 margin: 0 1px 0 0;
22 min-height: 2em;
23 min-width: 4em;
24 text-shadow: #F0F0F0 0px 1px 0px;
25 }
26
27 button:active {
28 background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
29 box-shadow: none;
30 text-shadow: none;
31 }
32
33 input, select {
34 width: 15em;
35 }
36
37 h1, h2, h3 {
38 font-weight: normal;
39 line-height: 1;
40 }
41
42 h3 {
43 font-size: 1.2em;
44 margin-bottom: 0;
45 }
46
47 .border {
48 border: 1px solid;
49 padding: 4px;
50 }
51
52 .tab-label {
53 padding: .5em 10em .5em .5em;
54 }
55
56 .enabled-tab-label {
57 background:#EFF;
58 border: 1px solid;
59 border-color:#888;
60 border-radius:2px;
61 }
62
63 .disabled-tab-label {
64 background-color:#FFF;
65 }
66
67 .left-label {
68 width: 100px;
69 }
70
71 .column {
72 -webkit-box-orient: vertical;
73 display: -webkit-box;
74 }
75
76 .row {
77 -webkit-box-orient: horizontal;
78 display: -webkit-box;
79 }
80
81 .gapped {
82 margin-top: 1em;
83 }
84
85 .url-list {
86 height: 8em;
87 width: 20em;
88 }
89
90 .select {
91 background-color: #ddd;
92 }
93
94 #header-icon {
95 float:left;
96 position:relative;
97 }
98
99 #header-title {
100 font-size: 200%;
101 margin-left: 1em;
102 }
103
104 #tab-navigator {
105 float:left;
106 position:relative;
107 width:100px;
108 }
109
110 #tab-wrapper {
111 margin-left: 100px;
112 }
113
114 #playback-repeats {
115 width: 3em;
116 }
117
118 #popup {
119 background-color: rgba(255, 255, 255, .6);
120 height:100%;
121 left: 0;
122 position: absolute;
123 top: 0;
124 width:100%;
125 z-index: 1;
126 }
127
128 #popup-box {
129 background-color: #fff;
130 border: 1px solid;
131 left: 30em;
132 padding: 1em;
133 position: absolute;
134 top: 12em;
135 z-index: 2;
136 }
137
138 #no-captures {
139 padding-top: 20px;
140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698