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

Unified Diff: chrome/browser/resources/edit_search_engine_dialog.css

Issue 8729042: WebUI "Edit Search Engine" Dialog now wider and deeper and buttons bottom justified (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed stale CSS and fixed RTL support. 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
« no previous file with comments | « no previous file | chrome/browser/ui/webui/edit_search_engine_dialog_webui.cc » ('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
index 0f89cfcb9b3056d9387051865703c5096eac5898..de4b2c12fb863ff33764559249e6b7bf9b94c785 100644
--- a/chrome/browser/resources/edit_search_engine_dialog.css
+++ b/chrome/browser/resources/edit_search_engine_dialog.css
@@ -34,12 +34,18 @@ table {
}
.action-area {
- -webkit-box-align: center;
- -webkit-box-orient: horizontal;
- -webkit-box-pack: end;
- display: -webkit-box;
+ bottom: 0;
+ padding: 12px;
+ position: absolute;
Rick Byers 2011/11/29 22:06:47 I believe the use of webkit-box here was to get th
+ right: 0;
+}
+
+html[dir=rtl] .action-area {
+ bottom: 0;
arv (Not doing code reviews) 2011/11/29 21:55:30 no need to duplicate bottom, padding nor position.
+ left: 0;
padding: 12px;
- text-align: end;
+ position: absolute;
+ right: auto;
}
.button-strip {
« no previous file with comments | « no previous file | chrome/browser/ui/webui/edit_search_engine_dialog_webui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698