cdm-dataportal/7.x/themes/zen_dataportal/sass/forms-rtl.scss @ 1dc9554f
1 |
/**
|
---|---|
2 |
* @file
|
3 |
* RTL companion for the forms.css file.
|
4 |
*/
|
5 |
|
6 |
@import "base"; |
7 |
|
8 |
|
9 |
/*
|
10 |
* Drupal's default login form block
|
11 |
*/
|
12 |
|
13 |
#user-login-form { |
14 |
text-align: right; |
15 |
|
16 |
/*
|
17 |
* OpenID
|
18 |
*
|
19 |
* The default styling for the OpenID login link seems to assume Garland's
|
20 |
* styling of list items.
|
21 |
*/
|
22 |
|
23 |
html.js & li.openid-link, |
24 |
li.openid-link { /* The "Log in using OpenID" link. */ |
25 |
margin-left: 0; |
26 |
margin-right: -20px; /* Un-do some of the padding on the ul list. */ |
27 |
}
|
28 |
}
|
29 |
|
30 |
/*
|
31 |
* Drupal admin tables
|
32 |
*
|
33 |
* We overrode these styles in html-elements.css, but restore them for the admin
|
34 |
* section of the site.
|
35 |
*/
|
36 |
|
37 |
form { |
38 |
th { |
39 |
text-align: right; |
40 |
padding-left: 1em; |
41 |
padding-right: 0; |
42 |
}
|
43 |
}
|