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

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

Issue 8598017: History/Downloads: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: csilv@'s code review changes Created 9 years, 1 month 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 | « chrome/browser/resources/history.js ('k') | chrome/browser/resources/shared/css/select.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) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 button:not(.custom-appearance), 6 button:not(.custom-appearance),
7 input[type='button']:not(.custom-appearance), 7 input[type='button']:not(.custom-appearance),
8 input[type='submit']:not(.custom-appearance) { 8 input[type='submit']:not(.custom-appearance) {
9 -webkit-border-radius: 2px; 9 -webkit-border-radius: 3px;
10 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 10 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
11 -webkit-user-select: none; 11 -webkit-user-select: none;
12 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); 12 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
13 border: 1px solid #aaa; 13 border: 1px solid #aaa;
14 color: #444; 14 color: #444;
15 font-size: inherit; 15 font-size: inherit;
16 margin-bottom: 0; 16 margin-bottom: 0;
17 min-width: 4em; 17 min-width: 4em;
18 padding: 3px 12px; 18 padding: 3px 12px;
19 } 19 }
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 border: none !important; 84 border: none !important;
85 color: rgb(63, 110, 194); 85 color: rgb(63, 110, 194);
86 cursor: pointer; 86 cursor: pointer;
87 margin: 0; 87 margin: 0;
88 text-decoration: underline; 88 text-decoration: underline;
89 } 89 }
90 90
91 .link-button:active { 91 .link-button:active {
92 color: rgb(37, 64, 113); 92 color: rgb(37, 64, 113);
93 } 93 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/history.js ('k') | chrome/browser/resources/shared/css/select.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698