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

Side by Side Diff: chrome/browser/resources/bookmark_manager/css/bookmark_all_tabs.css

Issue 8497008: Implement Bookmark All Tabs Dialog with WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fix Created 9 years, 1 month 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 /*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 * {
8 margin: 0;
9 padding: 0;
10 }
11
12 /* Outer frame of the dialog. */
13 body {
14 -webkit-box-orient: vertical;
15 -webkit-user-select: none;
16 display: -webkit-box;
17 font-family: segoe ui, arial, helvetica, sans-serif;
18 height: 100%;
19 min-height: 150px;
20 position: absolute;
21 width: 100%;
22 }
23
24 /* Container for the detail list views. */
25 .dialog-body {
26 -webkit-box-flex: 1;
27 -webkit-box-orient: vertical;
28 display: -webkit-box;
29 margin: 6px;
30 }
31
32 .dialog-body > div {
33 margin: 6px;
34 }
35
36 #name-form {
37 display: -webkit-box;
38 }
39
40 #name-form > * {
41 display: block;
42 }
43
44 #name-form > span {
45 display: inline-block;
46 vertical-align: middle;
47 }
48
49 #name-form > #new-name {
50 -webkit-box-flex: 1;
51 margin-left: 5px;
52 }
53
54 #tree-container {
55 -webkit-box-flex: 1;
56 border: 1px solid #AAA;
57 border-radius: 2px;
58 overflow: auto;
59 }
60
61 #tree {
62 height: 100%;
63 overflow: visible;
64 width: 100%;
65 }
66
67 #save {
68 float: right;
69 margin-right: 15px;
70 }
71
72 #cancel {
73 float: right;
74 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/bookmark_manager/bookmark_all_tabs.html ('k') | chrome/browser/resources/bookmark_manager/js/bmm.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698