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

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

Issue 11854012: Rename options.OptionsBubble to cr.ui.AutoCloseBubble (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove obsoleted CSS declaration. 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
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 .bubble-shadow, 92 .bubble-shadow,
93 .bubble-arrow { 93 .bubble-arrow {
94 border: 1px solid rgba(0, 0, 0, 0.3); 94 border: 1px solid rgba(0, 0, 0, 0.3);
95 } 95 }
96 96
97 .bubble-shadow, 97 .bubble-shadow,
98 .bubble-content { 98 .bubble-content {
99 border-radius: 6px; 99 border-radius: 6px;
100 box-sizing: border-box; 100 box-sizing: border-box;
101 } 101 }
102
103 .auto-close-bubble {
104 position: fixed;
105 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/options_page.js ('k') | chrome/browser/resources/shared/js/cr/ui/bubble.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698