blob: a2169b3894e2706c680556ee15728698cf669eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
}
|