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

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

Issue 11962043: Move webui resources from chrome\browser\resources\shared to ui\webui\resources. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 | « ui/webui/OWNERS ('k') | ui/webui/resources/css/expandable_bubble.css » ('j') | 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 .bubble { 5 .bubble {
6 position: absolute; 6 position: absolute;
7 white-space: normal; 7 white-space: normal;
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 24 matching lines...) Expand all
35 z-index: 4; 35 z-index: 4;
36 } 36 }
37 37
38 html[dir='rtl'] .bubble-close { 38 html[dir='rtl'] .bubble-close {
39 left: 6px; 39 left: 6px;
40 right: auto; 40 right: auto;
41 } 41 }
42 42
43 .bubble-close { 43 .bubble-close {
44 background-image: -webkit-image-set( 44 background-image: -webkit-image-set(
45 url('../../../../../ui/resources/default_100_percent/close_bar.png') 1x, 45 url('../../../resources/default_100_percent/close_bar.png') 1x,
46 url('../../../../../ui/resources/default_200_percent/close_bar.png') 2x); 46 url('../../../resources/default_200_percent/close_bar.png') 2x);
47 } 47 }
48 48
49 .bubble-close:hover { 49 .bubble-close:hover {
50 background-image: -webkit-image-set( 50 background-image: -webkit-image-set(
51 url('../../../../../ui/resources/default_100_percent/close_bar_hover.png') 51 url('../../../resources/default_100_percent/close_bar_hover.png') 1x,
52 1x, 52 url('../../../resources/default_200_percent/close_bar_hover.png') 2x);
53 url('../../../../../ui/resources/default_200_percent/close_bar_hover.png')
54 2x);
55 } 53 }
56 54
57 .bubble-close:active { 55 .bubble-close:active {
58 background-image: -webkit-image-set( 56 background-image: -webkit-image-set(
59 url('../../../../../ui/resources/default_100_percent/close_bar_pressed.png') 57 url('../../../resources/default_100_percent/close_bar_pressed.png') 1x,
60 1x, 58 url('../../../resources/default_200_percent/close_bar_pressed.png') 2x);
61 url('../../../../../ui/resources/default_200_percent/close_bar_pressed.png')
62 2x);
63 } 59 }
64 60
65 .bubble-shadow { 61 .bubble-shadow {
66 bottom: 0; 62 bottom: 0;
67 box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); 63 box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
68 left: 0; 64 left: 0;
69 position: absolute; 65 position: absolute;
70 right: 0; 66 right: 0;
71 top: 0; 67 top: 0;
72 z-index: 1; 68 z-index: 1;
(...skipping 20 matching lines...) Expand all
93 89
94 .bubble-shadow, 90 .bubble-shadow,
95 .bubble-content { 91 .bubble-content {
96 border-radius: 6px; 92 border-radius: 6px;
97 box-sizing: border-box; 93 box-sizing: border-box;
98 } 94 }
99 95
100 .auto-close-bubble { 96 .auto-close-bubble {
101 position: fixed; 97 position: fixed;
102 } 98 }
OLDNEW
« no previous file with comments | « ui/webui/OWNERS ('k') | ui/webui/resources/css/expandable_bubble.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698