Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: chrome/browser/resources/shared/css/expandable_bubble.css

Issue 9192037: Remove dangling chrome://theme/IDR_CLOSE_BAR* references (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/shared/css/bubble.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/shared/css/bubble.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698