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

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

Issue 9705010: ChromeOS language overlay: Move cancel button to the right (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use button-strip Created 8 years, 9 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/resources/options2/language_add_language_overlay.html ('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 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 .language-options { 5 .language-options {
6 display: -webkit-box; 6 display: -webkit-box;
7 margin: 10px 0; 7 margin: 10px 0;
8 } 8 }
9 9
10 .language-options-lower-left button, 10 .language-options-lower-left button,
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 /* 137 /*
138 * In ChromeOS we present the language choices as a big page of links. 138 * In ChromeOS we present the language choices as a big page of links.
139 */ 139 */
140 140
141 html[os=chromeos] #add-language-overlay-language-list { 141 html[os=chromeos] #add-language-overlay-language-list {
142 -webkit-column-count: 2; 142 -webkit-column-count: 2;
143 -webkit-column-gap: 20px; 143 -webkit-column-gap: 20px;
144 } 144 }
145 145
146 html[os=chromeos] #add-language-overlay-cancel-button { 146 html[os=chromeos] #add-language-overlay-cancel-button {
147 /* Place the button in the center. */
148 display: block;
149 margin: auto; 147 margin: auto;
150 margin-top: 15px; 148 margin-top: 15px;
Tyler Breisacher (Chromium) 2012/03/14 18:13:17 And actually we don't need this anymore either.
151 } 149 }
152 150
153 html[os=chromeos] #add-language-overlay-page { 151 html[os=chromeos] #add-language-overlay-page {
154 padding: 20px; 152 padding: 20px;
155 width: 800px; 153 width: 800px;
156 } 154 }
157 155
158 html[os=chromeos] #add-language-overlay-page button.link-button { 156 html[os=chromeos] #add-language-overlay-page button.link-button {
159 padding: 0; 157 padding: 0;
160 text-align: left; 158 text-align: left;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 234
237 button[disabled].text-button, 235 button[disabled].text-button,
238 button[disabled].text-button:active, 236 button[disabled].text-button:active,
239 button[disabled].text-button:focus, 237 button[disabled].text-button:focus,
240 button[disabled].text-button:hover { 238 button[disabled].text-button:hover {
241 -webkit-box-shadow: none; 239 -webkit-box-shadow: none;
242 background: transparent none; 240 background: transparent none;
243 border-color: transparent; 241 border-color: transparent;
244 color: #AAA; 242 color: #AAA;
245 } 243 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options2/language_add_language_overlay.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698