13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
.#{$prefix}body {
    margin: 0;
}
 
img {
    border: 0;
}
 
.#{$prefix}border-box, 
.#{$prefix}border-box * {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}
 
.#{$prefix}rtl {
    direction: rtl;
}
 
.#{$prefix}ltr {
    direction: ltr;
}
 
.#{$prefix}clear {
    overflow: hidden;
    clear: both;
    font-size: 0;
    line-height: 0;
    display: table;
}
 
.#{$prefix}strict .#{$prefix}ie7 .#{$prefix}clear {
    // In IE7 strict the clear element has to have both a height and width of 0, otherwise the height of its parent element gets
    // increased by 1px.  We cannot simply add the zero height/width for all browsers, because in IE quirks the height
    // of the clear element's parent element gets increased by 1px if the clear element has either height:0 or width:0.
    height: 0;
    width: 0;
}
 
.#{$prefix}layer {
    position: absolute !important;
    overflow: hidden;
    zoom: 1;
}
 
// Support for Floating config fixed: true which creates a fixed Layer.
// Currently only available in browsers which support position: fixed
.#{$prefix}fixed-layer {
    position: fixed !important;
    overflow: hidden;
    zoom: 1;
}
 
.#{$prefix}shim {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    @include opacity(0);
}
 
.#{$prefix}hide-display {
    display: none !important;
}
 
.#{$prefix}hide-visibility {
    visibility: hidden !important;
}
 
@if $include-ie {
    .#{$prefix}ie6 .#{$prefix}item-disabled {
        filter: none;
    }
}
 
.#{$prefix}hidden,
.#{$prefix}hide-offsets {
    // to deal with inline elements that can't be position:absolute
    display: block !important;
    // ensure the browser disallows tabbing into this element
    visibility: hidden !important;
    position: absolute !important;
    // hide using top since left  can trigger a horizontal scrollbar in rtl mode.
    top: -10000px !important;
}
 
.#{$prefix}hide-nosize {
    height: 0 !important;
    width: 0 !important;
}
 
// A hide method which is still accessible to screen readers
.#{$prefix}hide-clip {
    position: absolute!important;
    clip: rect(0,0,0,0);
 
    // IE6 and IE7 use space separators
    clip: rect(0 0 0 0);
}
 
.#{$prefix}masked-relative {
    position: relative;
}
 
// Element shadows for IE 8 and below
@if $include-ie {
    .#{$prefix}ie-shadow {
        background-color: #777;
        display: none;
        position: absolute;
        overflow: hidden;
        zoom: 1;
    }
}
 
.#{$prefix}unselectable {
    @include no-select;
}
 
.#{$prefix}selectable {
    cursor: auto;
 
    // Mozilla and WebKit support these properties
    -moz-user-select: text;
    -webkit-user-select: text;
 
    // IE 10 is expected to support this
    -ms-user-select: text;
 
    // No browsers currently support these
    user-select: text;
    -o-user-select: text;
}
 
.#{$prefix}list-plain {
    // removes default styling from ul elements
    list-style-type: none;
    margin: 0;
    padding: 0;
}
 
.#{$prefix}table-plain {
    border-collapse: collapse;
    border-spacing: 0;
    // inherit font size from parent node instead of using the browser's default font
    // size for tables. (can't use font-size: inherit because of lack of IE6/7 support)
    font-size: 1em;
}
 
.#{$prefix}frame-tl,
.#{$prefix}frame-tr,
.#{$prefix}frame-tc,
.#{$prefix}frame-bl,
.#{$prefix}frame-br,
.#{$prefix}frame-bc {
    overflow: hidden;
    background-repeat: no-repeat;
}
 
.#{$prefix}frame-tc,
.#{$prefix}frame-bc {
    background-repeat: repeat-x;
}
 
.#{$prefix}frame-mc {
    background-repeat: repeat-x;
    overflow: hidden;
}
 
.#{$prefix}proxy-el {
    position: absolute;
    background: rgb(180, 180, 180);
    @include opacity(0.8);
}
 
// Element shadows for browsers that support CSS3 box-shadow
.#{$prefix}css-shadow {
    position: absolute;
    @include border-radius($css-shadow-border-radius);
}
 
.#{$prefix}item-disabled,
.#{$prefix}item-disabled * {
    cursor: default;
}