| 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 .expandable-bubble { | 5 .expandable-bubble { |
| 6 -webkit-border-image: url('chrome://theme/IDR_APP_NOTIFICATION_SMALL_BUBBLE') | 6 -webkit-border-image: url('chrome://theme/IDR_APP_NOTIFICATION_SMALL_BUBBLE') |
| 7 5 5 7 6 stretch; | 7 5 5 7 6 stretch; |
| 8 -webkit-box-sizing: border-box; | 8 -webkit-box-sizing: border-box; |
| 9 -webkit-user-select: none; | 9 -webkit-user-select: none; |
| 10 border-width: 5px 5px 7px 6px; | 10 border-width: 5px 5px 7px 6px; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 } | 47 } |
| 48 | 48 |
| 49 .expandable-bubble[expanded] > .expandable-bubble-contents > | 49 .expandable-bubble[expanded] > .expandable-bubble-contents > |
| 50 .expandable-bubble-title { | 50 .expandable-bubble-title { |
| 51 font-size: 13px; | 51 font-size: 13px; |
| 52 margin-bottom: 3px; | 52 margin-bottom: 3px; |
| 53 margin-left: 0; | 53 margin-left: 0; |
| 54 } | 54 } |
| 55 | 55 |
| 56 .expandable-bubble-close { | 56 .expandable-bubble-close { |
| 57 background-image: no-repeat 50% 50%; | |
| 58 height: 16px; | 57 height: 16px; |
| 59 position: absolute; | 58 position: absolute; |
| 60 right: 0; | 59 right: 0; |
| 61 top: 0; | 60 top: 0; |
| 62 width: 16px; | 61 width: 16px; |
| 63 z-index: 2; | 62 z-index: 2; |
| 64 } | 63 } |
| 65 | 64 |
| 66 .expandable-bubble[expanded] { | 65 .expandable-bubble[expanded] { |
| 67 padding: 3px; | 66 padding: 3px; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 82 background-image: -webkit-image-set( | 81 background-image: -webkit-image-set( |
| 83 url('../../../resources/default_100_percent/close_2_hover.png') 1x, | 82 url('../../../resources/default_100_percent/close_2_hover.png') 1x, |
| 84 url('../../../resources/default_200_percent/close_2_hover.png') 2x); | 83 url('../../../resources/default_200_percent/close_2_hover.png') 2x); |
| 85 } | 84 } |
| 86 | 85 |
| 87 .expandable-bubble-close:active { | 86 .expandable-bubble-close:active { |
| 88 background-image: -webkit-image-set( | 87 background-image: -webkit-image-set( |
| 89 url('../../../resources/default_100_percent/close_2_pressed.png') 1x, | 88 url('../../../resources/default_100_percent/close_2_pressed.png') 1x, |
| 90 url('../../../resources/default_200_percent/close_2_pressed.png') 2x); | 89 url('../../../resources/default_200_percent/close_2_pressed.png') 2x); |
| 91 } | 90 } |
| OLD | NEW |