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

Unified Diff: chrome/browser/resources/chromeos/login/oobe.css

Issue 7520037: [cros] Network dropdown button in WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove debug Created 9 years, 4 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
« no previous file with comments | « chrome/browser/chromeos/status/network_menu.h ('k') | chrome/browser/resources/chromeos/login/oobe.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/login/oobe.css
diff --git a/chrome/browser/resources/chromeos/login/oobe.css b/chrome/browser/resources/chromeos/login/oobe.css
index 46287f2a15f123c6d5c2b0fcbd7bf681591b17d6..0ab6264820f5d59feb06c169c80332c97a225875 100644
--- a/chrome/browser/resources/chromeos/login/oobe.css
+++ b/chrome/browser/resources/chromeos/login/oobe.css
@@ -55,6 +55,7 @@ hr.bottom {
rgba(0,0,0,0.2)), rgba(0,0,0,0.0));
border-bottom: 1px solid rgba(0,0,0,0.5);
height: 2px;
+ z-index: 0;
}
#header {
@@ -507,6 +508,99 @@ body.login-display #progress {
visibility: hidden;
}
+.dropdown-title {
+ -webkit-border-radius: 2px;
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+ -webkit-padding-end: 20px;
+ -webkit-padding-start: 2px;
+ -webkit-user-select: none;
+ background-image: url('../../shared/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-size: inherit;
+ height: 24px;
+ margin: 0;
+ overflow: hidden;
+ padding-top: 2px;
+ padding-bottom: 2px;
+ text-overflow: ellipsis;
+ text-align: left;
+ text-indent: 4px;
+ white-space: nowrap;
+ width: 250px;
+}
+
+.dropdown-title:hover {
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
+ background-image: url('../../shared/images/select.png'),
+ -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9);
+ color: #333;
+ background-position: center right;
+ background-repeat: no-repeat;
+}
+
+.dropdown-title:active {
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
+ background-image: url('../../shared/images/select.png'),
+ -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc);
+ color: #444;
+}
+
+.dropdown-container {
+ background: #f7f7f7;
+ border: 1px solid #7c91bf;
+ padding-bottom: 2px;
+ padding-top: 2px;
+ position: relative;
+ top: 100%;
+ width: 248px;
+ z-index: 1;
+}
+
+.dropdown-item-container {
+ display: -webkit-box;
+ height: 24px;
+ padding-left: 5px;
+}
+
+.dropdown-item-container:hover {
+ background: #dce4fa;
+}
+
+.dropdown-image {
+ width: 24px;
+}
+
+.dropdown-item {
+ cursor: default;
+ color: #555;
+ overflow: hidden;
+ padding-top: 4px;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ width: 219px;
+}
+
+.dropdown-divider {
+ height: 3px;
+}
+
+.dropdown-divider hr {
+ -webkit-margin-before: 2px;
+ -webkit-margin-after: 2px;
+}
+
+.dropdown-item.disabled-item {
+ color: graytext;
+}
+
+span.bold {
+ font-weight: bold;
+}
+
.error-message {
-webkit-padding-start: 30px;
background-image: url('chrome://theme/IDR_WARNING');
« no previous file with comments | « chrome/browser/chromeos/status/network_menu.h ('k') | chrome/browser/resources/chromeos/login/oobe.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698