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

Unified Diff: chrome/browser/resources/shared/css/select.css

Issue 9579001: css hack n' slash, continued: New styles for buttons and selects. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: message font size Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/shared/css/select.css
diff --git a/chrome/browser/resources/shared/css/select.css b/chrome/browser/resources/shared/css/select.css
deleted file mode 100644
index a9bb5047eba058d9cd3c37be94779b1750283f20..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/shared/css/select.css
+++ /dev/null
@@ -1,50 +0,0 @@
-/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-select {
- -webkit-appearance: button;
- -webkit-border-radius: 3px;
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
- -webkit-padding-end: 20px;
- -webkit-padding-start: 8px;
- -webkit-user-select: none;
- background-image: url("../images/select.png"),
- -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
- background-position: center right;
- background-repeat: no-repeat;
- border: 1px solid #aaa;
- color: #555;
- font: inherit;
- margin: 0;
- overflow: hidden;
- padding-top: 2px;
- padding-bottom: 2px;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-
-html[dir='rtl'] select {
- background-position: center left;
-}
-
-select:disabled {
- color: graytext;
- background-image: url("../images/disabled_select.png"),
- -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9);
-}
-
-select:enabled:hover {
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
- background-image: url("../images/select.png"),
- -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9);
- color: #333;
-}
-
-select:enabled:active {
- -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
- background-image: url("../images/select.png"),
- -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc);
- color: #444;
-}
« no previous file with comments | « chrome/browser/resources/shared/css/chrome_shared2.css ('k') | chrome/browser/resources/shared_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698