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

Side by Side Diff: chrome/browser/resources/menu.css

Issue 3771003: First round UI touch up of DOMUI based network menu. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: sync and try Created 10 years, 2 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
« no previous file with comments | « chrome/browser/chromeos/dom_ui/network_menu_ui.cc ('k') | chrome/browser/resources/menu.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 body { 1 body {
2 background: -webkit-gradient(linear, left top, left bottom, 2 background: -webkit-gradient(linear, left top, left bottom,
3 from(white), 3 from(white),
4 to(#EEE)); 4 to(#EEE));
5 cursor: default;
5 margin: 0; 6 margin: 0;
6 -webkit-user-select: none; 7 -webkit-user-select: none;
7 overflow: hidden; 8 overflow: hidden;
8 } 9 }
9 10
10 .menu-item { 11 .menu-item {
11 white-space: nowrap; 12 white-space: nowrap;
12 margin: 0; 13 margin: 0;
13 padding-top: 1px; 14 padding-top: 1px;
14 padding-bottom: 1px; 15 padding-bottom: 1px;
(...skipping 10 matching lines...) Expand all
25 26
26 .no-icon { 27 .no-icon {
27 -webkit-padding-start: 19px; 28 -webkit-padding-start: 19px;
28 } 29 }
29 30
30 .menu-label { 31 .menu-label {
31 -webkit-box-flex: 1; 32 -webkit-box-flex: 1;
32 vertical-align: middle; 33 vertical-align: middle;
33 } 34 }
34 35
35 .accelerator { 36 .accelerator {
36 opacity: 0.3; 37 opacity: 0.3;
37 -webkit-margin-start: 15px; 38 -webkit-margin-start: 15px;
38 } 39 }
39 40
40 .left-icon { 41 .left-icon {
41 background-position: 4px center; 42 background-position: 4px center;
42 } 43 }
43 44
44 .right-icon { 45 .right-icon {
45 background-position: right center; 46 background-position: right center;
46 } 47 }
47 48
48 .separator { 49 .separator {
49 background: -webkit-gradient(linear, 0 0, 96% 0, from(rgba(0, 0, 0, .10)), 50 background: -webkit-gradient(linear, 0 0, 96% 0, from(rgba(0, 0, 0, .10)),
50 to(rgba(0, 0, 0, .02))); 51 to(rgba(0, 0, 0, .02)));
51 border: 0; 52 border: 0;
52 height: 1px; 53 height: 1px;
53 margin: 4px 0; 54 margin: 4px 0;
54 } 55 }
(...skipping 29 matching lines...) Expand all
84 } 85 }
85 86
86 .scroll-button:hover { 87 .scroll-button:hover {
87 background-color: #DCE5FA; 88 background-color: #DCE5FA;
88 } 89 }
89 90
90 .hidden { 91 .hidden {
91 display: none; 92 display: none;
92 } 93 }
93 94
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/dom_ui/network_menu_ui.cc ('k') | chrome/browser/resources/menu.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698