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

Side by Side Diff: chrome/browser/resources/options2/cookies_view.css

Issue 10709006: Show apps protecting local data in chrome://settings/cookies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 8 years, 5 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
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 /* Styles for the cookies list page. */ 5 /* Styles for the cookies list page. */
6 #cookies-view-page { 6 #cookies-view-page {
7 height: 90%; 7 height: 90%;
8 margin-left: -15px; 8 margin-left: -15px;
9 width: 720px; 9 width: 720px;
10 } 10 }
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 } 139 }
140 140
141 .cookie-items .cookie-item { 141 .cookie-items .cookie-item {
142 background: rgb(224, 233, 245); 142 background: rgb(224, 233, 245);
143 border: 1px solid rgb(131, 146, 174); 143 border: 1px solid rgb(131, 146, 174);
144 border-radius: 5px; 144 border-radius: 5px;
145 display: inline-block; 145 display: inline-block;
146 font-size: 85%; 146 font-size: 85%;
147 height: auto; 147 height: auto;
148 margin: 2px 4px 2px 0; 148 margin: 2px 4px 2px 0;
149 max-width: 100px; 149 max-width: 120px;
150 min-width: 40px; 150 min-width: 40px;
151 overflow: hidden; 151 overflow: hidden;
152 padding: 0 3px; 152 padding: 0 3px;
153 text-align: center; 153 text-align: center;
154 text-overflow: ellipsis; 154 text-overflow: ellipsis;
155 } 155 }
156 156
157 .cookie-items .cookie-item:hover { 157 .cookie-items .cookie-item:hover {
158 background: rgb(238, 243, 249); 158 background: rgb(238, 243, 249);
159 border-color: rgb(100, 113, 135); 159 border-color: rgb(100, 113, 135);
160 } 160 }
161 161
162 .cookie-items .cookie-item[selected] { 162 .cookie-items .cookie-item[selected] {
163 background: rgb(245, 248, 248); 163 background: rgb(245, 248, 248);
164 border-color: #B2B2B2; 164 border-color: #B2B2B2;
165 } 165 }
166 166
167 .cookie-items .cookie-item[selected]:hover { 167 .cookie-items .cookie-item[selected]:hover {
168 background: rgb(245, 248, 248); 168 background: rgb(245, 248, 248);
169 border-color: rgb(100, 113, 135); 169 border-color: rgb(100, 113, 135);
170 } 170 }
171 171
172 .cookie-items .cookie-item .protecting-app,
173 .cookie-data .protecting-app {
174 margin-bottom: -3px;
175 margin-left: 4px;
176 }
177
172 /* Styles for the cookie details box. */ 178 /* Styles for the cookie details box. */
173 .cookie-details { 179 .cookie-details {
174 background: rgb(245, 248, 248); 180 background: rgb(245, 248, 248);
175 border: 1px solid #B2B2B2; 181 border: 1px solid #B2B2B2;
176 border-radius: 5px; 182 border-radius: 5px;
177 margin-top: 2px; 183 margin-top: 2px;
178 padding: 5px; 184 padding: 5px;
179 } 185 }
180 186
181 list.cookie-list > .deletable-item[selected] .cookie-details { 187 list.cookie-list > .deletable-item[selected] .cookie-details {
182 -webkit-user-select: text; 188 -webkit-user-select: text;
183 } 189 }
184 190
185 .cookie-details-table { 191 .cookie-details-table {
186 table-layout: fixed; 192 table-layout: fixed;
187 width: 100%; 193 width: 100%;
188 } 194 }
189 195
190 .cookie-details-label { 196 .cookie-details-label {
191 vertical-align: top; 197 vertical-align: top;
192 white-space: pre; 198 white-space: pre;
193 width: 10em; 199 width: 10em;
194 } 200 }
195 201
196 .cookie-details-value { 202 .cookie-details-value {
197 word-wrap: break-word; 203 word-wrap: break-word;
198 } 204 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698