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

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

Issue 3108011: If ethernet is not available (i.e. no wired nic), don't show ethernet in stat... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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 unified diff | Download patch | Annotate | Revision Log
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 #internetPage > section { 5 #internetPage > section {
6 display: block; 6 display: block;
7 } 7 }
8 8
9 #internetPage > section > h3 { 9 #internetPage > section > h3 {
10 font-size: 100%; 10 font-size: 100%;
11 width: auto; 11 width: auto;
12 } 12 }
13 13
14 #internetPage > section[hidden] {
15 display: none;
16 }
17
14 .networks { 18 .networks {
15 -webkit-margin-start: 15px; 19 -webkit-margin-start: 15px;
16 padding: 2px; 20 padding: 2px;
17 } 21 }
18 22
19 .network-item { 23 .network-item {
20 -webkit-box-align: center; 24 -webkit-box-align: center;
21 -webkit-padding-start: 30px; 25 -webkit-padding-start: 30px;
22 border: 1px solid rgba(255,255,255,0); /* transparent white */ 26 border: 1px solid rgba(255,255,255,0); /* transparent white */
23 border-radius: 2px; 27 border-radius: 2px;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 } 69 }
66 70
67 .network-item:hover > * > button, 71 .network-item:hover > * > button,
68 .network-item[connected] > * > button { 72 .network-item[connected] > * > button {
69 visibility: visible; 73 visibility: visible;
70 } 74 }
71 75
72 .network-item-box-spacer { 76 .network-item-box-spacer {
73 -webkit-box-flex: 1; 77 -webkit-box-flex: 1;
74 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698