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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/edit_search_engine_dialog.css
diff --git a/chrome/browser/resources/edit_search_engine_dialog.css b/chrome/browser/resources/edit_search_engine_dialog.css
new file mode 100644
index 0000000000000000000000000000000000000000..b12d303ad8d70b186ec3e53283106d8e5e6f62a1
--- /dev/null
+++ b/chrome/browser/resources/edit_search_engine_dialog.css
@@ -0,0 +1,55 @@
+/* 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.
+ */
+
+html, body {
+ height: 100%;
+ margin: 0;
+ overflow: hidden;
+}
+
+.hfill {
+ width: 100%;
+}
+
+input {
+ box-sizing: border-box;
+}
+
+#url-description {
+ margin: 12px 3px 0 3px;
+}
+
+.action-area {
+ -webkit-box-align: center;
+ -webkit-box-orient: horizontal;
+ -webkit-box-pack: end;
+ display: -webkit-box;
+ padding: 12px;
+ text-align: end;
+}
+
+.button-strip {
+ -webkit-box-orient: horizontal;
+ display: -webkit-box;
+}
+
+.button-strip > button {
+ -webkit-margin-start: 10px;
+ display: block;
+ white-space: nowrap;
+}
+
+.valid {
+ background-image: url("chrome://theme/IDR_INPUT_GOOD");
+ height: 21px;
+ width: 22px;
+}
+
+.invalid {
+ background-image: url("chrome://theme/IDR_INPUT_ALERT");
+ height: 21px;
+ width: 22px;
+}
+}
« 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