| 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 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 133 } | 133 } | 
| 134 | 134 | 
| 135 .cookie-items .cookie-item { | 135 .cookie-items .cookie-item { | 
| 136   background: rgb(224, 233, 245); | 136   background: rgb(224, 233, 245); | 
| 137   border: 1px solid rgb(131, 146, 174); | 137   border: 1px solid rgb(131, 146, 174); | 
| 138   border-radius: 5px; | 138   border-radius: 5px; | 
| 139   display: inline-block; | 139   display: inline-block; | 
| 140   font-size: 85%; | 140   font-size: 85%; | 
| 141   height: auto; | 141   height: auto; | 
| 142   margin: 2px 4px 2px 0; | 142   margin: 2px 4px 2px 0; | 
| 143   max-width: 100px; | 143   max-width: 120px; | 
| 144   min-width: 40px; | 144   min-width: 40px; | 
| 145   overflow: hidden; | 145   overflow: hidden; | 
| 146   padding: 0 3px; | 146   padding: 0 3px; | 
| 147   text-align: center; | 147   text-align: center; | 
| 148   text-overflow: ellipsis; | 148   text-overflow: ellipsis; | 
| 149 } | 149 } | 
| 150 | 150 | 
| 151 .cookie-items .cookie-item:hover { | 151 .cookie-items .cookie-item:hover { | 
| 152   background: rgb(238, 243, 249); | 152   background: rgb(238, 243, 249); | 
| 153   border-color: rgb(100, 113, 135); | 153   border-color: rgb(100, 113, 135); | 
| 154 } | 154 } | 
| 155 | 155 | 
| 156 .cookie-items .cookie-item[selected] { | 156 .cookie-items .cookie-item[selected] { | 
| 157   background: rgb(245, 248, 248); | 157   background: rgb(245, 248, 248); | 
| 158   border-color: #B2B2B2; | 158   border-color: #B2B2B2; | 
| 159 } | 159 } | 
| 160 | 160 | 
| 161 .cookie-items .cookie-item[selected]:hover { | 161 .cookie-items .cookie-item[selected]:hover { | 
| 162   background: rgb(245, 248, 248); | 162   background: rgb(245, 248, 248); | 
| 163   border-color: rgb(100, 113, 135); | 163   border-color: rgb(100, 113, 135); | 
| 164 } | 164 } | 
| 165 | 165 | 
|  | 166 .cookie-items .cookie-item .protecting-app, | 
|  | 167 .cookie-data .protecting-app { | 
|  | 168   margin-bottom: -3px; | 
|  | 169   margin-left: 4px; | 
|  | 170 } | 
|  | 171 | 
| 166 /* Styles for the cookie details box. */ | 172 /* Styles for the cookie details box. */ | 
| 167 .cookie-details { | 173 .cookie-details { | 
| 168   background: rgb(245, 248, 248); | 174   background: rgb(245, 248, 248); | 
| 169   border: 1px solid #B2B2B2; | 175   border: 1px solid #B2B2B2; | 
| 170   border-radius: 5px; | 176   border-radius: 5px; | 
| 171   margin-top: 2px; | 177   margin-top: 2px; | 
| 172   padding: 5px; | 178   padding: 5px; | 
| 173 } | 179 } | 
| 174 | 180 | 
| 175 list.cookie-list > .deletable-item[selected] .cookie-details { | 181 list.cookie-list > .deletable-item[selected] .cookie-details { | 
| (...skipping 21 matching lines...) Expand all  Loading... | 
| 197   width: 20em; | 203   width: 20em; | 
| 198 } | 204 } | 
| 199 | 205 | 
| 200 .app-cookie-site { | 206 .app-cookie-site { | 
| 201   width: 20em; | 207   width: 20em; | 
| 202 } | 208 } | 
| 203 | 209 | 
| 204 .app-cookie-items { | 210 .app-cookie-items { | 
| 205   -webkit-margin-start: 20em; | 211   -webkit-margin-start: 20em; | 
| 206 } | 212 } | 
| OLD | NEW | 
|---|