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

Side by Side Diff: chrome/browser/resources/options/chromeos_internet_options_page.css

Issue 4976007: Don't allow connection to networks that are not connected.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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/options/chromeos_internet_network_element.js ('k') | 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 /* 1 /*
2 * TODO(xiyuan): Remove the section overrides when options_page.css uses the 2 * TODO(xiyuan): Remove the section overrides when options_page.css uses the
3 * new style. 3 * new style.
4 */ 4 */
5 #inetTitle { 5 #inetTitle {
6 border: none; 6 border: none;
7 } 7 }
8 8
9 #internetPage > section { 9 #internetPage > section {
10 display: block; 10 display: block;
(...skipping 29 matching lines...) Expand all
40 40
41 .network-item { 41 .network-item {
42 -webkit-box-align: center; 42 -webkit-box-align: center;
43 -webkit-padding-start: 30px; 43 -webkit-padding-start: 30px;
44 border: 1px solid rgba(255,255,255,0); /* transparent white */ 44 border: 1px solid rgba(255,255,255,0); /* transparent white */
45 border-radius: 2px; 45 border-radius: 2px;
46 display: -webkit-box; 46 display: -webkit-box;
47 height: 35px; 47 height: 35px;
48 } 48 }
49 49
50 .network-item:hover { 50 .network-item[connectable]:hover {
xiyuan 2010/11/16 23:52:18 What style will be used for non-connectable networ
51 border-color: hsl(214, 91%, 85%); 51 border-color: hsl(214, 91%, 85%);
52 background-color: hsl(214, 91%, 97%); 52 background-color: hsl(214, 91%, 97%);
53 } 53 }
54 54
55 .network-item[connected] { 55 .network-item[connected] {
56 background-image: -webkit-gradient(linear, left top, left bottom, 56 background-image: -webkit-gradient(linear, left top, left bottom,
57 from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); 57 from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0)));
58 background-color: hsl(214,91%,89%); 58 background-color: hsl(214,91%,89%);
59 border-color: hsl(214, 91%, 65%); 59 border-color: hsl(214, 91%, 65%);
60 } 60 }
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 #detailsInternetPage[cert] .password-details, 162 #detailsInternetPage[cert] .password-details,
163 #detailsInternetPage[certPkcs] .password-details, 163 #detailsInternetPage[certPkcs] .password-details,
164 #detailsInternetPage:not([cert]) .cert-details, 164 #detailsInternetPage:not([cert]) .cert-details,
165 #detailsInternetPage:not([certPkcs]) .cert-pkcs-details { 165 #detailsInternetPage:not([certPkcs]) .cert-pkcs-details {
166 display: none; 166 display: none;
167 } 167 }
168 168
169 #wirelessButtons > * > button { 169 #wirelessButtons > * > button {
170 margin-left: 5px; 170 margin-left: 5px;
171 } 171 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/chromeos_internet_network_element.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698