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

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

Issue 15823004: Remove lines of CSS which have invalid property values. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing the lines of CSS which would have been ignored anyway (due to their invalid property value… Created 7 years, 7 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 47 }
48 48
49 .expandable-bubble[expanded] > .expandable-bubble-contents > 49 .expandable-bubble[expanded] > .expandable-bubble-contents >
50 .expandable-bubble-title { 50 .expandable-bubble-title {
51 font-size: 13px; 51 font-size: 13px;
52 margin-bottom: 3px; 52 margin-bottom: 3px;
53 margin-left: 0; 53 margin-left: 0;
54 } 54 }
55 55
56 .expandable-bubble-close { 56 .expandable-bubble-close {
57 background-image: no-repeat 50% 50%;
58 height: 16px; 57 height: 16px;
59 position: absolute; 58 position: absolute;
60 right: 0; 59 right: 0;
61 top: 0; 60 top: 0;
62 width: 16px; 61 width: 16px;
63 z-index: 2; 62 z-index: 2;
64 } 63 }
65 64
66 .expandable-bubble[expanded] { 65 .expandable-bubble[expanded] {
67 padding: 3px; 66 padding: 3px;
(...skipping 14 matching lines...) Expand all
82 background-image: -webkit-image-set( 81 background-image: -webkit-image-set(
83 url('../../../resources/default_100_percent/close_2_hover.png') 1x, 82 url('../../../resources/default_100_percent/close_2_hover.png') 1x,
84 url('../../../resources/default_200_percent/close_2_hover.png') 2x); 83 url('../../../resources/default_200_percent/close_2_hover.png') 2x);
85 } 84 }
86 85
87 .expandable-bubble-close:active { 86 .expandable-bubble-close:active {
88 background-image: -webkit-image-set( 87 background-image: -webkit-image-set(
89 url('../../../resources/default_100_percent/close_2_pressed.png') 1x, 88 url('../../../resources/default_100_percent/close_2_pressed.png') 1x,
90 url('../../../resources/default_200_percent/close_2_pressed.png') 2x); 89 url('../../../resources/default_200_percent/close_2_pressed.png') 2x);
91 } 90 }
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