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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 padding: 3px; | 67 padding: 3px; |
68 z-index: 3; /* One higher then the close button on an unexpanded bubble. */ | 68 z-index: 3; /* One higher then the close button on an unexpanded bubble. */ |
69 } | 69 } |
70 | 70 |
71 .expandable-bubble[expanded] > .expandable-bubble-close { | 71 .expandable-bubble[expanded] > .expandable-bubble-close { |
72 z-index: 4; | 72 z-index: 4; |
73 } | 73 } |
74 | 74 |
75 .expandable-bubble-close { | 75 .expandable-bubble-close { |
76 background-image: -webkit-image-set( | 76 background-image: -webkit-image-set( |
77 url('../../../resources/default_100_percent/close_bar.png') 1x, | 77 url('../../../resources/default_100_percent/close_2.png') 1x, |
78 url('../../../resources/default_200_percent/close_bar.png') 2x); | 78 url('../../../resources/default_200_percent/close_2.png') 2x); |
79 } | 79 } |
80 | 80 |
81 .expandable-bubble-close:hover { | 81 .expandable-bubble-close:hover { |
82 background-image: -webkit-image-set( | 82 background-image: -webkit-image-set( |
83 url('../../../resources/default_100_percent/close_bar_hover.png') 1x, | 83 url('../../../resources/default_100_percent/close_2_hover.png') 1x, |
84 url('../../../resources/default_200_percent/close_bar_hover.png') 2x); | 84 url('../../../resources/default_200_percent/close_2_hover.png') 2x); |
85 } | 85 } |
86 | 86 |
87 .expandable-bubble-close:active { | 87 .expandable-bubble-close:active { |
88 background-image: -webkit-image-set( | 88 background-image: -webkit-image-set( |
89 url('../../../resources/default_100_percent/close_bar_pressed.png') 1x, | 89 url('../../../resources/default_100_percent/close_2_pressed.png') 1x, |
90 url('../../../resources/default_200_percent/close_bar_pressed.png') 2x); | 90 url('../../../resources/default_200_percent/close_2_pressed.png') 2x); |
91 } | 91 } |
OLD | NEW |