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

Side by Side Diff: chrome/browser/resources/collected_cookies.css

Issue 6644002: [ChromeOS] Implement collected cookies in webui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: exclude for non-chromeos build Created 9 years, 9 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
(Empty)
1 body {
2 font-size: 84%;
3 font-family: Arial, Helvetica, sans-serif;
4 }
5
6 .hidden {
arv (Not doing code reviews) 2011/03/09 18:42:47 Can you use the hidden property instead?
xiyuan 2011/03/09 21:33:31 Done.
7 display: none;
8 }
9
10 .cookies-tree {
11 border: 1px solid lightgrey;
12 padding: 5px;
13 width: 450px;
14 height: 135px;
15 }
16
17 #info-banner {
18 background: -webkit-linear-gradient(#fff2b7, #fae691 97%, #878787);
19 margin: 3px 0;
20 padding: 0;
arv (Not doing code reviews) 2011/03/09 18:42:47 padding 0 should be default already?
xiyuan 2011/03/09 21:33:31 Done.
21 width: 100%;
22 height: 20px;
23 }
24
25 #info-text {
26 vertical-align: middle;
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698