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

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: Addressed comments 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-x: visible; 7 overflow-x: visible;
8 overflow-y: visible; 8 overflow-y: visible;
9 } 9 }
10 10
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 .install-warnings a { 119 .install-warnings a {
120 -webkit-margin-start: 0; 120 -webkit-margin-start: 0;
121 } 121 }
122 122
123 #font-measuring-div { 123 #font-measuring-div {
124 /* Remove from the flow and hide. */ 124 /* Remove from the flow and hide. */
125 position: absolute; 125 position: absolute;
126 visibility: hidden; 126 visibility: hidden;
127 } 127 }
128 128
129 /* Overlays */
130
131 #overlay {
132 z-index: 5;
133 }
134
135 #overlay .page:not(.showing) {
Dan Beam 2013/02/11 23:44:24 aren't the overlays already being marked with [hid
Gaurav 2013/02/12 19:33:17 There are two types of overlay which are both hidd
136 display: none;
137 }
138
129 /* Trash */ 139 /* Trash */
130 140
131 #extension-settings .trash { 141 #extension-settings .trash {
132 -webkit-transition: opacity 200ms; 142 -webkit-transition: opacity 200ms;
133 height: 22px; 143 height: 22px;
134 opacity: 0.8; 144 opacity: 0.8;
135 position: absolute; 145 position: absolute;
136 right: 0; 146 right: 0;
137 top: 3px; 147 top: 3px;
138 vertical-align: middle; 148 vertical-align: middle;
(...skipping 17 matching lines...) Expand all
156 } 166 }
157 167
158 a { 168 a {
159 color: rgb(17, 85, 204); 169 color: rgb(17, 85, 204);
160 text-decoration: underline; 170 text-decoration: underline;
161 } 171 }
162 172
163 a:active { 173 a:active {
164 color: rgb(5, 37, 119); 174 color: rgb(5, 37, 119);
165 } 175 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698