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

Side by Side Diff: ui/webui/resources/css/expandable_bubble.css

Issue 12742013: Inconsistent use of [x] close panel icon. Code changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_217094_3
Patch Set: Created 7 years, 9 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
« no previous file with comments | « ui/webui/resources/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) 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
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 }
OLDNEW
« no previous file with comments | « ui/webui/resources/css/bubble.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698