Project

General

Profile

Download (1.03 KB) Statistics
| Branch: | Tag: | Revision:
1
/* normalize-rtl.css - RTL language extension of normalize.scss. */
2

    
3
@import "base";
4

    
5

    
6
/* =============================================================================
7
   Lists
8
   ========================================================================== */
9

    
10
/*
11
 * Addresses margins set differently in IE6/7
12
 */
13

    
14
dd {
15
  margin: 0 $indent-amount 0 0;
16
}
17

    
18
/*
19
 * Addresses paddings set differently in IE6/7
20
 */
21

    
22
menu,
23
ol,
24
ul,
25
.item-list ul /* Drupal override */ {
26
  padding: 0 $indent-amount 0 0;
27
}
28

    
29
/* =============================================================================
30
   Forms
31
   ========================================================================== */
32

    
33
/*
34
 * 3. Corrects alignment displayed oddly in IE6/7
35
 */
36

    
37
legend {
38
  @if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
39
    *margin-left: 0;
40
    *margin-right: -7px; /* 3 */
41
  }
42
}
43

    
44
/* =============================================================================
45
   Tables
46
   ========================================================================== */
47

    
48
th {
49
  text-align: right;
50
}
(12-12/20)