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

Side by Side Diff: remoting/webapp/main.css

Issue 9578004: Remove scrollbar styling, which provokes a WebKit/Chrome rendering issue. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 9 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 | « 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 5
6 html,body,div,span,applet,object,iframe, 6 html,body,div,span,applet,object,iframe,
7 h1,h2,h3,h4,h5,h6,p,blockquote,pre, 7 h1,h2,h3,h4,h5,h6,p,blockquote,pre,
8 a,abbr,acronym,address,big,cite,code, 8 a,abbr,acronym,address,big,cite,code,
9 del,dfn,em,font,img,ins,kbd,q,s,samp, 9 del,dfn,em,font,img,ins,kbd,q,s,samp,
10 small,strike,strong,sub,sup,tt,var, 10 small,strike,strong,sub,sup,tt,var,
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 padding:30px 42px; 196 padding:30px 42px;
197 width: 500px; 197 width: 500px;
198 height: auto; 198 height: auto;
199 overflow: hidden; 199 overflow: hidden;
200 z-index: 100; 200 z-index: 100;
201 opacity: 0.0; 201 opacity: 0.0;
202 -webkit-transform: scale(1.05); 202 -webkit-transform: scale(1.05);
203 -webkit-transition: all 0.218s; 203 -webkit-transition: all 0.218s;
204 } 204 }
205 205
206 ::-webkit-scrollbar {
207 width: 16px;
208 height: 16px;
209 }
210
211 ::-webkit-scrollbar-button {
212 height: 0px;
213 width: 0px;
214 }
215
216 ::-webkit-scrollbar-thumb {
217 min-height: 28px;
218 padding-top:100px;
219 background-clip:padding-box;
220 background-color: rgba(0,0,0,0.2);
221 -webkit-box-shadow: inset 1px 1px 0px rgba(0,0,0,0.10),
222 inset 0px -1px 0px rgba(0,0,0,0.07);
223 }
224
225 ::-webkit-scrollbar-thumb:hover {
226 background-color: rgba(0,0,0,0.4);
227 -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.25);
228 }
229
230 ::-webkit-scrollbar-thumb:active {
231 -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35);
232 background-color: rgba(0,0,0,0.5);
233 }
234
235 ::-webkit-scrollbar-track:hover {
236 background-color:rgba(0,0,0,0.05);
237 -webkit-box-shadow: inset 1px 0px 0px rgba(0,0,0,0.10);
238 }
239
240 ::-webkit-scrollbar-track:active {
241 background-color:rgba(0,0,0,0.05);
242 -webkit-box-shadow: inset 1px 0px 0px rgba(0,0,0,0.14),
243 inset -1px -1px 0px rgba(0,0,0,0.07);
244 }
245 .kd-button-share.disabled, .kd-button-share.disabled:hover, .kd-button-share.dis abled:active { 206 .kd-button-share.disabled, .kd-button-share.disabled:hover, .kd-button-share.dis abled:active {
246 border-color:#29691d; 207 border-color:#29691d;
247 background-color: #3d9400; 208 background-color: #3d9400;
248 } 209 }
249 .kd-button-share:focus, .kd-button-share.focus{ 210 .kd-button-share:focus, .kd-button-share.focus{
250 border-color:#29691d; 211 border-color:#29691d;
251 } 212 }
252 .kd-button-share { 213 .kd-button-share {
253 border-color: #29691d; 214 border-color: #29691d;
254 background-color: #3d9400; 215 background-color: #3d9400;
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 line-height: 0; 578 line-height: 0;
618 } 579 }
619 580
620 #top-secondary { 581 #top-secondary {
621 margin-top: 10px 582 margin-top: 10px
622 } 583 }
623 584
624 * { 585 * {
625 box-sizing: border-box; 586 box-sizing: border-box;
626 } 587 }
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