OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 * Css based bubble. | 5 * Css based bubble. |
6 */ | 6 */ |
7 | 7 |
8 .bubble { | 8 .bubble { |
9 -webkit-transition: opacity 200ms ease-in-out; | 9 -webkit-transition: opacity 200ms ease-in-out; |
10 background: white; | 10 background: white; |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 background-size: 24px; | 119 background-size: 24px; |
120 } | 120 } |
121 | 121 |
122 .error-message-bubble-padding { | 122 .error-message-bubble-padding { |
123 margin-bottom: 10px; | 123 margin-bottom: 10px; |
124 } | 124 } |
125 | 125 |
126 html[dir=rtl] .error-message-bubble { | 126 html[dir=rtl] .error-message-bubble { |
127 background-position: right top; | 127 background-position: right top; |
128 } | 128 } |
OLD | NEW |