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

Side by Side Diff: chrome/browser/resources/apps_debugger/css/items.css

Issue 11794034: Adds functionality to pack an extension / app from the app. (Closed) Base URL: http://git.chromium.org/chromium/src.git@bacha_lo
Patch Set: . Created 7 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 unified diff | Download patch
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 body, 5 body,
6 html { 6 html {
7 overflow: visible; 7 overflow: visible;
8 } 8 }
9 9
10 /* Contents */ 10 /* Contents */
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 134
135 .extension-list-item a { 135 .extension-list-item a {
136 -webkit-margin-start: 0.5em; 136 -webkit-margin-start: 0.5em;
137 display: inline-block; 137 display: inline-block;
138 } 138 }
139 139
140 .install-warnings a { 140 .install-warnings a {
141 -webkit-margin-start: 0; 141 -webkit-margin-start: 0;
142 } 142 }
143 143
144 /* Overlays */
145
146 #overlay {
147 z-index: 5;
148 }
149
150 #overlay .page:not(.showing) {
151 display: none;
152 }
153
144 /* Trash */ 154 /* Trash */
145 155
146 #extension-settings .trash { 156 #extension-settings .trash {
147 -webkit-transition: opacity 200ms; 157 -webkit-transition: opacity 200ms;
148 height: 22px; 158 height: 22px;
149 opacity: 0.8; 159 opacity: 0.8;
150 position: absolute; 160 position: absolute;
151 right: 0; 161 right: 0;
152 top: 3px; 162 top: 3px;
153 vertical-align: middle; 163 vertical-align: middle;
(...skipping 17 matching lines...) Expand all
171 } 181 }
172 182
173 a { 183 a {
174 color: rgb(17, 85, 204); 184 color: rgb(17, 85, 204);
175 text-decoration: underline; 185 text-decoration: underline;
176 } 186 }
177 187
178 a:active { 188 a:active {
179 color: rgb(5, 37, 119); 189 color: rgb(5, 37, 119);
180 } 190 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698