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

Side by Side Diff: chrome/browser/resources/options2/browser_options_page.css

Issue 9181013: [uber page] Migrate remaining Personal options into Browser options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: How about another rebase! (damn you generated_resources.grd) Created 8 years, 11 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 /* TODO(csilv): Re-order, rename selectors according to style guide. */
2 /* TODO(csilv): Rename this file 'browser_options.css' */
3
1 /* This is necessary because the fix for correctly wrapping labels 4 /* This is necessary because the fix for correctly wrapping labels
2 * (crbug.com/109334) requires labels to be display: block; however, this label 5 * (crbug.com/109334) requires labels to be display: block; however, this label
3 * has a buttom inline after it. 6 * has a buttom inline after it.
4 */ 7 */
5 #home-page-label { 8 #home-page-label {
6 display: inline; 9 display: inline;
7 } 10 }
8 11
9 #defaultSearchEngineGroup { 12 #defaultSearchEngineGroup {
10 display: -webkit-box; 13 display: -webkit-box;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #instantConfirmText { 46 #instantConfirmText {
44 font-family: inherit; 47 font-family: inherit;
45 white-space: pre-wrap; 48 white-space: pre-wrap;
46 width: 500px; 49 width: 500px;
47 } 50 }
48 51
49 #instantConfirmLearnMore { 52 #instantConfirmLearnMore {
50 position: absolute; 53 position: absolute;
51 bottom: 18px; 54 bottom: 18px;
52 } 55 }
56
57 #account-picture-wrapper {
58 border-radius: 4px;
59 border: 1px solid rgba(0, 0, 0, 0.3);
60 display: inline-block;
61 margin: 5px 10px 5px 2px;
62 padding: 3px;
63 }
64
65 #account-picture {
66 width: 70px;
67 height: 70px;
68 vertical-align: middle;
69 }
70
71 #start-stop-sync {
72 margin-left: 0;
73 margin-right: 5px;
74 }
75
76 #profiles-list {
77 min-height: 0;
78 margin-bottom: 10px;
79 }
80
81 #profiles-list > * {
82 height: 40px;
83 }
84
85 .profile-img {
86 height: 31px;
87 padding: 3px;
88 vertical-align: middle;
89 width: 38px;
90 }
91
92 .profile-item-current {
93 font-weight: bold;
94 }
95
96 #themes-gallery-div {
97 margin: 10px 0;
98 }
99
100 .sync-error {
101 background: #FFDBDB;
102 border: 1px solid #ce4c4c;
103 border-radius: 2px;
104 padding: 10px;
105 }
106
107 .sync-error .link-button {
108 margin: 0 1ex;
109 padding: 0;
110 }
111
112 #enable-auto-login-checkbox {
113 margin-top: 10px;
114 }
115
116 #mac-passwords-warning,
117 #manage-data-group {
118 margin-top: 10px;
119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698