OLD | NEW |
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 elements in cookies_view.html */ | 5 /* styles for the cookies list elements in cookies_view.html */ |
6 #remove-all-cookies-search-column { | 6 #remove-all-cookies-search-column { |
7 bottom: 10px; | 7 bottom: 10px; |
8 position: absolute; | 8 position: absolute; |
9 right: 0; | 9 right: 0; |
10 } | 10 } |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 height: auto; | 114 height: auto; |
115 visibility: hidden; | 115 visibility: hidden; |
116 } | 116 } |
117 | 117 |
118 .show-items .cookie-items { | 118 .show-items .cookie-items { |
119 opacity: 1; | 119 opacity: 1; |
120 } | 120 } |
121 | 121 |
122 .cookie-items .cookie-item { | 122 .cookie-items .cookie-item { |
123 background: rgb(224, 233, 245); | 123 background: rgb(224, 233, 245); |
| 124 border: 1px solid rgb(131, 146, 174); |
124 border-radius: 5px; | 125 border-radius: 5px; |
125 border: 1px solid rgb(131, 146, 174); | |
126 display: inline-block; | 126 display: inline-block; |
127 font-size: 85%; | 127 font-size: 85%; |
128 height: auto; | 128 height: auto; |
129 margin: 2px 4px 2px 0; | 129 margin: 2px 4px 2px 0; |
130 max-width: 100px; | 130 max-width: 100px; |
131 min-width: 40px; | 131 min-width: 40px; |
132 overflow: hidden; | 132 overflow: hidden; |
133 padding: 0 3px; | 133 padding: 0 3px; |
134 text-align: center; | 134 text-align: center; |
135 text-overflow: ellipsis; | 135 text-overflow: ellipsis; |
(...skipping 11 matching lines...) Expand all Loading... |
147 | 147 |
148 .cookie-items .cookie-item[selected]:hover { | 148 .cookie-items .cookie-item[selected]:hover { |
149 background: rgb(245, 248, 248); | 149 background: rgb(245, 248, 248); |
150 border-color: rgb(100, 113, 135); | 150 border-color: rgb(100, 113, 135); |
151 } | 151 } |
152 | 152 |
153 | 153 |
154 /* styles for the cookie details box */ | 154 /* styles for the cookie details box */ |
155 .cookie-details { | 155 .cookie-details { |
156 background: rgb(245, 248, 248); | 156 background: rgb(245, 248, 248); |
| 157 border: 1px solid #B2B2B2; |
157 border-radius: 5px; | 158 border-radius: 5px; |
158 border: 1px solid #B2B2B2; | |
159 margin-top: 2px; | 159 margin-top: 2px; |
160 padding: 5px; | 160 padding: 5px; |
161 } | 161 } |
162 | 162 |
163 list.cookie-list > .deletable-item[selected] .cookie-details { | 163 list.cookie-list > .deletable-item[selected] .cookie-details { |
164 -webkit-user-select: text; | 164 -webkit-user-select: text; |
165 } | 165 } |
166 | 166 |
167 .cookie-details-table { | 167 .cookie-details-table { |
168 table-layout: fixed; | 168 table-layout: fixed; |
169 width: 100%; | 169 width: 100%; |
170 } | 170 } |
171 | 171 |
172 .cookie-details-label { | 172 .cookie-details-label { |
173 vertical-align: top; | 173 vertical-align: top; |
174 white-space: pre; | 174 white-space: pre; |
175 width: 10em; | 175 width: 10em; |
176 } | 176 } |
177 | 177 |
178 .cookie-details-value { | 178 .cookie-details-value { |
179 word-wrap: break-word; | 179 word-wrap: break-word; |
180 } | 180 } |
OLD | NEW |