Chromium Code Reviews| 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 body:not(.uber-frame) { | 5 body:not(.uber-frame) { |
| 6 color: rgb(48, 57, 66); | 6 color: rgb(48, 57, 66); |
| 7 margin: 0 8px 0 8px; | 7 margin: 0 8px 0 8px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #editing-controls, | 10 #editing-controls, |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 229 .entry-box:hover input[type=checkbox], | 229 .entry-box:hover input[type=checkbox], |
| 230 .entry-box input[type=checkbox]:focus { | 230 .entry-box input[type=checkbox]:focus { |
| 231 opacity: 1; | 231 opacity: 1; |
| 232 } | 232 } |
| 233 | 233 |
| 234 .entry-box input[type=checkbox]:focus { | 234 .entry-box input[type=checkbox]:focus { |
| 235 -webkit-transition: opacity 150ms; | 235 -webkit-transition: opacity 150ms; |
| 236 } | 236 } |
| 237 </if> | 237 </if> |
| 238 | 238 |
| 239 #range-previous img { | |
| 240 -webkit-transform: rotate(180deg); | |
| 241 margin-top: -1px; | |
|
James Hawkins
2013/02/07 19:37:29
Why the need for -1, 1?
Sergiu
2013/02/08 10:01:17
Initially I thought it wasn't aligned properly but
| |
| 242 } | |
| 243 | |
| 244 #range-next img { | |
| 245 margin-top: 1px; | |
| 246 } | |
| 247 | |
| 239 .entry-box { | 248 .entry-box { |
| 240 background-color: none; | 249 background-color: none; |
| 241 } | 250 } |
| 242 | 251 |
| 243 .entry-box:hover, | 252 .entry-box:hover, |
| 244 .entry-box.contains-focus { | 253 .entry-box.contains-focus { |
| 245 background-color: rgb(252, 252, 252); | 254 background-color: rgb(252, 252, 252); |
| 246 border-radius: 2px; | 255 border-radius: 2px; |
| 247 } | 256 } |
| 248 | 257 |
| 249 .entry .title { | 258 .entry .title { |
| 250 -webkit-box-flex: 1; | 259 -webkit-box-flex: 1; |
| 251 overflow: hidden; | 260 overflow: hidden; |
| 252 text-overflow: ellipsis; | 261 text-overflow: ellipsis; |
| 253 white-space: nowrap; | 262 white-space: nowrap; |
| 254 } | 263 } |
| 255 | 264 |
| 256 .day-results > .entry .title, | 265 .day-results > .entry .title, |
| 257 .search-results > .entry .title, | 266 .search-results > .entry .title, |
| 258 .site-domain { | 267 .site-domain { |
| 259 /* Make room for the favicon. */ | 268 /* Make room for the favicon. */ |
| 260 -webkit-padding-start: 20px; | 269 -webkit-padding-start: 20px; |
| 261 | 270 |
| 262 /* Control the favicon appearance. */ | 271 /* Control the favicon appearance. */ |
| 263 background-position-y: 3px; | 272 background-position-y: 3px; |
| 264 background-repeat: no-repeat; | 273 background-repeat: no-repeat; |
| 265 background-size: 16px; | 274 background-size: 16px; |
| 266 } | 275 } |
| 267 | 276 |
| 277 .site-domain a { | |
|
James Hawkins
2013/02/07 19:37:29
It's not being decorated like an anchor; is it goi
Patrick Dubroy
2013/02/07 19:38:43
I think it should look and behave like a regular l
James Hawkins
2013/02/07 19:42:54
Ah, so it's a link-button. We have that in chrome
Sergiu
2013/02/08 10:01:17
I've set them to that, although I hope it's not to
| |
| 278 color: black; | |
| 279 text-decoration: none; | |
| 280 } | |
| 281 | |
| 268 .site-domain-arrow { | 282 .site-domain-arrow { |
| 269 -webkit-transition: -webkit-transform 300ms linear; | 283 -webkit-transition: -webkit-transform 300ms linear; |
| 284 background: url('../triangle_small_right.png') no-repeat; | |
| 285 background-position: 5px 5px; | |
| 270 color: #8F8F8F; | 286 color: #8F8F8F; |
| 271 height: 21px; | 287 height: 21px; |
| 272 margin-right: 2px; | 288 margin-right: 2px; |
| 273 text-align: center; | 289 text-align: center; |
| 274 width: 21px; | 290 width: 21px; |
| 275 } | 291 } |
| 276 | 292 |
| 277 .site-domain-arrow.collapse { | 293 .site-domain-arrow.collapse { |
| 278 -webkit-transform: rotate(0); | 294 -webkit-transform: rotate(0); |
| 279 } | 295 } |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 310 | 326 |
| 311 .menu-button.drop-down { | 327 .menu-button.drop-down { |
| 312 position: relative; | 328 position: relative; |
| 313 top: 2px; | 329 top: 2px; |
| 314 } | 330 } |
| 315 | 331 |
| 316 #action-menu > :not(hr) { | 332 #action-menu > :not(hr) { |
| 317 line-height: 29px; | 333 line-height: 29px; |
| 318 outline: none; | 334 outline: none; |
| 319 } | 335 } |
| OLD | NEW |