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

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

Issue 10701099: Make sure the bubbles are positioned relative to the content-area (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 5 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 | « no previous file | 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 /* The shield that overlays the background. */ 5 /* The shield that overlays the background. */
6 .overlay { 6 .overlay {
7 -webkit-box-align: center; 7 -webkit-box-align: center;
8 -webkit-box-orient: vertical; 8 -webkit-box-orient: vertical;
9 -webkit-box-pack: center; 9 -webkit-box-pack: center;
10 -webkit-transition: 200ms opacity; 10 -webkit-transition: 200ms opacity;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 * necessary. See http://crbug.com/119029. */ 102 * necessary. See http://crbug.com/119029. */
103 margin: 0; 103 margin: 0;
104 padding: 14px 17px 14px; 104 padding: 14px 17px 14px;
105 text-shadow: white 0 1px 2px; 105 text-shadow: white 0 1px 2px;
106 } 106 }
107 107
108 .overlay .page .content-area { 108 .overlay .page .content-area {
109 -webkit-box-flex: 1; 109 -webkit-box-flex: 1;
110 overflow: auto; 110 overflow: auto;
111 padding: 6px 17px 6px; 111 padding: 6px 17px 6px;
112 position: relative;
112 } 113 }
113 114
114 .overlay .page .action-area { 115 .overlay .page .action-area {
115 -webkit-box-align: center; 116 -webkit-box-align: center;
116 -webkit-box-orient: horizontal; 117 -webkit-box-orient: horizontal;
117 -webkit-box-pack: end; 118 -webkit-box-pack: end;
118 display: -webkit-box; 119 display: -webkit-box;
119 padding: 14px 17px; 120 padding: 14px 17px;
120 } 121 }
121 122
(...skipping 27 matching lines...) Expand all
149 .overlay .page .content-area::-webkit-scrollbar-thumb { 150 .overlay .page .content-area::-webkit-scrollbar-thumb {
150 background-color: rgba(0, 0, 0, 0.2); 151 background-color: rgba(0, 0, 0, 0.2);
151 border: 2px solid white; 152 border: 2px solid white;
152 border-radius: 8px; 153 border-radius: 8px;
153 } 154 }
154 155
155 .overlay .page .content-area::-webkit-scrollbar-thumb:hover { 156 .overlay .page .content-area::-webkit-scrollbar-thumb:hover {
156 background-color: rgba(0, 0, 0, 0.5); 157 background-color: rgba(0, 0, 0, 0.5);
157 } 158 }
158 </if> 159 </if>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698