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

Unified 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: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/bookmark_manager/css/bookmark_all_tabs.css
diff --git a/chrome/browser/resources/bookmark_manager/css/bookmark_all_tabs.css b/chrome/browser/resources/bookmark_manager/css/bookmark_all_tabs.css
new file mode 100644
index 0000000000000000000000000000000000000000..4ebecb36bb56b8b114aab04608947d30c3427147
--- /dev/null
+++ b/chrome/browser/resources/bookmark_manager/css/bookmark_all_tabs.css
@@ -0,0 +1,74 @@
+/*
+ * Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+* {
+ margin: 0;
+ padding: 0;
+}
+
+/* Outer frame of the dialog. */
+body {
+ -webkit-box-orient: vertical;
+ -webkit-user-select: none;
+ display: -webkit-box;
+ font-family: segoe ui, arial, helvetica, sans-serif;
+ height: 100%;
+ min-height: 150px;
+ position: absolute;
+ width: 100%;
+}
+
+/* Container for the detail list views. */
+.dialog-body {
+ -webkit-box-flex: 1;
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ margin: 6px;
+}
+
+.dialog-body > div {
+ margin: 6px;
+}
+
+#name-form {
+ display: -webkit-box;
+}
+
+#name-form > * {
+ display: block;
+}
+
+#name-form > span {
+ display: inline-block;
+ vertical-align: middle;
+}
+
+#name-form > #new-name {
+ -webkit-box-flex: 1;
+ margin-left: 5px;
+}
+
+#tree-container {
+ -webkit-box-flex: 1;
+ border: 1px solid #AAA;
+ border-radius: 2px;
+ overflow: auto;
+}
+
+#tree {
+ height: 100%;
+ overflow: visible;
+ width: 100%;
+}
+
+#ok {
+ float: right;
+ margin-right: 15px;
+}
+
+#cancel {
+ float: right;
+}

Powered by Google App Engine
This is Rietveld 408576698