OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
6 .expandable-bubble { | 6 .expandable-bubble { |
7 -webkit-border-image: url('chrome://theme/IDR_APP_NOTIFICATION_SMALL_BUBBLE') | 7 -webkit-border-image: url('chrome://theme/IDR_APP_NOTIFICATION_SMALL_BUBBLE') |
8 5 5 7 6 stretch; | 8 5 5 7 6 stretch; |
9 -webkit-box-sizing: border-box; | 9 -webkit-box-sizing: border-box; |
10 -webkit-user-select: none; | 10 -webkit-user-select: none; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 .expandable-bubble[expanded] { | 67 .expandable-bubble[expanded] { |
68 padding: 3px; | 68 padding: 3px; |
69 z-index: 3; /* One higher then the close button on an unexpanded bubble. */ | 69 z-index: 3; /* One higher then the close button on an unexpanded bubble. */ |
70 } | 70 } |
71 | 71 |
72 .expandable-bubble[expanded] > .expandable-bubble-close { | 72 .expandable-bubble[expanded] > .expandable-bubble-close { |
73 z-index: 4; | 73 z-index: 4; |
74 } | 74 } |
75 | 75 |
76 .expandable-bubble-close { | 76 .expandable-bubble-close { |
77 background-image: url('chrome://theme/IDR_CLOSE_BAR'); | 77 background-image: url('../../../../../ui/resources/close_bar.png'); |
78 } | 78 } |
79 | 79 |
80 .expandable-bubble-close:hover { | 80 .expandable-bubble-close:hover { |
81 background-image: url('chrome://theme/IDR_CLOSE_BAR_H'); | 81 background-image: url('../../../../../ui/resources/close_bar_h.png'); |
82 } | 82 } |
83 | 83 |
84 .expandable-bubble-close:active { | 84 .expandable-bubble-close:active { |
85 background-image: url('chrome://theme/IDR_CLOSE_BAR_P'); | 85 background-image: url('../../../../../ui/resources/close_bar_p.png'); |
86 } | 86 } |
OLD | NEW |