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

Side by Side Diff: chrome/browser/resources/options/extension_settings.css

Issue 7794023: Convert chrome://extensions to a settings page within the options pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 */
6
7 /* TODO(finnur): Move these into a central location, either options_page.css or
8 somewhere in the shared directory */
9 .hbox {
10 display: -webkit-box;
11 -webkit-box-orient: horizontal;
12 }
13
14 .vbox {
15 display: -webkit-box;
16 -webkit-box-orient: vertical;
17 }
18
19 .stretch {
20 padding-right: 10px;
21 -webkit-box-flex: 1;
22 }
23
24 .extension-list-item {
25 padding-bottom: 7px;
26 padding-top: 7px;
27 width: 100%;
28 -webkit-user-select: auto;
29 }
30
31 /* Get rid of display: table, which causes width issues. */
32 .displaytable {
33 display: block;
34 }
35 /* Get rid of display: table row, which causes width issues. */
36 .displaytable > section {
37 display: block;
38 }
39 /* Get rid of display: table cell, which causes width issues. */
40 .displaytable > section > * {
41 display: block;
42 }
43
44 .extension-settings-content {
45 border-bottom : 0px solid #eee;
46 margin-top: 3px;
47 }
48
49 .big-list {
50 overflow-y: hidden;
51 }
52
53 /* Get rid of the light-blue background on list item hover. */
54 .big-list:not([disabled]) > :hover {
55 background-color: white;
56 border-color: #CDCDCD;
57 }
58
59 .butter-bar {
60 background: #FFF299;
61 padding: 2px 5px;
62 border-radius: 3px;
63 white-space: normal;
64 }
65
66 .search-suppress {
67 display: none;
68 height: 0;
69 }
70
71 .extension-list-item-collaped {
72 height: auto;
73 margin-bottom: 16px;
74 -webkit-transition: padding 300ms, overflow 300ms, opacity 700ms;
75 }
76
77 .extension-list-item-expanded {
78 height: auto;
79 margin-bottom: 16px;
80 overflow: visible;
81 -webkit-transition: padding 300ms, overflow 300ms, opacity 700ms;
82 }
83
84 .extension-settings {
85 overflow-x: hidden;
86 }
87
88 .extension-icon {
89 height: 48px;
90 padding-left: 15px;
91 padding-right: 15px;
92 vertical-align: text-top;
93 width: 48px;
94 -webkit-user-select: none;
95 }
96
97 .extension-title {
98 font-size: 16px;
99 font-weight: 500;
100 padding-right: 20px;
101 }
102
103 .extension-version {
104 font-size: 13px;
105 font-weight: 400;
106 }
107
108 .extension-description {
109 font-size: 13px;
110 white-space: normal;
111 padding-right: 5px;
arv (Not doing code reviews) 2011/09/06 20:55:47 -webkit-padding-end? http://dev.chromium.org/deve
112 }
113
114 .extension-checkbox-span {
115 margin-left: 7px;
116 }
117
118 .extension-checkbox-label {
119 margin-right: 10px;
120 }
121
122 .extension-delete {
123 margin-left: 5px;
124 }
125
126 .extension-details-hidden {
127 opacity: 0;
128 max-height: 0;
129 -webkit-transition: max-height 400ms, opacity 200ms;
130 }
131
132 .extension-details-visible {
133 opacity: 1;
134 max-height: 100px;
135 -webkit-transition: max-height 200ms, opacity 300ms;
136 }
137
138 .extension-links-view {
139 padding-left: 15px;
140 }
141
142 .extension-links-trailing {
143 padding-right: 7px;
144 }
145
146 .extension-zippy-container {
147 cursor: pointer;
148 width: 20px;
149 -webkit-user-select: none;
150 }
151
152 .informative-text {
153 color: gray;
154 }
155
156 .extension-zippy-default {
157 background-image: url('zippy.png');
158 background-repeat: no-repeat;
159 background-position: center top;
160 position: absolute;
161 left: 12px;
162 top: 25px;
163 width: 6px;
164 height: 16px;
165 opacity: .25;
166 }
167
168 .extension-zippy-collapsed {
169 -webkit-transition: -webkit-transform .1s;
170 -webkit-transform: rotate(0deg);
171 }
172
173 .extension-zippy-collapsed:hover {
174 -webkit-transition: -webkit-transform .1s, opacity .1s;
175 opacity: .5;
176 -webkit-transform: rotate(5deg);
177 }
178
179 .extension-zippy-expanded {
180 -webkit-transition: -webkit-transform .1s;
181 -webkit-transform: rotate(90deg);
182 }
183
184 .extension-zippy-expanded:hover {
185 -webkit-transition: -webkit-transform .1s;
186 -webkit-transform: rotate(85deg);
187 }
188
189 .extension-enabling {
190 position: relative;
191 top: 3px;
192 }
193
194 .extension-enabling-label {
195 padding-left: 3px;
196 padding-right: 9px;
197 color: black;
198 }
199
200 .extension-enabling-label-bold {
201 font-weight: bold;
202 }
203
204 .extension-inspect-table {
205 padding: 0;
206 border-spacing: 0;
207 }
208
209 .extension-inspect-left-column {
210 vertical-align: text-top;
211 }
212
213 /* Dev */
214
215 .dev-open {
216 border-bottom: 1px solid rgb(205, 205, 205);
217 height: 32px;
218 padding-bottom: 7px;
219 padding-left: 4px;
220 padding-right: 3px;
221 padding-top: 4px;
222 -webkit-transition: padding 300ms, height 300ms, opacity 700ms;
223 }
224 .dev-closed {
225 height: 0;
226 opacity: 0;
227 padding-left: 4px;
228 padding-right: 3px;
229 -webkit-transition: padding 300ms, height 700ms, opacity 200ms;
230 }
231
232 .dev-button-visible {
233 display: inherit;
234 opacity: 1;
235 -webkit-transition: opacity 200ms;
236 }
237
238 .dev-button-hidden {
239 display: none;
240 }
241
242 #suggest-gallery {
243 padding-left: 10px;
244 }
245
246 #dev-toggle {
247 display: block;
248 float: right;
249 margin-top: -28px;
250 margin-right: 8px;
251 }
252
253 #get-more-extensions-container {
254 display: -webkit-box;
255 }
256
Finnur 2011/09/02 18:01:39 This is unrelated to your request, but was missing
257 #get-more-extensions {
258 padding-left: 10px;
259 padding-top: 5px;
260 font-size: 15px;
261 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698