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

Side by Side Diff: chrome/browser/resources/shared/css/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
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 .bubble { 6 .bubble {
7 position: absolute; 7 position: absolute;
8 /* Height is dynamic, width fixed. */ 8 /* Height is dynamic, width fixed. */
9 width: 300px; 9 width: 300px;
10 z-index: 9999; 10 z-index: 9999;
(...skipping 20 matching lines...) Expand all
31 width: 16px; 31 width: 16px;
32 z-index: 4; 32 z-index: 4;
33 } 33 }
34 34
35 html[dir='rtl'] .bubble-close { 35 html[dir='rtl'] .bubble-close {
36 left: 6px; 36 left: 6px;
37 right: auto; 37 right: auto;
38 } 38 }
39 39
40 .bubble-close { 40 .bubble-close {
41 background-image: url('chrome://theme/IDR_CLOSE_BAR'); 41 background-image: url('../../../../../ui/resources/close_bar.png');
42 } 42 }
43 43
44 .bubble-close:hover { 44 .bubble-close:hover {
45 background-image: url('chrome://theme/IDR_CLOSE_BAR_H'); 45 background-image: url('../../../../../ui/resources/close_bar_h.png');
46 } 46 }
47 47
48 .bubble-close:active { 48 .bubble-close:active {
49 background-image: url('chrome://theme/IDR_CLOSE_BAR_P'); 49 background-image: url('../../../../../ui/resources/close_bar_p.png');
50 } 50 }
51 51
52 .bubble-shadow { 52 .bubble-shadow {
53 bottom: -2px; 53 bottom: -2px;
54 left: 0; 54 left: 0;
55 position: absolute; 55 position: absolute;
56 right: 0; 56 right: 0;
57 top: 0; 57 top: 0;
58 z-index: 1; 58 z-index: 1;
59 } 59 }
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 .bubble-arrow { 97 .bubble-arrow {
98 border: 1px solid rgba(0, 0, 0, 0.3); 98 border: 1px solid rgba(0, 0, 0, 0.3);
99 -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); 99 -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
100 } 100 }
101 101
102 .bubble-shadow, 102 .bubble-shadow,
103 .bubble-contents { 103 .bubble-contents {
104 border-radius: 6px; 104 border-radius: 6px;
105 box-sizing: border-box; 105 box-sizing: border-box;
106 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698