Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / resources / themes / stylesheets / ext4 / default / core / _reset.scss
1 @if $scope-reset-css {
2     .#{$prefix}reset {
3         html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
4         h4, h5, h6, pre, code, form, fieldset, legend,
5         input, textarea, p, blockquote, th, td {
6             margin:0;
7             padding:0;
8         }
9
10         table {
11             border-collapse:collapse;
12             border-spacing:0;
13         }
14
15         fieldset, img {
16             border:0;
17         }
18
19         address, caption, cite, code,
20         dfn, em, strong, th, var {
21             font-style:normal;
22             font-weight:normal;
23         }
24
25         li {
26             list-style:none;
27         }
28
29         caption, th {
30             text-align:left;
31         }
32
33         h1, h2, h3, h4, h5, h6 {
34             font-size: 100%;
35         }
36
37         q:before,
38         q:after {
39             content:"";
40         }
41
42         abbr, acronym {
43             border:0;
44             font-variant:normal;
45         }
46
47         sup {
48             vertical-align:text-top;
49         }
50
51         sub {
52             vertical-align:text-bottom;
53         }
54
55         input, textarea, select {
56             font-family:inherit;
57             font-size:inherit;
58             font-weight:inherit;
59         }
60
61         *:focus {
62             outline:none;
63         }
64     }
65 }
66 @else {
67     html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
68     h4, h5, h6, pre, code, form, fieldset, legend,
69     input, textarea, p, blockquote, th, td {
70         margin:0;
71         padding:0;
72     }
73
74     table {
75         border-collapse:collapse;
76         border-spacing:0;
77     }
78
79     fieldset, img {
80         border:0;
81     }
82
83     address, caption, cite, code,
84     dfn, em, strong, th, var {
85         font-style:normal;
86         font-weight:normal;
87     }
88
89     li {
90         list-style:none;
91     }
92
93     caption, th {
94         text-align:left;
95     }
96
97     h1, h2, h3, h4, h5, h6 {
98         font-size: 100%;
99     }
100
101     q:before,
102     q:after {
103         content:"";
104     }
105
106     abbr, acronym {
107         border:0;
108         font-variant:normal;
109     }
110
111     sup {
112         vertical-align:text-top;
113     }
114
115     sub {
116         vertical-align:text-bottom;
117     }
118
119     input, textarea, select {
120         font-family:inherit;
121         font-size:inherit;
122         font-weight:inherit;
123     }
124
125     *:focus {
126         outline:none;
127     }
128 }
129
130 .#{$prefix}border-box .#{$prefix}reset, 
131 .#{$prefix}border-box .#{$prefix}reset * {
132     box-sizing:border-box;
133     -moz-box-sizing:border-box;
134     -ms-box-sizing:border-box;
135     -webkit-box-sizing:border-box;
136 }