diff options
author | Alvin Li <liweitianux@gmail.com> | 2013-08-13 14:13:24 +0800 |
---|---|---|
committer | Alvin Li <liweitianux@gmail.com> | 2013-08-13 14:13:24 +0800 |
commit | 9636d4a6767f49384d5c386bc3f1142c88b90613 (patch) | |
tree | 3a70f6d9e4be1791d36c87cc7cbfd1d5aa2b39dd /97suifangqa/staticfiles/stylesheets/sass/forms-rtl.css | |
parent | 9383d9a8a5988d071766c3d08a5c946e9c5b02ae (diff) | |
download | 97dev-9636d4a6767f49384d5c386bc3f1142c88b90613.tar.bz2 |
cloned from 'bitbucket', 2013/08/13
Diffstat (limited to '97suifangqa/staticfiles/stylesheets/sass/forms-rtl.css')
-rw-r--r-- | 97suifangqa/staticfiles/stylesheets/sass/forms-rtl.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/97suifangqa/staticfiles/stylesheets/sass/forms-rtl.css b/97suifangqa/staticfiles/stylesheets/sass/forms-rtl.css new file mode 100644 index 0000000..a2169b3 --- /dev/null +++ b/97suifangqa/staticfiles/stylesheets/sass/forms-rtl.css @@ -0,0 +1,38 @@ +/**
+ * @file
+ * RTL companion for the forms.css file.
+ */
+/*
+ * Drupal's default login form block
+ */
+/* line 13, ../../../sass/sass/forms-rtl.scss */
+#user-login-form {
+ text-align: right;
+ /*
+ * OpenID
+ *
+ * The default styling for the OpenID login link seems to assume Garland's
+ * styling of list items.
+ */
+}
+/* line 24, ../../../sass/sass/forms-rtl.scss */
+html.js #user-login-form li.openid-link,
+#user-login-form li.openid-link {
+ /* The "Log in using OpenID" link. */
+ margin-left: 0;
+ margin-right: -20px;
+ /* Un-do some of the padding on the ul list. */
+}
+
+/*
+ * Drupal admin tables
+ *
+ * We overrode these styles in html-elements.css, but restore them for the admin
+ * section of the site.
+ */
+/* line 38, ../../../sass/sass/forms-rtl.scss */
+form th {
+ text-align: right;
+ padding-left: 1em;
+ padding-right: 0;
+}
|