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

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

Issue 8118012: WebUI Edit Search Engine Dialog (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: changed webui class names as per precedent Created 9 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
OLDNEW
(Empty)
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 html, body {
7 height: 100%;
8 margin: 0;
9 overflow: hidden;
10 }
11
12 .hfill {
13 width: 100%;
14 }
15
16 input {
17 box-sizing: border-box;
18 }
19
20 #url-description {
21 margin: 12px 3px 0 3px;
22 }
23
24 .action-area {
25 -webkit-box-align: center;
26 -webkit-box-orient: horizontal;
27 -webkit-box-pack: end;
28 display: -webkit-box;
29 padding: 12px;
30 text-align: end;
31 }
32
33 .button-strip {
34 -webkit-box-orient: horizontal;
35 display: -webkit-box;
36 }
37
38 .button-strip > button {
39 -webkit-margin-start: 10px;
40 display: block;
41 white-space: nowrap;
42 }
43
44 .valid {
45 background-image: url("chrome://theme/IDR_INPUT_GOOD");
46 height: 21px;
47 width: 22px;
48 }
49
50 .invalid {
51 background-image: url("chrome://theme/IDR_INPUT_ALERT");
52 height: 21px;
53 width: 22px;
54 }
55 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/edit_search_engine_dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698