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; |
-} |