office-ui-fabric-core-rails 5.1.0.0 → 6.0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/lib/office-ui-fabric-core-rails/version.rb +2 -2
- data/package.json +2 -2
- data/vendor/assets/css/fabric-6.0.0.scoped.css +8251 -0
- data/vendor/assets/css/fabric-6.0.0.scoped.min.css +6 -0
- data/vendor/assets/css/fabric.css +4597 -4324
- data/vendor/assets/css/fabric.min.css +2 -2
- data/vendor/assets/css/fabric.rtl.css +5630 -4137
- data/vendor/assets/css/fabric.rtl.min.css +2 -2
- data/vendor/assets/scss/Fabric.RTL.scss +13 -39
- data/vendor/assets/scss/Fabric.Scoped.scss +33 -0
- data/vendor/assets/scss/Fabric.scss +22 -43
- data/vendor/assets/scss/_Animation.RTL.scss +58 -0
- data/vendor/assets/scss/_Animation.scss +173 -0
- data/vendor/assets/scss/_BrandIcon.scss +19 -0
- data/vendor/assets/scss/{Fabric.Color.Mixins.Output.scss → _Color.scss} +441 -443
- data/vendor/assets/scss/_Font.Definitions.scss +33 -0
- data/vendor/assets/scss/{Fabric.Typography.Output.scss → _Font.scss} +387 -389
- data/vendor/assets/scss/{Fabric.Grid.Output.scss → _Grid.scss} +24 -32
- data/vendor/assets/scss/{Fabric.Icons.Font.Output.scss → _Icon.Definitions.scss} +28 -21
- data/vendor/assets/scss/{Fabric.Icons.RTL.Output.scss → _Icon.RTL.scss} +146 -149
- data/vendor/assets/scss/{Fabric.Icons.Output.scss → _Icon.scss} +754 -751
- data/vendor/assets/scss/_References.scss +26 -0
- data/vendor/assets/scss/_Responsive.scss +1010 -0
- data/vendor/assets/scss/{Fabric.Utilities.Output.scss → _Utility.scss} +44 -46
- data/vendor/assets/scss/_Wrapper.scss +41 -0
- data/vendor/assets/scss/mixins/_Animation.Mixins.scss +360 -0
- data/vendor/assets/scss/mixins/_BrandIcon.Mixins.scss +36 -0
- data/vendor/assets/scss/{_Fabric.Color.Mixins.scss → mixins/_Color.Mixins.scss} +418 -418
- data/vendor/assets/scss/{_Fabric.Mixins.RTL.scss → mixins/_Directionality.Mixins.scss} +325 -325
- data/vendor/assets/scss/{_Fabric.Typography.scss → mixins/_Font.Mixins.scss} +381 -345
- data/vendor/assets/scss/mixins/_General.Mixins.scss +371 -0
- data/vendor/assets/scss/{_Fabric.Grid.scss → mixins/_Grid.Mixins.scss} +39 -34
- data/vendor/assets/scss/mixins/_Icon.Mixins.scss +777 -0
- data/vendor/assets/scss/mixins/_Responsive.Mixins.scss +1425 -0
- data/vendor/assets/scss/mixins/_ScopedStyles.Mixins.scss +20 -0
- data/vendor/assets/scss/variables/_Animation.Variables.scss +11 -0
- data/vendor/assets/scss/variables/_BrandIcon.Variables.scss +12 -0
- data/vendor/assets/scss/{_Fabric.Color.Variables.scss → variables/_Color.Variables.scss} +77 -93
- data/vendor/assets/scss/variables/_Font.Variables.scss +41 -0
- data/vendor/assets/scss/variables/_General.Variables.scss +6 -0
- data/vendor/assets/scss/variables/_Icon.Variables.scss +7 -0
- data/vendor/assets/scss/variables/_Responsive.Variables.scss +16 -0
- data/vendor/assets/scss/variables/_ZIndex.Variables.scss +14 -0
- metadata +38 -39
- data/vendor/assets/scss/Fabric.Animations.Output.scss +0 -419
- data/vendor/assets/scss/Fabric.Animations.RTL.Output.scss +0 -80
- data/vendor/assets/scss/Fabric.Base.Output.scss +0 -14
- data/vendor/assets/scss/Fabric.Brand.Icons.Output.scss +0 -19
- data/vendor/assets/scss/Fabric.Responsive.Utilities.Output.scss +0 -1012
- data/vendor/assets/scss/Fabric.Typography.Fonts.Extended.Output.scss +0 -67
- data/vendor/assets/scss/Fabric.Typography.Fonts.Output.scss +0 -13
- data/vendor/assets/scss/Fabric.Typography.Language.Overrides.Output.scss +0 -53
- data/vendor/assets/scss/_Fabric.Animations.RTL.scss +0 -79
- data/vendor/assets/scss/_Fabric.Animations.scss +0 -237
- data/vendor/assets/scss/_Fabric.Base.scss +0 -13
- data/vendor/assets/scss/_Fabric.Brand.Icons.scss +0 -51
- data/vendor/assets/scss/_Fabric.Common.scss +0 -16
- data/vendor/assets/scss/_Fabric.Icons.scss +0 -779
- data/vendor/assets/scss/_Fabric.Mixins.scss +0 -282
- data/vendor/assets/scss/_Fabric.Responsive.Utilities.Variables.scss +0 -1423
- data/vendor/assets/scss/_Fabric.Responsive.Variables.scss +0 -35
- data/vendor/assets/scss/_Fabric.Typography.Fonts.scss +0 -167
- data/vendor/assets/scss/_Fabric.Typography.Language.Overrides.scss +0 -50
- data/vendor/assets/scss/_Fabric.Typography.Mixins.scss +0 -11
- data/vendor/assets/scss/_Fabric.Typography.Variables.scss +0 -29
- data/vendor/assets/scss/_Fabric.Utilities.scss +0 -76
- data/vendor/assets/scss/_Fabric.ZIndex.Variables.scss +0 -32
- data/vendor/assets/scss/_Fabric.i18n.scss +0 -316
@@ -0,0 +1,371 @@
|
|
1
|
+
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
|
2
|
+
|
3
|
+
//
|
4
|
+
// Office UI Fabric
|
5
|
+
// --------------------------------------------------
|
6
|
+
// Vendor-prefixed mixins
|
7
|
+
|
8
|
+
// Border radius.
|
9
|
+
@mixin ms-border-radius($ms-radius: 5px) {
|
10
|
+
border-radius: $ms-radius;
|
11
|
+
background-clip: padding-box;
|
12
|
+
}
|
13
|
+
|
14
|
+
// Drop shadow.
|
15
|
+
@mixin ms-drop-shadow($ms-x-offset: 0, $ms-y-offset: 0, $ms-blur: 5px, $ms-spread: 0, $ms-alpha: 0.4) {
|
16
|
+
box-shadow: $ms-x-offset $ms-y-offset $ms-blur $ms-spread rgba(0, 0, 0, $ms-alpha);
|
17
|
+
}
|
18
|
+
|
19
|
+
// Background gradient.
|
20
|
+
@mixin ms-background-gradient($ms-origin: left, $ms-start: #000, $ms-start-location: 0%, $ms-stop: #FFF, $ms-stop-location: 100%) {
|
21
|
+
background-color: $ms-start;
|
22
|
+
background-image: linear-gradient($ms-origin, $ms-start $ms-start-location, $ms-stop $ms-stop-location);
|
23
|
+
}
|
24
|
+
|
25
|
+
// Rotation.
|
26
|
+
@mixin ms-rotate($ms-deg) {
|
27
|
+
transform: rotate($ms-deg);
|
28
|
+
}
|
29
|
+
|
30
|
+
// Reset button styles.
|
31
|
+
@mixin ms-button-reset() {
|
32
|
+
background: none;
|
33
|
+
border: 0;
|
34
|
+
cursor: pointer;
|
35
|
+
}
|
36
|
+
|
37
|
+
@mixin ms-reset-animation() {
|
38
|
+
-webkit-animation: none;
|
39
|
+
-moz-animation: none;
|
40
|
+
-ms-animation: none;
|
41
|
+
-o-animation: none;
|
42
|
+
animation: none;
|
43
|
+
}
|
44
|
+
|
45
|
+
@mixin ms-reset-backface() {
|
46
|
+
backface-visibility: visible;
|
47
|
+
}
|
48
|
+
|
49
|
+
@mixin ms-reset-background() {
|
50
|
+
background: 0;
|
51
|
+
background-clip: border-box;
|
52
|
+
background-origin: padding-box;
|
53
|
+
}
|
54
|
+
|
55
|
+
@mixin ms-reset-border() {
|
56
|
+
border: 0;
|
57
|
+
border-collapse: separate;
|
58
|
+
border-image: none;
|
59
|
+
border-radius: 0;
|
60
|
+
border-spacing: 0;
|
61
|
+
}
|
62
|
+
|
63
|
+
@mixin ms-reset-box-shadow() {
|
64
|
+
-webkit-box-shadow: none;
|
65
|
+
-moz-box-shadow: none;
|
66
|
+
box-shadow: none;
|
67
|
+
}
|
68
|
+
|
69
|
+
@mixin ms-reset-box-sizing() {
|
70
|
+
box-sizing: content-box;
|
71
|
+
}
|
72
|
+
|
73
|
+
@mixin ms-reset-columns() {
|
74
|
+
columns: auto;
|
75
|
+
column-count: auto;
|
76
|
+
column-fill: balance;
|
77
|
+
column-gap: normal;
|
78
|
+
column-rule: medium none currentColor;
|
79
|
+
column-rule-color: currentColor;
|
80
|
+
column-rule-style: none;
|
81
|
+
column-rule-width: none;
|
82
|
+
column-span: 1;
|
83
|
+
column-width: auto;
|
84
|
+
}
|
85
|
+
|
86
|
+
|
87
|
+
// Fonts and Typography Resets
|
88
|
+
@mixin ms-reset-font() {
|
89
|
+
font: normal;
|
90
|
+
font-family: inherit;
|
91
|
+
font-size: normal;
|
92
|
+
font-style: normal;
|
93
|
+
font-variant: normal;
|
94
|
+
font-weight: normal;
|
95
|
+
}
|
96
|
+
|
97
|
+
@mixin ms-reset-text-styling() {
|
98
|
+
text-align: inherit;
|
99
|
+
text-align-last: auto;
|
100
|
+
text-decoration: none;
|
101
|
+
text-decoration-color: inherit;
|
102
|
+
text-decoration-line: none;
|
103
|
+
text-decoration-style: solid;
|
104
|
+
text-indent: 0;
|
105
|
+
text-shadow: none;
|
106
|
+
text-transform: none;
|
107
|
+
line-height: normal;
|
108
|
+
letter-spacing: normal;
|
109
|
+
word-spacing: normal;
|
110
|
+
}
|
111
|
+
|
112
|
+
|
113
|
+
// Box Model Resets
|
114
|
+
@mixin ms-reset-padding() {
|
115
|
+
padding: 0;
|
116
|
+
}
|
117
|
+
|
118
|
+
@mixin ms-reset-margins() {
|
119
|
+
margin: 0;
|
120
|
+
}
|
121
|
+
|
122
|
+
@mixin ms-reset-overflow() {
|
123
|
+
overflow: visible;
|
124
|
+
}
|
125
|
+
|
126
|
+
@mixin ms-reset-max() {
|
127
|
+
max-height: none;
|
128
|
+
max-width: none;
|
129
|
+
}
|
130
|
+
|
131
|
+
@mixin ms-reset-min() {
|
132
|
+
min-height: 0;
|
133
|
+
min-width: 0;
|
134
|
+
}
|
135
|
+
|
136
|
+
@mixin ms-reset-positioning() {
|
137
|
+
bottom: auto;
|
138
|
+
left: auto;
|
139
|
+
top: auto;
|
140
|
+
left: auto;
|
141
|
+
}
|
142
|
+
|
143
|
+
@mixin ms-reset-float() {
|
144
|
+
float: none;
|
145
|
+
}
|
146
|
+
|
147
|
+
@mixin ms-reset-height($ms-useMaxMin: false) {
|
148
|
+
height: auto;
|
149
|
+
@if $ms-useMaxMin == true {
|
150
|
+
min-height: 0;
|
151
|
+
max-height: 0;
|
152
|
+
}
|
153
|
+
}
|
154
|
+
|
155
|
+
@mixin ms-reset-width($ms-useMaxMin: false) {
|
156
|
+
width: auto;
|
157
|
+
@if $ms-useMaxMin == true {
|
158
|
+
min-width: 0;
|
159
|
+
max-width: 0;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
|
163
|
+
@mixin ms-reset-position() {
|
164
|
+
position: static;
|
165
|
+
}
|
166
|
+
|
167
|
+
@mixin ms-reset-perspective() {
|
168
|
+
-webkit-perspective: none;
|
169
|
+
-webkit-perspective-origin: 50% 50%;
|
170
|
+
perspective: none;
|
171
|
+
perspective-origin: 50% 50%;
|
172
|
+
|
173
|
+
}
|
174
|
+
|
175
|
+
@mixin ms-reset-transition() {
|
176
|
+
-webkit-transition: none;
|
177
|
+
transition: none;
|
178
|
+
}
|
179
|
+
|
180
|
+
@mixin ms-reset-list-style() {
|
181
|
+
list-style: none;
|
182
|
+
}
|
183
|
+
|
184
|
+
@mixin ms-reset-transform() {
|
185
|
+
-ms-transform: none;
|
186
|
+
-webkit-transform: none;
|
187
|
+
-webkit-transform-style: flat;
|
188
|
+
transform: none;
|
189
|
+
transform-style: flat;
|
190
|
+
}
|
191
|
+
|
192
|
+
@mixin ms-reset-outline() {
|
193
|
+
outline: 0;
|
194
|
+
}
|
195
|
+
|
196
|
+
@mixin ms-reset-page-break() {
|
197
|
+
page-break-after: auto;
|
198
|
+
page-break-before: auto;
|
199
|
+
page-break-inside: auto;
|
200
|
+
}
|
201
|
+
|
202
|
+
@mixin ms-reset-display() {
|
203
|
+
display: block;
|
204
|
+
}
|
205
|
+
|
206
|
+
@mixin ms-reset-vertical-align() {
|
207
|
+
vertical-align: baseline;
|
208
|
+
}
|
209
|
+
|
210
|
+
// Prevents user selection of text elements.
|
211
|
+
@mixin ms-user-select ($val) {
|
212
|
+
-webkit-touch-callout: $val;
|
213
|
+
-webkit-user-select: $val;
|
214
|
+
-khtml-user-select: $val;
|
215
|
+
-moz-user-select: $val;
|
216
|
+
-ms-user-select: $val;
|
217
|
+
user-select: $val;
|
218
|
+
}
|
219
|
+
|
220
|
+
// Prevents the text within a block element from wrapping to second line.
|
221
|
+
@mixin ms-no-wrap() {
|
222
|
+
display: block;
|
223
|
+
overflow: hidden;
|
224
|
+
text-overflow: ellipsis;
|
225
|
+
white-space: nowrap;
|
226
|
+
}
|
227
|
+
|
228
|
+
// Flexbox
|
229
|
+
@mixin ms-flex-box() {
|
230
|
+
display: -ms-flexbox;
|
231
|
+
display: -webkit-flex;
|
232
|
+
display: flex;
|
233
|
+
}
|
234
|
+
|
235
|
+
@mixin ms-alignItems($ms-mode) {
|
236
|
+
-webkit-box-align: $ms-mode;
|
237
|
+
-moz-box-align: $ms-mode;
|
238
|
+
-ms-flex-align: $ms-mode;
|
239
|
+
-webkit-align-items: $ms-mode;
|
240
|
+
align-items: $ms-mode;
|
241
|
+
}
|
242
|
+
|
243
|
+
// Base/wrapper component to set typography throughout the app.
|
244
|
+
@mixin ms-Fabric {
|
245
|
+
-moz-osx-font-smoothing: grayscale;
|
246
|
+
-ms-high-contrast-adjust: none;
|
247
|
+
-webkit-font-smoothing: antialiased;
|
248
|
+
@include ms-inherit-font-family();
|
249
|
+
color: $ms-color-neutralPrimary;
|
250
|
+
font-family: $ms-font-family-west-european;
|
251
|
+
}
|
252
|
+
|
253
|
+
// Set the font-family to 'inherit' for elements where the browser
|
254
|
+
// styles commonly conflict with the font-family that we want.
|
255
|
+
@mixin ms-inherit-font-family() {
|
256
|
+
button,
|
257
|
+
input {
|
258
|
+
font-family: inherit;
|
259
|
+
}
|
260
|
+
}
|
261
|
+
|
262
|
+
// Overrides the browser's default focus outline style.
|
263
|
+
@mixin ms-focus-outline($inset: 0, $color: $ms-focus-border-color) {
|
264
|
+
// Only do this when it's a child of ms-Fabric in a focusVisible state.
|
265
|
+
.ms-Fabric.is-focusVisible &:focus {
|
266
|
+
outline: $ms-focus-border-width $ms-focus-border-style $color;
|
267
|
+
outline-offset: -$inset;
|
268
|
+
}
|
269
|
+
}
|
270
|
+
|
271
|
+
// Simulates a focus outline using an absolutely-positioned pseudo-element.
|
272
|
+
@mixin ms-focus-border($inset: 0, $color: $ms-focus-border-color) {
|
273
|
+
// Clear browser-specific focus styles and use 'transparent' as placeholder for focus style.
|
274
|
+
outline: transparent;
|
275
|
+
|
276
|
+
// Requirement because pseudo-element is absolutely positioned.
|
277
|
+
position: relative;
|
278
|
+
|
279
|
+
// Clear the focus border in Firefox.
|
280
|
+
// Reference: http://stackoverflow.com/a/199319/1436671
|
281
|
+
&::-moz-focus-inner {
|
282
|
+
border: 0;
|
283
|
+
}
|
284
|
+
|
285
|
+
// When the element that uses this mixin is in a :focus state, add a pseudo-element to
|
286
|
+
// create a border. Only do this when it's a child of ms-Fabric in a focusVisible state.
|
287
|
+
.ms-Fabric.is-focusVisible &:focus::after {
|
288
|
+
// Wrap the parent element with $padding.
|
289
|
+
content: '';
|
290
|
+
position: absolute;
|
291
|
+
top: $inset;
|
292
|
+
right: $inset;
|
293
|
+
bottom: $inset;
|
294
|
+
left: $inset;
|
295
|
+
|
296
|
+
// Add focus border of specified $color.
|
297
|
+
border: $ms-focus-border-width $ms-focus-border-style $color;
|
298
|
+
|
299
|
+
// Make the content not respond to mouse/touch events.
|
300
|
+
// Reference: https://css-tricks.com/almanac/properties/p/pointer-events/
|
301
|
+
pointer-events: none;
|
302
|
+
}
|
303
|
+
}
|
304
|
+
|
305
|
+
// The best box is a border box.
|
306
|
+
@mixin ms-borderBox {
|
307
|
+
box-sizing: border-box;
|
308
|
+
}
|
309
|
+
|
310
|
+
// For setting the border base width
|
311
|
+
@mixin ms-borderBase {
|
312
|
+
border: 1px solid;
|
313
|
+
}
|
314
|
+
|
315
|
+
// Ensures the block expands to the full height to enclose its floated childen.
|
316
|
+
@mixin ms-clearfix {
|
317
|
+
*zoom: 1;
|
318
|
+
&::before,
|
319
|
+
&::after {
|
320
|
+
display: table;
|
321
|
+
content: '';
|
322
|
+
line-height: 0;
|
323
|
+
}
|
324
|
+
&::after {
|
325
|
+
clear: both;
|
326
|
+
}
|
327
|
+
}
|
328
|
+
|
329
|
+
// Basic border-box, margin, and padding reset.
|
330
|
+
@mixin ms-normalize {
|
331
|
+
@include ms-borderBox;
|
332
|
+
@include ms-reset-margins;
|
333
|
+
@include ms-reset-padding;
|
334
|
+
@include ms-reset-box-shadow;
|
335
|
+
}
|
336
|
+
|
337
|
+
// To set various text alignment styles
|
338
|
+
// @param [variable list] $alignments
|
339
|
+
@mixin ms-textAlign($alignments...) {
|
340
|
+
@each $align in $alignments {
|
341
|
+
$alignStr: inspect($align);
|
342
|
+
.ms-textAlign#{to-upper-case(str-slice($alignStr, 1, 1)) + str-slice($alignStr, 2)} {
|
343
|
+
text-align: $align;
|
344
|
+
}
|
345
|
+
}
|
346
|
+
}
|
347
|
+
|
348
|
+
// To hide content while still making it readable by screen readers (Accessibility)
|
349
|
+
@mixin ms-screenReaderOnly {
|
350
|
+
position: absolute;
|
351
|
+
width: 1px;
|
352
|
+
height: 1px;
|
353
|
+
padding: 0;
|
354
|
+
margin: -1px;
|
355
|
+
overflow: hidden;
|
356
|
+
clip: rect(0,0,0,0);
|
357
|
+
border: 0;
|
358
|
+
}
|
359
|
+
|
360
|
+
// To add truncation with ellipsis
|
361
|
+
@mixin ms-textTruncate {
|
362
|
+
overflow: hidden;
|
363
|
+
text-overflow: ellipsis;
|
364
|
+
white-space: nowrap;
|
365
|
+
word-wrap: normal; // Fix for IE 8/9 in case 'word-wrap: break-word' is set on parent nodes
|
366
|
+
}
|
367
|
+
|
368
|
+
// To disable text wrapping
|
369
|
+
@mixin ms-noWrap {
|
370
|
+
white-space: nowrap;
|
371
|
+
}
|
@@ -1,34 +1,39 @@
|
|
1
|
-
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
|
2
|
-
|
3
|
-
//
|
4
|
-
// Office UI Fabric
|
5
|
-
// --------------------------------------------------
|
6
|
-
// Fluid 12-column grids for small, medium, and large devices
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
@
|
12
|
-
@include ms-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
@include ms-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
padding-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
1
|
+
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
|
2
|
+
|
3
|
+
//
|
4
|
+
// Office UI Fabric
|
5
|
+
// --------------------------------------------------
|
6
|
+
// Fluid 12-column grids for small, medium, and large devices
|
7
|
+
|
8
|
+
//== Grid container (same for all sizes)
|
9
|
+
//
|
10
|
+
@mixin ms-Grid {
|
11
|
+
@include ms-borderBox;
|
12
|
+
@include ms-clearfix;
|
13
|
+
padding: 0 8px;
|
14
|
+
}
|
15
|
+
|
16
|
+
//== Grid rows (pull first and last column out)
|
17
|
+
//
|
18
|
+
@mixin ms-Grid-row {
|
19
|
+
margin: 0 -8px;
|
20
|
+
@include ms-borderBox;
|
21
|
+
@include ms-clearfix;
|
22
|
+
}
|
23
|
+
|
24
|
+
//== Grid cells
|
25
|
+
//
|
26
|
+
@mixin ms-Grid-col {
|
27
|
+
position: relative;
|
28
|
+
min-height: 1px;
|
29
|
+
padding-left: 8px;
|
30
|
+
padding-right: 8px;
|
31
|
+
@include ms-borderBox;
|
32
|
+
float: left;
|
33
|
+
|
34
|
+
// For nested grids (a grid inside a column), removing the padding
|
35
|
+
// so that the nested grid's columns go to the edge of the parent's.
|
36
|
+
.ms-Grid {
|
37
|
+
padding: 0;
|
38
|
+
}
|
39
|
+
}
|
@@ -0,0 +1,777 @@
|
|
1
|
+
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
|
2
|
+
|
3
|
+
//
|
4
|
+
// Office UI Fabric
|
5
|
+
// --------------------------------------------------
|
6
|
+
// Icon mixin definitions
|
7
|
+
|
8
|
+
// Base icon definition
|
9
|
+
@mixin ms-Icon {
|
10
|
+
$icon-font-family: 'FabricMDL2Icons';
|
11
|
+
|
12
|
+
@if variable_exists(do-scope-styles) {
|
13
|
+
$icon-font-family: 'FabricMDL2Icons-' + $ms-fabric-version-major;
|
14
|
+
}
|
15
|
+
|
16
|
+
display: inline-block;
|
17
|
+
font-family: $icon-font-family;
|
18
|
+
font-style: normal;
|
19
|
+
font-weight: normal;
|
20
|
+
speak: none;
|
21
|
+
}
|
22
|
+
|
23
|
+
// Modifier: Place the icon in a circle.
|
24
|
+
@mixin ms-Icon--circle {
|
25
|
+
position: relative;
|
26
|
+
display: inline-block;
|
27
|
+
font-size: 1rem;
|
28
|
+
width: 1em;
|
29
|
+
height: 1em;
|
30
|
+
margin: 0 0.5em 0 0;
|
31
|
+
padding: 0;
|
32
|
+
text-align: left;
|
33
|
+
|
34
|
+
&::before, &::after {
|
35
|
+
line-height: 1;
|
36
|
+
font-size: inherit;
|
37
|
+
}
|
38
|
+
|
39
|
+
&::before {
|
40
|
+
display: block;
|
41
|
+
width: 100%;
|
42
|
+
height: 100%;
|
43
|
+
margin: 0;
|
44
|
+
padding: 0;
|
45
|
+
vertical-align: top;
|
46
|
+
position: absolute;
|
47
|
+
}
|
48
|
+
|
49
|
+
&::after {
|
50
|
+
content: '\e000';
|
51
|
+
position: absolute;
|
52
|
+
top: 0;
|
53
|
+
left: 0;
|
54
|
+
transform: scale(2);
|
55
|
+
transform-origin: 50% 50%;
|
56
|
+
z-index: $ms-zIndex-back;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
// Modifiers: Icon sizes
|
61
|
+
@mixin ms-Icon--xs { font-size: $ms-icon-size-xs; }
|
62
|
+
@mixin ms-Icon--s { font-size: $ms-icon-size-s; }
|
63
|
+
@mixin ms-Icon--m { font-size: $ms-icon-size-m; }
|
64
|
+
@mixin ms-Icon--l { font-size: $ms-icon-size-l; }
|
65
|
+
|
66
|
+
// Modifiers: Each of the icons.
|
67
|
+
@mixin ms-Icon--DecreaseIndentLegacy { content: '\E290'; }
|
68
|
+
@mixin ms-Icon--IncreaseIndentLegacy { content: '\E291'; }
|
69
|
+
@mixin ms-Icon--GlobalNavButton { content: '\E700'; }
|
70
|
+
@mixin ms-Icon--InternetSharing { content: '\E704'; }
|
71
|
+
@mixin ms-Icon--Brightness { content: '\E706'; }
|
72
|
+
@mixin ms-Icon--MapPin { content: '\E707'; }
|
73
|
+
@mixin ms-Icon--Airplane { content: '\E709'; }
|
74
|
+
@mixin ms-Icon--Tablet { content: '\E70A'; }
|
75
|
+
@mixin ms-Icon--QuickNote { content: '\E70B'; }
|
76
|
+
@mixin ms-Icon--ChevronDown { content: '\E70D'; }
|
77
|
+
@mixin ms-Icon--ChevronUp { content: '\E70E'; }
|
78
|
+
@mixin ms-Icon--Edit { content: '\E70F'; }
|
79
|
+
@mixin ms-Icon--Add { content: '\E710'; }
|
80
|
+
@mixin ms-Icon--Cancel { content: '\E711'; }
|
81
|
+
@mixin ms-Icon--More { content: '\E712'; }
|
82
|
+
@mixin ms-Icon--Settings { content: '\E713'; }
|
83
|
+
@mixin ms-Icon--Video { content: '\E714'; }
|
84
|
+
@mixin ms-Icon--Mail { content: '\E715'; }
|
85
|
+
@mixin ms-Icon--People { content: '\E716'; }
|
86
|
+
@mixin ms-Icon--Phone { content: '\E717'; }
|
87
|
+
@mixin ms-Icon--Pin { content: '\E718'; }
|
88
|
+
@mixin ms-Icon--Shop { content: '\E719'; }
|
89
|
+
@mixin ms-Icon--Link { content: '\E71B'; }
|
90
|
+
@mixin ms-Icon--Filter { content: '\E71C'; }
|
91
|
+
@mixin ms-Icon--Zoom { content: '\E71E'; }
|
92
|
+
@mixin ms-Icon--ZoomOut { content: '\E71F'; }
|
93
|
+
@mixin ms-Icon--Microphone { content: '\E720'; }
|
94
|
+
@mixin ms-Icon--Search { content: '\E721'; }
|
95
|
+
@mixin ms-Icon--Camera { content: '\E722'; }
|
96
|
+
@mixin ms-Icon--Attach { content: '\E723'; }
|
97
|
+
@mixin ms-Icon--Send { content: '\E724'; }
|
98
|
+
@mixin ms-Icon--FavoriteList { content: '\E728'; }
|
99
|
+
@mixin ms-Icon--PageSolid { content: '\E729'; }
|
100
|
+
@mixin ms-Icon--Forward { content: '\E72A'; }
|
101
|
+
@mixin ms-Icon--Back { content: '\E72B'; }
|
102
|
+
@mixin ms-Icon--Refresh { content: '\E72C'; }
|
103
|
+
@mixin ms-Icon--Share { content: '\E72D'; }
|
104
|
+
@mixin ms-Icon--Lock { content: '\E72E'; }
|
105
|
+
@mixin ms-Icon--EMI { content: '\E731'; }
|
106
|
+
@mixin ms-Icon--MiniLink { content: '\E732'; }
|
107
|
+
@mixin ms-Icon--Blocked { content: '\E733'; }
|
108
|
+
@mixin ms-Icon--FavoriteStar { content: '\E734'; }
|
109
|
+
@mixin ms-Icon--FavoriteStarFill { content: '\E735'; }
|
110
|
+
@mixin ms-Icon--ReadingMode { content: '\E736'; }
|
111
|
+
@mixin ms-Icon--Remove { content: '\E738'; }
|
112
|
+
@mixin ms-Icon--Checkbox { content: '\E739'; }
|
113
|
+
@mixin ms-Icon--CheckboxComposite { content: '\E73A'; }
|
114
|
+
@mixin ms-Icon--CheckboxIndeterminate { content: '\E73C'; }
|
115
|
+
@mixin ms-Icon--CheckMark { content: '\E73E'; }
|
116
|
+
@mixin ms-Icon--BackToWindow { content: '\E73F'; }
|
117
|
+
@mixin ms-Icon--FullScreen { content: '\E740'; }
|
118
|
+
@mixin ms-Icon--Print { content: '\E749'; }
|
119
|
+
@mixin ms-Icon--Up { content: '\E74A'; }
|
120
|
+
@mixin ms-Icon--Down { content: '\E74B'; }
|
121
|
+
@mixin ms-Icon--Delete { content: '\E74D'; }
|
122
|
+
@mixin ms-Icon--Save { content: '\E74E'; }
|
123
|
+
@mixin ms-Icon--Sad { content: '\E757'; }
|
124
|
+
@mixin ms-Icon--SIPMove { content: '\E759'; }
|
125
|
+
@mixin ms-Icon--EraseTool { content: '\E75C'; }
|
126
|
+
@mixin ms-Icon--GripperTool { content: '\E75E'; }
|
127
|
+
@mixin ms-Icon--Dialpad { content: '\E75F'; }
|
128
|
+
@mixin ms-Icon--PageLeft { content: '\E760'; }
|
129
|
+
@mixin ms-Icon--PageRight { content: '\E761'; }
|
130
|
+
@mixin ms-Icon--MultiSelect { content: '\E762'; }
|
131
|
+
@mixin ms-Icon--Play { content: '\E768'; }
|
132
|
+
@mixin ms-Icon--Pause { content: '\E769'; }
|
133
|
+
@mixin ms-Icon--ChevronLeft { content: '\E76B'; }
|
134
|
+
@mixin ms-Icon--ChevronRight { content: '\E76C'; }
|
135
|
+
@mixin ms-Icon--Emoji2 { content: '\E76E'; }
|
136
|
+
@mixin ms-Icon--System { content: '\E770'; }
|
137
|
+
@mixin ms-Icon--Globe { content: '\E774'; }
|
138
|
+
@mixin ms-Icon--ContactInfo { content: '\E779'; }
|
139
|
+
@mixin ms-Icon--Unpin { content: '\E77A'; }
|
140
|
+
@mixin ms-Icon--Contact { content: '\E77B'; }
|
141
|
+
@mixin ms-Icon--Memo { content: '\E77C'; }
|
142
|
+
@mixin ms-Icon--WindowsLogo { content: '\E782'; }
|
143
|
+
@mixin ms-Icon--Error { content: '\E783'; }
|
144
|
+
@mixin ms-Icon--Unlock { content: '\E785'; }
|
145
|
+
@mixin ms-Icon--Calendar { content: '\E787'; }
|
146
|
+
@mixin ms-Icon--Megaphone { content: '\E789'; }
|
147
|
+
@mixin ms-Icon--AutoEnhanceOn { content: '\E78D'; }
|
148
|
+
@mixin ms-Icon--AutoEnhanceOff { content: '\E78E'; }
|
149
|
+
@mixin ms-Icon--Color { content: '\E790'; }
|
150
|
+
@mixin ms-Icon--SaveAs { content: '\E792'; }
|
151
|
+
@mixin ms-Icon--Light { content: '\E793'; }
|
152
|
+
@mixin ms-Icon--Filters { content: '\E795'; }
|
153
|
+
@mixin ms-Icon--Contrast { content: '\E7A1'; }
|
154
|
+
@mixin ms-Icon--Redo { content: '\E7A6'; }
|
155
|
+
@mixin ms-Icon--Undo { content: '\E7A7'; }
|
156
|
+
@mixin ms-Icon--PhotoCollection { content: '\E7AA'; }
|
157
|
+
@mixin ms-Icon--Album { content: '\E7AB'; }
|
158
|
+
@mixin ms-Icon--Rotate { content: '\E7AD'; }
|
159
|
+
@mixin ms-Icon--PanoIndicator { content: '\E7B0'; }
|
160
|
+
@mixin ms-Icon--RedEye { content: '\E7B3'; }
|
161
|
+
@mixin ms-Icon--ThumbnailView { content: '\E7B6'; }
|
162
|
+
@mixin ms-Icon--Package { content: '\E7B8'; }
|
163
|
+
@mixin ms-Icon--Warning { content: '\E7BA'; }
|
164
|
+
@mixin ms-Icon--Financial { content: '\E7BB'; }
|
165
|
+
@mixin ms-Icon--ShoppingCart { content: '\E7BF'; }
|
166
|
+
@mixin ms-Icon--Train { content: '\E7C0'; }
|
167
|
+
@mixin ms-Icon--Flag { content: '\E7C1'; }
|
168
|
+
@mixin ms-Icon--Move { content: '\E7C2'; }
|
169
|
+
@mixin ms-Icon--Page { content: '\E7C3'; }
|
170
|
+
@mixin ms-Icon--TouchPointer { content: '\E7C9'; }
|
171
|
+
@mixin ms-Icon--Merge { content: '\E7D5'; }
|
172
|
+
@mixin ms-Icon--TurnRight { content: '\E7DB'; }
|
173
|
+
@mixin ms-Icon--Ferry { content: '\E7E3'; }
|
174
|
+
@mixin ms-Icon--Tab { content: '\E7E9'; }
|
175
|
+
@mixin ms-Icon--Admin { content: '\E7EF'; }
|
176
|
+
@mixin ms-Icon--TVMonitor { content: '\E7F4'; }
|
177
|
+
@mixin ms-Icon--Speakers { content: '\E7F5'; }
|
178
|
+
@mixin ms-Icon--Nav2DMapView { content: '\E800'; }
|
179
|
+
@mixin ms-Icon--Car { content: '\E804'; }
|
180
|
+
@mixin ms-Icon--EatDrink { content: '\E807'; }
|
181
|
+
@mixin ms-Icon--LocationCircle { content: '\E80E'; }
|
182
|
+
@mixin ms-Icon--Home { content: '\E80F'; }
|
183
|
+
@mixin ms-Icon--SwitcherStartEnd { content: '\E810'; }
|
184
|
+
@mixin ms-Icon--IncidentTriangle { content: '\E814'; }
|
185
|
+
@mixin ms-Icon--Touch { content: '\E815'; }
|
186
|
+
@mixin ms-Icon--MapDirections { content: '\E816'; }
|
187
|
+
@mixin ms-Icon--History { content: '\E81C'; }
|
188
|
+
@mixin ms-Icon--Location { content: '\E81D'; }
|
189
|
+
@mixin ms-Icon--Work { content: '\E821'; }
|
190
|
+
@mixin ms-Icon--Recent { content: '\E823'; }
|
191
|
+
@mixin ms-Icon--Hotel { content: '\E824'; }
|
192
|
+
@mixin ms-Icon--LocationDot { content: '\E827'; }
|
193
|
+
@mixin ms-Icon--News { content: '\E900'; }
|
194
|
+
@mixin ms-Icon--Chat { content: '\E901'; }
|
195
|
+
@mixin ms-Icon--Group { content: '\E902'; }
|
196
|
+
@mixin ms-Icon--View { content: '\E890'; }
|
197
|
+
@mixin ms-Icon--Clear { content: '\E894'; }
|
198
|
+
@mixin ms-Icon--Sync { content: '\E895'; }
|
199
|
+
@mixin ms-Icon--Download { content: '\E896'; }
|
200
|
+
@mixin ms-Icon--Help { content: '\E897'; }
|
201
|
+
@mixin ms-Icon--Upload { content: '\E898'; }
|
202
|
+
@mixin ms-Icon--Emoji { content: '\E899'; }
|
203
|
+
@mixin ms-Icon--MailForward { content: '\E89C'; }
|
204
|
+
@mixin ms-Icon--ClosePane { content: '\E89F'; }
|
205
|
+
@mixin ms-Icon--OpenPane { content: '\E8A0'; }
|
206
|
+
@mixin ms-Icon--PreviewLink { content: '\E8A1'; }
|
207
|
+
@mixin ms-Icon--ZoomIn { content: '\E8A3'; }
|
208
|
+
@mixin ms-Icon--Bookmarks { content: '\E8A4'; }
|
209
|
+
@mixin ms-Icon--Document { content: '\E8A5'; }
|
210
|
+
@mixin ms-Icon--ProtectedDocument { content: '\E8A6'; }
|
211
|
+
@mixin ms-Icon--OpenInNewWindow { content: '\E8A7'; }
|
212
|
+
@mixin ms-Icon--MailFill { content: '\E8A8'; }
|
213
|
+
@mixin ms-Icon--ViewAll { content: '\E8A9'; }
|
214
|
+
@mixin ms-Icon--Switch { content: '\E8AB'; }
|
215
|
+
@mixin ms-Icon--Rename { content: '\E8AC'; }
|
216
|
+
@mixin ms-Icon--Folder { content: '\E8B7'; }
|
217
|
+
@mixin ms-Icon--Picture { content: '\E8B9'; }
|
218
|
+
@mixin ms-Icon--ShowResults { content: '\E8BC'; }
|
219
|
+
@mixin ms-Icon--Message { content: '\E8BD'; }
|
220
|
+
@mixin ms-Icon--CalendarDay { content: '\E8BF'; }
|
221
|
+
@mixin ms-Icon--CalendarWeek { content: '\E8C0'; }
|
222
|
+
@mixin ms-Icon--MailReplyAll { content: '\E8C2'; }
|
223
|
+
@mixin ms-Icon--Read { content: '\E8C3'; }
|
224
|
+
@mixin ms-Icon--PaymentCard { content: '\E8C7'; }
|
225
|
+
@mixin ms-Icon--Copy { content: '\E8C8'; }
|
226
|
+
@mixin ms-Icon--Important { content: '\E8C9'; }
|
227
|
+
@mixin ms-Icon--MailReply { content: '\E8CA'; }
|
228
|
+
@mixin ms-Icon--Sort { content: '\E8CB'; }
|
229
|
+
@mixin ms-Icon--GotoToday { content: '\E8D1'; }
|
230
|
+
@mixin ms-Icon--Font { content: '\E8D2'; }
|
231
|
+
@mixin ms-Icon--FontColor { content: '\E8D3'; }
|
232
|
+
@mixin ms-Icon--FolderFill { content: '\E8D5'; }
|
233
|
+
@mixin ms-Icon--Permissions { content: '\E8D7'; }
|
234
|
+
@mixin ms-Icon--DisableUpdates { content: '\E8D8'; }
|
235
|
+
@mixin ms-Icon--Unfavorite { content: '\E8D9'; }
|
236
|
+
@mixin ms-Icon--Italic { content: '\E8DB'; }
|
237
|
+
@mixin ms-Icon--Underline { content: '\E8DC'; }
|
238
|
+
@mixin ms-Icon--Bold { content: '\E8DD'; }
|
239
|
+
@mixin ms-Icon--MoveToFolder { content: '\E8DE'; }
|
240
|
+
@mixin ms-Icon--Dislike { content: '\E8E0'; }
|
241
|
+
@mixin ms-Icon--Like { content: '\E8E1'; }
|
242
|
+
@mixin ms-Icon--AlignRight { content: '\E8E2'; }
|
243
|
+
@mixin ms-Icon--AlignCenter { content: '\E8E3'; }
|
244
|
+
@mixin ms-Icon--AlignLeft { content: '\E8E4'; }
|
245
|
+
@mixin ms-Icon--OpenFile { content: '\E8E5'; }
|
246
|
+
@mixin ms-Icon--FontDecrease { content: '\E8E7'; }
|
247
|
+
@mixin ms-Icon--FontIncrease { content: '\E8E8'; }
|
248
|
+
@mixin ms-Icon--FontSize { content: '\E8E9'; }
|
249
|
+
@mixin ms-Icon--CellPhone { content: '\E8EA'; }
|
250
|
+
@mixin ms-Icon--Tag { content: '\E8EC'; }
|
251
|
+
@mixin ms-Icon--Library { content: '\E8F1'; }
|
252
|
+
@mixin ms-Icon--PostUpdate { content: '\E8F3'; }
|
253
|
+
@mixin ms-Icon--NewFolder { content: '\E8F4'; }
|
254
|
+
@mixin ms-Icon--CalendarReply { content: '\E8F5'; }
|
255
|
+
@mixin ms-Icon--UnsyncFolder { content: '\E8F6'; }
|
256
|
+
@mixin ms-Icon--SyncFolder { content: '\E8F7'; }
|
257
|
+
@mixin ms-Icon--BlockContact { content: '\E8F8'; }
|
258
|
+
@mixin ms-Icon--AddFriend { content: '\E8FA'; }
|
259
|
+
@mixin ms-Icon--BulletedList { content: '\E8FD'; }
|
260
|
+
@mixin ms-Icon--Preview { content: '\E8FF'; }
|
261
|
+
@mixin ms-Icon--DockLeft { content: '\E90C'; }
|
262
|
+
@mixin ms-Icon--DockRight { content: '\E90D'; }
|
263
|
+
@mixin ms-Icon--Repair { content: '\E90F'; }
|
264
|
+
@mixin ms-Icon--Accounts { content: '\E910'; }
|
265
|
+
@mixin ms-Icon--RadioBullet { content: '\E915'; }
|
266
|
+
@mixin ms-Icon--Stopwatch { content: '\E916'; }
|
267
|
+
@mixin ms-Icon--Clock { content: '\E917'; }
|
268
|
+
@mixin ms-Icon--WorldClock { content: '\E918'; }
|
269
|
+
@mixin ms-Icon--AlarmClock { content: '\E919'; }
|
270
|
+
@mixin ms-Icon--Hospital { content: '\E91D'; }
|
271
|
+
@mixin ms-Icon--Timer { content: '\E91E'; }
|
272
|
+
@mixin ms-Icon--FullCircleMask { content: '\E91F'; }
|
273
|
+
@mixin ms-Icon--LocationFill { content: '\E920'; }
|
274
|
+
@mixin ms-Icon--ChromeMinimize { content: '\E921'; }
|
275
|
+
@mixin ms-Icon--Annotation { content: '\E924'; }
|
276
|
+
@mixin ms-Icon--ChromeClose { content: '\E8BB'; }
|
277
|
+
@mixin ms-Icon--Accept { content: '\E8FB'; }
|
278
|
+
@mixin ms-Icon--Fingerprint { content: '\E928'; }
|
279
|
+
@mixin ms-Icon--Handwriting { content: '\E929'; }
|
280
|
+
@mixin ms-Icon--StackIndicator { content: '\E7FF'; }
|
281
|
+
@mixin ms-Icon--Completed { content: '\E930'; }
|
282
|
+
@mixin ms-Icon--Label { content: '\E932'; }
|
283
|
+
@mixin ms-Icon--FlickDown { content: '\E935'; }
|
284
|
+
@mixin ms-Icon--FlickUp { content: '\E936'; }
|
285
|
+
@mixin ms-Icon--FlickLeft { content: '\E937'; }
|
286
|
+
@mixin ms-Icon--FlickRight { content: '\E938'; }
|
287
|
+
@mixin ms-Icon--MusicInCollection { content: '\E940'; }
|
288
|
+
@mixin ms-Icon--OneDrive { content: '\E941'; }
|
289
|
+
@mixin ms-Icon--CompassNW { content: '\E942'; }
|
290
|
+
@mixin ms-Icon--Code { content: '\E943'; }
|
291
|
+
@mixin ms-Icon--LightningBolt { content: '\E945'; }
|
292
|
+
@mixin ms-Icon--Info { content: '\E946'; }
|
293
|
+
@mixin ms-Icon--CalculatorAddition { content: '\E948'; }
|
294
|
+
@mixin ms-Icon--CalculatorSubtract { content: '\E949'; }
|
295
|
+
@mixin ms-Icon--PrintfaxPrinterFile { content: '\E956'; }
|
296
|
+
@mixin ms-Icon--Headset { content: '\E95B'; }
|
297
|
+
@mixin ms-Icon--Health { content: '\E95E'; }
|
298
|
+
@mixin ms-Icon--ChevronUpSmall { content: '\E96D'; }
|
299
|
+
@mixin ms-Icon--ChevronDownSmall { content: '\E96E'; }
|
300
|
+
@mixin ms-Icon--ChevronLeftSmall { content: '\E96F'; }
|
301
|
+
@mixin ms-Icon--ChevronRightSmall { content: '\E970'; }
|
302
|
+
@mixin ms-Icon--ChevronUpMed { content: '\E971'; }
|
303
|
+
@mixin ms-Icon--ChevronDownMed { content: '\E972'; }
|
304
|
+
@mixin ms-Icon--ChevronLeftMed { content: '\E973'; }
|
305
|
+
@mixin ms-Icon--ChevronRightMed { content: '\E974'; }
|
306
|
+
@mixin ms-Icon--Dictionary { content: '\E82D'; }
|
307
|
+
@mixin ms-Icon--ChromeBack { content: '\E830'; }
|
308
|
+
@mixin ms-Icon--PC1 { content: '\E977'; }
|
309
|
+
@mixin ms-Icon--PresenceChickletVideo { content: '\E979'; }
|
310
|
+
@mixin ms-Icon--Reply { content: '\E97A'; }
|
311
|
+
@mixin ms-Icon--DoubleChevronLeftMed { content: '\E991'; }
|
312
|
+
@mixin ms-Icon--Volume0 { content: '\E992'; }
|
313
|
+
@mixin ms-Icon--Volume1 { content: '\E993'; }
|
314
|
+
@mixin ms-Icon--Volume2 { content: '\E994'; }
|
315
|
+
@mixin ms-Icon--Volume3 { content: '\E995'; }
|
316
|
+
@mixin ms-Icon--CaretHollow { content: '\E817'; }
|
317
|
+
@mixin ms-Icon--CaretSolid { content: '\E818'; }
|
318
|
+
@mixin ms-Icon--FolderOpen { content: '\E838'; }
|
319
|
+
@mixin ms-Icon--Pinned { content: '\E840'; }
|
320
|
+
@mixin ms-Icon--PinnedFill { content: '\E842'; }
|
321
|
+
@mixin ms-Icon--Chart { content: '\E999'; }
|
322
|
+
@mixin ms-Icon--BidiLtr { content: '\E9AA'; }
|
323
|
+
@mixin ms-Icon--BidiRtl { content: '\E9AB'; }
|
324
|
+
@mixin ms-Icon--RevToggleKey { content: '\E845'; }
|
325
|
+
@mixin ms-Icon--RightDoubleQuote { content: '\E9B1'; }
|
326
|
+
@mixin ms-Icon--Sunny { content: '\E9BD'; }
|
327
|
+
@mixin ms-Icon--CloudWeather { content: '\E9BE'; }
|
328
|
+
@mixin ms-Icon--Cloudy { content: '\E9BF'; }
|
329
|
+
@mixin ms-Icon--PartlyCloudyDay { content: '\E9C0'; }
|
330
|
+
@mixin ms-Icon--PartlyCloudyNight { content: '\E9C1'; }
|
331
|
+
@mixin ms-Icon--ClearNight { content: '\E9C2'; }
|
332
|
+
@mixin ms-Icon--RainShowersDay { content: '\E9C3'; }
|
333
|
+
@mixin ms-Icon--Rain { content: '\E9C4'; }
|
334
|
+
@mixin ms-Icon--Thunderstorms { content: '\E9C6'; }
|
335
|
+
@mixin ms-Icon--RainSnow { content: '\E9C7'; }
|
336
|
+
@mixin ms-Icon--Snow { content: '\E9C8'; }
|
337
|
+
@mixin ms-Icon--BlowingSnow { content: '\E9C9'; }
|
338
|
+
@mixin ms-Icon--Frigid { content: '\E9CA'; }
|
339
|
+
@mixin ms-Icon--Fog { content: '\E9CB'; }
|
340
|
+
@mixin ms-Icon--Squalls { content: '\E9CC'; }
|
341
|
+
@mixin ms-Icon--Duststorm { content: '\E9CD'; }
|
342
|
+
@mixin ms-Icon--Precipitation { content: '\E9CF'; }
|
343
|
+
@mixin ms-Icon--Ringer { content: '\EA8F'; }
|
344
|
+
@mixin ms-Icon--PDF { content: '\EA90'; }
|
345
|
+
@mixin ms-Icon--SortLines { content: '\E9D0'; }
|
346
|
+
@mixin ms-Icon--Ribbon { content: '\E9D1'; }
|
347
|
+
@mixin ms-Icon--CheckList { content: '\E9D5'; }
|
348
|
+
@mixin ms-Icon--Generate { content: '\E9DA'; }
|
349
|
+
@mixin ms-Icon--Equalizer { content: '\E9E9'; }
|
350
|
+
@mixin ms-Icon--BarChartHorizontal { content: '\E9EB'; }
|
351
|
+
@mixin ms-Icon--Freezing { content: '\E9EF'; }
|
352
|
+
@mixin ms-Icon--SnowShowerDay { content: '\E9FD'; }
|
353
|
+
@mixin ms-Icon--HailDay { content: '\EA00'; }
|
354
|
+
@mixin ms-Icon--WorkFlow { content: '\EA01'; }
|
355
|
+
@mixin ms-Icon--StoreLogoMed { content: '\EA04'; }
|
356
|
+
@mixin ms-Icon--RainShowersNight { content: '\EA0F'; }
|
357
|
+
@mixin ms-Icon--SnowShowerNight { content: '\EA11'; }
|
358
|
+
@mixin ms-Icon--HailNight { content: '\EA13'; }
|
359
|
+
@mixin ms-Icon--Info2 { content: '\EA1F'; }
|
360
|
+
@mixin ms-Icon--StoreLogo { content: '\EA96'; }
|
361
|
+
@mixin ms-Icon--MultiSelectMirrored { content: '\EA98'; }
|
362
|
+
@mixin ms-Icon--Broom { content: '\EA99'; }
|
363
|
+
@mixin ms-Icon--MusicInCollectionFill { content: '\EA36'; }
|
364
|
+
@mixin ms-Icon--List { content: '\EA37'; }
|
365
|
+
@mixin ms-Icon--Asterisk { content: '\EA38'; }
|
366
|
+
@mixin ms-Icon--ErrorBadge { content: '\EA39'; }
|
367
|
+
@mixin ms-Icon--CircleRing { content: '\EA3A'; }
|
368
|
+
@mixin ms-Icon--CircleFill { content: '\EA3B'; }
|
369
|
+
@mixin ms-Icon--BookmarksMirrored { content: '\EA41'; }
|
370
|
+
@mixin ms-Icon--BulletedListMirrored { content: '\EA42'; }
|
371
|
+
@mixin ms-Icon--CaretHollowMirrored { content: '\EA45'; }
|
372
|
+
@mixin ms-Icon--CaretSolidMirrored { content: '\EA46'; }
|
373
|
+
@mixin ms-Icon--ChromeBackMirrored { content: '\EA47'; }
|
374
|
+
@mixin ms-Icon--ClosePaneMirrored { content: '\EA49'; }
|
375
|
+
@mixin ms-Icon--DockLeftMirrored { content: '\EA4C'; }
|
376
|
+
@mixin ms-Icon--DoubleChevronLeftMedMirrored { content: '\EA4D'; }
|
377
|
+
@mixin ms-Icon--HelpMirrored { content: '\EA51'; }
|
378
|
+
@mixin ms-Icon--ListMirrored { content: '\EA55'; }
|
379
|
+
@mixin ms-Icon--MailForwardMirrored { content: '\EA56'; }
|
380
|
+
@mixin ms-Icon--MailReplyMirrored { content: '\EA57'; }
|
381
|
+
@mixin ms-Icon--MailReplyAllMirrored { content: '\EA58'; }
|
382
|
+
@mixin ms-Icon--OpenPaneMirrored { content: '\EA5B'; }
|
383
|
+
@mixin ms-Icon--SendMirrored { content: '\EA63'; }
|
384
|
+
@mixin ms-Icon--ShowResultsMirrored { content: '\EA65'; }
|
385
|
+
@mixin ms-Icon--ThumbnailViewMirrored { content: '\EA67'; }
|
386
|
+
@mixin ms-Icon--Devices3 { content: '\EA6C'; }
|
387
|
+
@mixin ms-Icon--Lightbulb { content: '\EA80'; }
|
388
|
+
@mixin ms-Icon--StatusTriangle { content: '\EA82'; }
|
389
|
+
@mixin ms-Icon--VolumeDisabled { content: '\EA85'; }
|
390
|
+
@mixin ms-Icon--Puzzle { content: '\EA86'; }
|
391
|
+
@mixin ms-Icon--EmojiNeutral { content: '\EA87'; }
|
392
|
+
@mixin ms-Icon--EmojiDisappointed { content: '\EA88'; }
|
393
|
+
@mixin ms-Icon--HomeSolid { content: '\EA8A'; }
|
394
|
+
@mixin ms-Icon--Cocktails { content: '\EA9D'; }
|
395
|
+
@mixin ms-Icon--Articles { content: '\EAC1'; }
|
396
|
+
@mixin ms-Icon--Cycling { content: '\EAC7'; }
|
397
|
+
@mixin ms-Icon--DietPlanNotebook { content: '\EAC8'; }
|
398
|
+
@mixin ms-Icon--Pill { content: '\EACB'; }
|
399
|
+
@mixin ms-Icon--Running { content: '\EADA'; }
|
400
|
+
@mixin ms-Icon--Weights { content: '\EADB'; }
|
401
|
+
@mixin ms-Icon--BarChart4 { content: '\EAE7'; }
|
402
|
+
@mixin ms-Icon--CirclePlus { content: '\EAEE'; }
|
403
|
+
@mixin ms-Icon--Coffee { content: '\EAEF'; }
|
404
|
+
@mixin ms-Icon--Cotton { content: '\EAF3'; }
|
405
|
+
@mixin ms-Icon--Market { content: '\EAFC'; }
|
406
|
+
@mixin ms-Icon--Money { content: '\EAFD'; }
|
407
|
+
@mixin ms-Icon--PieDouble { content: '\EB04'; }
|
408
|
+
@mixin ms-Icon--RemoveFilter { content: '\EB08'; }
|
409
|
+
@mixin ms-Icon--StockDown { content: '\EB0F'; }
|
410
|
+
@mixin ms-Icon--StockUp { content: '\EB11'; }
|
411
|
+
@mixin ms-Icon--Cricket { content: '\EB1E'; }
|
412
|
+
@mixin ms-Icon--Golf { content: '\EB1F'; }
|
413
|
+
@mixin ms-Icon--Baseball { content: '\EB20'; }
|
414
|
+
@mixin ms-Icon--Soccer { content: '\EB21'; }
|
415
|
+
@mixin ms-Icon--MoreSports { content: '\EB22'; }
|
416
|
+
@mixin ms-Icon--AutoRacing { content: '\EB24'; }
|
417
|
+
@mixin ms-Icon--CollegeHoops { content: '\EB25'; }
|
418
|
+
@mixin ms-Icon--CollegeFootball { content: '\EB26'; }
|
419
|
+
@mixin ms-Icon--ProFootball { content: '\EB27'; }
|
420
|
+
@mixin ms-Icon--ProHockey { content: '\EB28'; }
|
421
|
+
@mixin ms-Icon--Rugby { content: '\EB2D'; }
|
422
|
+
@mixin ms-Icon--Tennis { content: '\EB33'; }
|
423
|
+
@mixin ms-Icon--Arrivals { content: '\EB34'; }
|
424
|
+
@mixin ms-Icon--Design { content: '\EB3C'; }
|
425
|
+
@mixin ms-Icon--Website { content: '\EB41'; }
|
426
|
+
@mixin ms-Icon--Drop { content: '\EB42'; }
|
427
|
+
@mixin ms-Icon--Snowflake { content: '\EB46'; }
|
428
|
+
@mixin ms-Icon--BusSolid { content: '\EB47'; }
|
429
|
+
@mixin ms-Icon--FerrySolid { content: '\EB48'; }
|
430
|
+
@mixin ms-Icon--TrainSolid { content: '\EB4D'; }
|
431
|
+
@mixin ms-Icon--Heart { content: '\EB51'; }
|
432
|
+
@mixin ms-Icon--HeartFill { content: '\EB52'; }
|
433
|
+
@mixin ms-Icon--Ticket { content: '\EB54'; }
|
434
|
+
@mixin ms-Icon--Devices4 { content: '\EB66'; }
|
435
|
+
@mixin ms-Icon--AzureLogo { content: '\EB6A'; }
|
436
|
+
@mixin ms-Icon--BingLogo { content: '\EB6B'; }
|
437
|
+
@mixin ms-Icon--MSNLogo { content: '\EB6C'; }
|
438
|
+
@mixin ms-Icon--OutlookLogo { content: '\EB6D'; }
|
439
|
+
@mixin ms-Icon--OfficeLogo { content: '\EB6E'; }
|
440
|
+
@mixin ms-Icon--SkypeLogo { content: '\EB6F'; }
|
441
|
+
@mixin ms-Icon--Door { content: '\EB75'; }
|
442
|
+
@mixin ms-Icon--EditMirrored { content: '\EB7E'; }
|
443
|
+
@mixin ms-Icon--GiftCard { content: '\EB8E'; }
|
444
|
+
@mixin ms-Icon--DoubleBookmark { content: '\EB8F'; }
|
445
|
+
@mixin ms-Icon--StatusErrorFull { content: '\EB90'; }
|
446
|
+
@mixin ms-Icon--Certificate { content: '\EB95'; }
|
447
|
+
@mixin ms-Icon--Photo2 { content: '\EB9F'; }
|
448
|
+
@mixin ms-Icon--CloudDownload { content: '\EBD3'; }
|
449
|
+
@mixin ms-Icon--WindDirection { content: '\EBE6'; }
|
450
|
+
@mixin ms-Icon--Family { content: '\EBDA'; }
|
451
|
+
@mixin ms-Icon--CSS { content: '\EBEF'; }
|
452
|
+
@mixin ms-Icon--JS { content: '\EBF0'; }
|
453
|
+
@mixin ms-Icon--ReminderGroup { content: '\EBF8'; }
|
454
|
+
@mixin ms-Icon--Section { content: '\EC0C'; }
|
455
|
+
@mixin ms-Icon--OneNoteLogo { content: '\EC0D'; }
|
456
|
+
@mixin ms-Icon--ToggleFilled { content: '\EC11'; }
|
457
|
+
@mixin ms-Icon--ToggleBorder { content: '\EC12'; }
|
458
|
+
@mixin ms-Icon--SliderThumb { content: '\EC13'; }
|
459
|
+
@mixin ms-Icon--ToggleThumb { content: '\EC14'; }
|
460
|
+
@mixin ms-Icon--Documentation { content: '\EC17'; }
|
461
|
+
@mixin ms-Icon--Badge { content: '\EC1B'; }
|
462
|
+
@mixin ms-Icon--Giftbox { content: '\EC1F'; }
|
463
|
+
@mixin ms-Icon--ExcelLogo { content: '\EC28'; }
|
464
|
+
@mixin ms-Icon--WordLogo { content: '\EC29'; }
|
465
|
+
@mixin ms-Icon--PowerPointLogo { content: '\EC2A'; }
|
466
|
+
@mixin ms-Icon--Cafe { content: '\EC32'; }
|
467
|
+
@mixin ms-Icon--SpeedHigh { content: '\EC4A'; }
|
468
|
+
@mixin ms-Icon--MusicNote { content: '\EC4F'; }
|
469
|
+
@mixin ms-Icon--EdgeLogo { content: '\EC60'; }
|
470
|
+
@mixin ms-Icon--CompletedSolid { content: '\EC61'; }
|
471
|
+
@mixin ms-Icon--AlbumRemove { content: '\EC62'; }
|
472
|
+
@mixin ms-Icon--MessageFill { content: '\EC70'; }
|
473
|
+
@mixin ms-Icon--TabletSelected { content: '\EC74'; }
|
474
|
+
@mixin ms-Icon--MobileSelected { content: '\EC75'; }
|
475
|
+
@mixin ms-Icon--LaptopSelected { content: '\EC76'; }
|
476
|
+
@mixin ms-Icon--TVMonitorSelected { content: '\EC77'; }
|
477
|
+
@mixin ms-Icon--DeveloperTools { content: '\EC7A'; }
|
478
|
+
@mixin ms-Icon--InsertTextBox { content: '\EC7D'; }
|
479
|
+
@mixin ms-Icon--LowerBrightness { content: '\EC8A'; }
|
480
|
+
@mixin ms-Icon--CloudUpload { content: '\EC8E'; }
|
481
|
+
@mixin ms-Icon--DateTime { content: '\EC92'; }
|
482
|
+
@mixin ms-Icon--Event { content: '\ECA3'; }
|
483
|
+
@mixin ms-Icon--Cake { content: '\ECA4'; }
|
484
|
+
@mixin ms-Icon--Tiles { content: '\ECA5'; }
|
485
|
+
@mixin ms-Icon--Org { content: '\ECA6'; }
|
486
|
+
@mixin ms-Icon--PartyLeader { content: '\ECA7'; }
|
487
|
+
@mixin ms-Icon--DRM { content: '\ECA8'; }
|
488
|
+
@mixin ms-Icon--CloudAdd { content: '\ECA9'; }
|
489
|
+
@mixin ms-Icon--AppIconDefault { content: '\ECAA'; }
|
490
|
+
@mixin ms-Icon--Photo2Add { content: '\ECAB'; }
|
491
|
+
@mixin ms-Icon--Photo2Remove { content: '\ECAC'; }
|
492
|
+
@mixin ms-Icon--POI { content: '\ECAF'; }
|
493
|
+
@mixin ms-Icon--FacebookLogo { content: '\ECB3'; }
|
494
|
+
@mixin ms-Icon--AddTo { content: '\ECC8'; }
|
495
|
+
@mixin ms-Icon--RadioBtnOn { content: '\ECCB'; }
|
496
|
+
@mixin ms-Icon--Embed { content: '\ECCE'; }
|
497
|
+
@mixin ms-Icon--VideoSolid { content: '\EA0C'; }
|
498
|
+
@mixin ms-Icon--Teamwork { content: '\EA12'; }
|
499
|
+
@mixin ms-Icon--PeopleAdd { content: '\EA15'; }
|
500
|
+
@mixin ms-Icon--Glasses { content: '\EA16'; }
|
501
|
+
@mixin ms-Icon--DateTime2 { content: '\EA17'; }
|
502
|
+
@mixin ms-Icon--Shield { content: '\EA18'; }
|
503
|
+
@mixin ms-Icon--Header1 { content: '\EA19'; }
|
504
|
+
@mixin ms-Icon--PageAdd { content: '\EA1A'; }
|
505
|
+
@mixin ms-Icon--NumberedList { content: '\EA1C'; }
|
506
|
+
@mixin ms-Icon--PowerBILogo { content: '\EA1E'; }
|
507
|
+
@mixin ms-Icon--Product { content: '\ECDC'; }
|
508
|
+
@mixin ms-Icon--Blocked2 { content: '\ECE4'; }
|
509
|
+
@mixin ms-Icon--FangBody { content: '\ECEB'; }
|
510
|
+
@mixin ms-Icon--Glimmer { content: '\ECF4'; }
|
511
|
+
@mixin ms-Icon--ChatInviteFriend { content: '\ECFE'; }
|
512
|
+
@mixin ms-Icon--SharepointLogo { content: '\ED18'; }
|
513
|
+
@mixin ms-Icon--YammerLogo { content: '\ED19'; }
|
514
|
+
@mixin ms-Icon--Hide { content: '\ED1A'; }
|
515
|
+
@mixin ms-Icon--ReturnToSession { content: '\ED24'; }
|
516
|
+
@mixin ms-Icon--OpenFolderHorizontal { content: '\ED25'; }
|
517
|
+
@mixin ms-Icon--CalendarMirrored { content: '\ED28'; }
|
518
|
+
@mixin ms-Icon--SwayLogo { content: '\ED29'; }
|
519
|
+
@mixin ms-Icon--OutOfOffice { content: '\ED34'; }
|
520
|
+
@mixin ms-Icon--Trophy { content: '\ED3F'; }
|
521
|
+
@mixin ms-Icon--ReopenPages { content: '\ED50'; }
|
522
|
+
@mixin ms-Icon--AADLogo { content: '\ED68'; }
|
523
|
+
@mixin ms-Icon--AccessLogo { content: '\ED69'; }
|
524
|
+
@mixin ms-Icon--AdminALogo { content: '\ED6A'; }
|
525
|
+
@mixin ms-Icon--AdminCLogo { content: '\ED6B'; }
|
526
|
+
@mixin ms-Icon--AdminDLogo { content: '\ED6C'; }
|
527
|
+
@mixin ms-Icon--AdminELogo { content: '\ED6D'; }
|
528
|
+
@mixin ms-Icon--AdminLLogo { content: '\ED6E'; }
|
529
|
+
@mixin ms-Icon--AdminMLogo { content: '\ED6F'; }
|
530
|
+
@mixin ms-Icon--AdminOLogo { content: '\ED70'; }
|
531
|
+
@mixin ms-Icon--AdminPLogo { content: '\ED71'; }
|
532
|
+
@mixin ms-Icon--AdminSLogo { content: '\ED72'; }
|
533
|
+
@mixin ms-Icon--AdminYLogo { content: '\ED73'; }
|
534
|
+
@mixin ms-Icon--BoxLogo { content: '\ED75'; }
|
535
|
+
@mixin ms-Icon--DelveLogo { content: '\ED76'; }
|
536
|
+
@mixin ms-Icon--DropboxLogo { content: '\ED77'; }
|
537
|
+
@mixin ms-Icon--ExchangeLogo { content: '\ED78'; }
|
538
|
+
@mixin ms-Icon--LyncLogo { content: '\ED79'; }
|
539
|
+
@mixin ms-Icon--OfficeVideoLogo { content: '\ED7A'; }
|
540
|
+
@mixin ms-Icon--ParatureLogo { content: '\ED7B'; }
|
541
|
+
@mixin ms-Icon--SocialListeningLogo { content: '\ED7C'; }
|
542
|
+
@mixin ms-Icon--VisioLogo { content: '\ED7D'; }
|
543
|
+
@mixin ms-Icon--Balloons { content: '\ED7E'; }
|
544
|
+
@mixin ms-Icon--Cat { content: '\ED7F'; }
|
545
|
+
@mixin ms-Icon--MailAlert { content: '\ED80'; }
|
546
|
+
@mixin ms-Icon--MailCheck { content: '\ED81'; }
|
547
|
+
@mixin ms-Icon--MailLowImportance { content: '\ED82'; }
|
548
|
+
@mixin ms-Icon--MailPause { content: '\ED83'; }
|
549
|
+
@mixin ms-Icon--MailRepeat { content: '\ED84'; }
|
550
|
+
@mixin ms-Icon--SecurityGroup { content: '\ED85'; }
|
551
|
+
@mixin ms-Icon--Table { content: '\ED86'; }
|
552
|
+
@mixin ms-Icon--VoicemailForward { content: '\ED87'; }
|
553
|
+
@mixin ms-Icon--VoicemailReply { content: '\ED88'; }
|
554
|
+
@mixin ms-Icon--Waffle { content: '\ED89'; }
|
555
|
+
@mixin ms-Icon--RemoveEvent { content: '\ED8A'; }
|
556
|
+
@mixin ms-Icon--EventInfo { content: '\ED8B'; }
|
557
|
+
@mixin ms-Icon--ForwardEvent { content: '\ED8C'; }
|
558
|
+
@mixin ms-Icon--WipePhone { content: '\ED8D'; }
|
559
|
+
@mixin ms-Icon--AddOnlineMeeting { content: '\ED8E'; }
|
560
|
+
@mixin ms-Icon--JoinOnlineMeeting { content: '\ED8F'; }
|
561
|
+
@mixin ms-Icon--RemoveLink { content: '\ED90'; }
|
562
|
+
@mixin ms-Icon--PeopleBlock { content: '\ED91'; }
|
563
|
+
@mixin ms-Icon--PeopleRepeat { content: '\ED92'; }
|
564
|
+
@mixin ms-Icon--PeopleAlert { content: '\ED93'; }
|
565
|
+
@mixin ms-Icon--PeoplePause { content: '\ED94'; }
|
566
|
+
@mixin ms-Icon--TransferCall { content: '\ED95'; }
|
567
|
+
@mixin ms-Icon--AddPhone { content: '\ED96'; }
|
568
|
+
@mixin ms-Icon--UnknownCall { content: '\ED97'; }
|
569
|
+
@mixin ms-Icon--NoteReply { content: '\ED98'; }
|
570
|
+
@mixin ms-Icon--NoteForward { content: '\ED99'; }
|
571
|
+
@mixin ms-Icon--NotePinned { content: '\ED9A'; }
|
572
|
+
@mixin ms-Icon--RemoveOccurrence { content: '\ED9B'; }
|
573
|
+
@mixin ms-Icon--Timeline { content: '\ED9C'; }
|
574
|
+
@mixin ms-Icon--EditNote { content: '\ED9D'; }
|
575
|
+
@mixin ms-Icon--CircleHalfFull { content: '\ED9E'; }
|
576
|
+
@mixin ms-Icon--Room { content: '\ED9F'; }
|
577
|
+
@mixin ms-Icon--Unsubscribe { content: '\EDA0'; }
|
578
|
+
@mixin ms-Icon--Subscribe { content: '\EDA1'; }
|
579
|
+
@mixin ms-Icon--RecurringTask { content: '\EDB2'; }
|
580
|
+
@mixin ms-Icon--TaskManager { content: '\EDB7'; }
|
581
|
+
@mixin ms-Icon--TaskManagerMirrored { content: '\EDB8'; }
|
582
|
+
@mixin ms-Icon--Combine { content: '\EDBB'; }
|
583
|
+
@mixin ms-Icon--Split { content: '\EDBC'; }
|
584
|
+
@mixin ms-Icon--DoubleChevronUp { content: '\EDBD'; }
|
585
|
+
@mixin ms-Icon--DoubleChevronLeft { content: '\EDBE'; }
|
586
|
+
@mixin ms-Icon--DoubleChevronRight { content: '\EDBF'; }
|
587
|
+
@mixin ms-Icon--Ascending { content: '\EDC0'; }
|
588
|
+
@mixin ms-Icon--Descending { content: '\EDC1'; }
|
589
|
+
@mixin ms-Icon--TextBox { content: '\EDC2'; }
|
590
|
+
@mixin ms-Icon--TextField { content: '\EDC3'; }
|
591
|
+
@mixin ms-Icon--NumberField { content: '\EDC4'; }
|
592
|
+
@mixin ms-Icon--Dropdown { content: '\EDC5'; }
|
593
|
+
@mixin ms-Icon--BookingsLogo { content: '\EDC7'; }
|
594
|
+
@mixin ms-Icon--ClassNotebookLogo { content: '\EDC8'; }
|
595
|
+
@mixin ms-Icon--DelveAnalyticsLogo { content: '\EDCA'; }
|
596
|
+
@mixin ms-Icon--DocsLogo { content: '\EDCB'; }
|
597
|
+
@mixin ms-Icon--Dynamics365Logo { content: '\EDCC'; }
|
598
|
+
@mixin ms-Icon--DynamicSMBLogo { content: '\EDCD'; }
|
599
|
+
@mixin ms-Icon--OfficeAssistantLogo { content: '\EDCE'; }
|
600
|
+
@mixin ms-Icon--OfficeStoreLogo { content: '\EDCF'; }
|
601
|
+
@mixin ms-Icon--OneNoteEduLogo { content: '\EDD0'; }
|
602
|
+
@mixin ms-Icon--PlannerLogo { content: '\EDD1'; }
|
603
|
+
@mixin ms-Icon--PowerApps { content: '\EDD2'; }
|
604
|
+
@mixin ms-Icon--Suitcase { content: '\EDD3'; }
|
605
|
+
@mixin ms-Icon--ProjectLogo { content: '\EDD4'; }
|
606
|
+
@mixin ms-Icon--CaretLeft8 { content: '\EDD5'; }
|
607
|
+
@mixin ms-Icon--CaretRight8 { content: '\EDD6'; }
|
608
|
+
@mixin ms-Icon--CaretUp8 { content: '\EDD7'; }
|
609
|
+
@mixin ms-Icon--CaretDown8 { content: '\EDD8'; }
|
610
|
+
@mixin ms-Icon--CaretLeftSolid8 { content: '\EDD9'; }
|
611
|
+
@mixin ms-Icon--CaretRightSolid8 { content: '\EDDA'; }
|
612
|
+
@mixin ms-Icon--CaretUpSolid8 { content: '\EDDB'; }
|
613
|
+
@mixin ms-Icon--CaretDownSolid8 { content: '\EDDC'; }
|
614
|
+
@mixin ms-Icon--ClearFormatting { content: '\EDDD'; }
|
615
|
+
@mixin ms-Icon--Superscript { content: '\EDDE'; }
|
616
|
+
@mixin ms-Icon--Subscript { content: '\EDDF'; }
|
617
|
+
@mixin ms-Icon--Strikethrough { content: '\EDE0'; }
|
618
|
+
@mixin ms-Icon--SingleBookmark { content: '\EDFF'; }
|
619
|
+
@mixin ms-Icon--DoubleChevronDown { content: '\EE04'; }
|
620
|
+
@mixin ms-Icon--ReplyAll { content: '\EE0A'; }
|
621
|
+
@mixin ms-Icon--GoogleDriveLogo { content: '\EE0B'; }
|
622
|
+
@mixin ms-Icon--Questionnaire { content: '\EE19'; }
|
623
|
+
@mixin ms-Icon--ReplyMirrored { content: '\EE35'; }
|
624
|
+
@mixin ms-Icon--ReplyAllMirrored { content: '\EE36'; }
|
625
|
+
@mixin ms-Icon--AddGroup { content: '\EE3D'; }
|
626
|
+
@mixin ms-Icon--QuestionnaireMirrored { content: '\EE4B'; }
|
627
|
+
@mixin ms-Icon--TemporaryUser { content: '\EE58'; }
|
628
|
+
@mixin ms-Icon--GroupedDescending { content: '\EE66'; }
|
629
|
+
@mixin ms-Icon--GroupedAscending { content: '\EE67'; }
|
630
|
+
@mixin ms-Icon--SortUp { content: '\EE68'; }
|
631
|
+
@mixin ms-Icon--SortDown { content: '\EE69'; }
|
632
|
+
@mixin ms-Icon--AwayStatus { content: '\EE6A'; }
|
633
|
+
@mixin ms-Icon--SyncToPC { content: '\EE6E'; }
|
634
|
+
@mixin ms-Icon--AustralianRules { content: '\EE70'; }
|
635
|
+
@mixin ms-Icon--DateTimeMirrored { content: '\EE93'; }
|
636
|
+
@mixin ms-Icon--DoubleChevronUp12 { content: '\EE96'; }
|
637
|
+
@mixin ms-Icon--DoubleChevronDown12 { content: '\EE97'; }
|
638
|
+
@mixin ms-Icon--DoubleChevronLeft12 { content: '\EE98'; }
|
639
|
+
@mixin ms-Icon--DoubleChevronRight12 { content: '\EE99'; }
|
640
|
+
@mixin ms-Icon--CalendarAgenda { content: '\EE9A'; }
|
641
|
+
@mixin ms-Icon--AddEvent { content: '\EEB5'; }
|
642
|
+
@mixin ms-Icon--AssetLibrary { content: '\EEB6'; }
|
643
|
+
@mixin ms-Icon--DataConnectionLibrary { content: '\EEB7'; }
|
644
|
+
@mixin ms-Icon--DocLibrary { content: '\EEB8'; }
|
645
|
+
@mixin ms-Icon--FormLibrary { content: '\EEB9'; }
|
646
|
+
@mixin ms-Icon--FormLibraryMirrored { content: '\EEBA'; }
|
647
|
+
@mixin ms-Icon--ReportLibrary { content: '\EEBB'; }
|
648
|
+
@mixin ms-Icon--ReportLibraryMirrored { content: '\EEBC'; }
|
649
|
+
@mixin ms-Icon--ContactCard { content: '\EEBD'; }
|
650
|
+
@mixin ms-Icon--CustomList { content: '\EEBE'; }
|
651
|
+
@mixin ms-Icon--CustomListMirrored { content: '\EEBF'; }
|
652
|
+
@mixin ms-Icon--IssueTracking { content: '\EEC0'; }
|
653
|
+
@mixin ms-Icon--IssueTrackingMirrored { content: '\EEC1'; }
|
654
|
+
@mixin ms-Icon--PictureLibrary { content: '\EEC2'; }
|
655
|
+
@mixin ms-Icon--OfficeAddinsLogo { content: '\EEC7'; }
|
656
|
+
@mixin ms-Icon--OfflineOneDriveParachute { content: '\EEC8'; }
|
657
|
+
@mixin ms-Icon--OfflineOneDriveParachuteDisabled { content: '\EEC9'; }
|
658
|
+
@mixin ms-Icon--LargeGrid { content: '\EECB'; }
|
659
|
+
@mixin ms-Icon--TriangleSolidUp12 { content: '\EECC'; }
|
660
|
+
@mixin ms-Icon--TriangleSolidDown12 { content: '\EECD'; }
|
661
|
+
@mixin ms-Icon--TriangleSolidLeft12 { content: '\EECE'; }
|
662
|
+
@mixin ms-Icon--TriangleSolidRight12 { content: '\EECF'; }
|
663
|
+
@mixin ms-Icon--TriangleUp12 { content: '\EED0'; }
|
664
|
+
@mixin ms-Icon--TriangleDown12 { content: '\EED1'; }
|
665
|
+
@mixin ms-Icon--TriangleLeft12 { content: '\EED2'; }
|
666
|
+
@mixin ms-Icon--TriangleRight12 { content: '\EED3'; }
|
667
|
+
@mixin ms-Icon--ArrowUpRight8 { content: '\EED4'; }
|
668
|
+
@mixin ms-Icon--ArrowDownRight8 { content: '\EED5'; }
|
669
|
+
@mixin ms-Icon--DocumentSet { content: '\EED6'; }
|
670
|
+
@mixin ms-Icon--DelveAnalytics { content: '\EEEE'; }
|
671
|
+
@mixin ms-Icon--ArrowUpRightMirrored8 { content: '\EEEF'; }
|
672
|
+
@mixin ms-Icon--ArrowDownRightMirrored8 { content: '\EEF0'; }
|
673
|
+
@mixin ms-Icon--OneDriveAdd { content: '\EF32'; }
|
674
|
+
@mixin ms-Icon--Header2 { content: '\EF36'; }
|
675
|
+
@mixin ms-Icon--Header3 { content: '\EF37'; }
|
676
|
+
@mixin ms-Icon--Header4 { content: '\EF38'; }
|
677
|
+
@mixin ms-Icon--MarketDown { content: '\EF42'; }
|
678
|
+
@mixin ms-Icon--CalendarWorkWeek { content: '\EF51'; }
|
679
|
+
@mixin ms-Icon--SidePanel { content: '\EF52'; }
|
680
|
+
@mixin ms-Icon--GlobeFavorite { content: '\EF53'; }
|
681
|
+
@mixin ms-Icon--CaretTopLeftSolid8 { content: '\EF54'; }
|
682
|
+
@mixin ms-Icon--CaretTopRightSolid8 { content: '\EF55'; }
|
683
|
+
@mixin ms-Icon--ViewAll2 { content: '\EF56'; }
|
684
|
+
@mixin ms-Icon--DocumentReply { content: '\EF57'; }
|
685
|
+
@mixin ms-Icon--PlayerSettings { content: '\EF58'; }
|
686
|
+
@mixin ms-Icon--ReceiptForward { content: '\EF59'; }
|
687
|
+
@mixin ms-Icon--ReceiptReply { content: '\EF5A'; }
|
688
|
+
@mixin ms-Icon--ReceiptCheck { content: '\EF5B'; }
|
689
|
+
@mixin ms-Icon--Fax { content: '\EF5C'; }
|
690
|
+
@mixin ms-Icon--RecurringEvent { content: '\EF5D'; }
|
691
|
+
@mixin ms-Icon--ReplyAlt { content: '\EF5E'; }
|
692
|
+
@mixin ms-Icon--ReplyAllAlt { content: '\EF5F'; }
|
693
|
+
@mixin ms-Icon--EditStyle { content: '\EF60'; }
|
694
|
+
@mixin ms-Icon--EditMail { content: '\EF61'; }
|
695
|
+
@mixin ms-Icon--Lifesaver { content: '\EF62'; }
|
696
|
+
@mixin ms-Icon--LifesaverLock { content: '\EF63'; }
|
697
|
+
@mixin ms-Icon--InboxCheck { content: '\EF64'; }
|
698
|
+
@mixin ms-Icon--FolderSearch { content: '\EF65'; }
|
699
|
+
@mixin ms-Icon--CollapseMenu { content: '\EF66'; }
|
700
|
+
@mixin ms-Icon--ExpandMenu { content: '\EF67'; }
|
701
|
+
@mixin ms-Icon--Boards { content: '\EF68'; }
|
702
|
+
@mixin ms-Icon--SunAdd { content: '\EF69'; }
|
703
|
+
@mixin ms-Icon--SunQuestionMark { content: '\EF6A'; }
|
704
|
+
@mixin ms-Icon--LandscapeOrientation { content: '\EF6B'; }
|
705
|
+
@mixin ms-Icon--DocumentSearch { content: '\EF6C'; }
|
706
|
+
@mixin ms-Icon--PublicCalendar { content: '\EF6D'; }
|
707
|
+
@mixin ms-Icon--PublicContactCard { content: '\EF6E'; }
|
708
|
+
@mixin ms-Icon--PublicEmail { content: '\EF6F'; }
|
709
|
+
@mixin ms-Icon--PublicFolder { content: '\EF70'; }
|
710
|
+
@mixin ms-Icon--WordDocument { content: '\EF71'; }
|
711
|
+
@mixin ms-Icon--PowerPointDocument { content: '\EF72'; }
|
712
|
+
@mixin ms-Icon--ExcelDocument { content: '\EF73'; }
|
713
|
+
@mixin ms-Icon--GroupedList { content: '\EF74'; }
|
714
|
+
@mixin ms-Icon--ClassroomLogo { content: '\EF75'; }
|
715
|
+
@mixin ms-Icon--Sections { content: '\EF76'; }
|
716
|
+
@mixin ms-Icon--EditPhoto { content: '\EF77'; }
|
717
|
+
@mixin ms-Icon--Starburst { content: '\EF78'; }
|
718
|
+
@mixin ms-Icon--ShareiOS { content: '\EF79'; }
|
719
|
+
@mixin ms-Icon--AirTickets { content: '\EF7A'; }
|
720
|
+
@mixin ms-Icon--PencilReply { content: '\EF7B'; }
|
721
|
+
@mixin ms-Icon--Tiles2 { content: '\EF7C'; }
|
722
|
+
@mixin ms-Icon--SkypeCircleCheck { content: '\EF7D'; }
|
723
|
+
@mixin ms-Icon--SkypeCircleClock { content: '\EF7E'; }
|
724
|
+
@mixin ms-Icon--SkypeCircleMinus { content: '\EF7F'; }
|
725
|
+
@mixin ms-Icon--SkypeCheck { content: '\EF80'; }
|
726
|
+
@mixin ms-Icon--SkypeClock { content: '\EF81'; }
|
727
|
+
@mixin ms-Icon--SkypeMinus { content: '\EF82'; }
|
728
|
+
@mixin ms-Icon--SkypeMessage { content: '\EF83'; }
|
729
|
+
@mixin ms-Icon--ClosedCaption { content: '\EF84'; }
|
730
|
+
@mixin ms-Icon--ATPLogo { content: '\EF85'; }
|
731
|
+
@mixin ms-Icon--OfficeFormLogo { content: '\EF86'; }
|
732
|
+
@mixin ms-Icon--RecycleBin { content: '\EF87'; }
|
733
|
+
@mixin ms-Icon--EmptyRecycleBin { content: '\EF88'; }
|
734
|
+
@mixin ms-Icon--Hide2 { content: '\EF89'; }
|
735
|
+
@mixin ms-Icon--iOSAppStoreLogo { content: '\EF8A'; }
|
736
|
+
@mixin ms-Icon--AndroidLogo { content: '\EF8B'; }
|
737
|
+
@mixin ms-Icon--Breadcrumb { content: '\EF8C'; }
|
738
|
+
@mixin ms-Icon--ClearFilter { content: '\EF8F'; }
|
739
|
+
@mixin ms-Icon--Flow { content: '\EF90'; }
|
740
|
+
@mixin ms-Icon--PageCheckedOut { content: '\F02C'; }
|
741
|
+
@mixin ms-Icon--SetAction { content: '\F071'; }
|
742
|
+
@mixin ms-Icon--PowerAppsLogo { content: '\F091'; }
|
743
|
+
@mixin ms-Icon--PowerApps2Logo { content: '\F092'; }
|
744
|
+
@mixin ms-Icon--FabricAssetLibrary { content: '\F09C'; }
|
745
|
+
@mixin ms-Icon--FabricDataConnectionLibrary { content: '\F09D'; }
|
746
|
+
@mixin ms-Icon--FabricDocLibrary { content: '\F09E'; }
|
747
|
+
@mixin ms-Icon--FabricFormLibrary { content: '\F09F'; }
|
748
|
+
@mixin ms-Icon--FabricFormLibraryMirrored { content: '\F0A0'; }
|
749
|
+
@mixin ms-Icon--FabricReportLibrary { content: '\F0A1'; }
|
750
|
+
@mixin ms-Icon--FabricReportLibraryMirrored { content: '\F0A2'; }
|
751
|
+
@mixin ms-Icon--FabricPublicFolder { content: '\F0A3'; }
|
752
|
+
@mixin ms-Icon--FabricFolderSearch { content: '\F0A4'; }
|
753
|
+
@mixin ms-Icon--FabricMovetoFolder { content: '\F0A5'; }
|
754
|
+
@mixin ms-Icon--FabricUnsyncFolder { content: '\F0A6'; }
|
755
|
+
@mixin ms-Icon--FabricSyncFolder { content: '\F0A7'; }
|
756
|
+
@mixin ms-Icon--FabricOpenFolderHorizontal { content: '\F0A8'; }
|
757
|
+
@mixin ms-Icon--FabricFolder { content: '\F0A9'; }
|
758
|
+
@mixin ms-Icon--FabricFolderFill { content: '\F0AA'; }
|
759
|
+
@mixin ms-Icon--FabricNewFolder { content: '\F0AB'; }
|
760
|
+
@mixin ms-Icon--FabricPictureLibrary { content: '\F0AC'; }
|
761
|
+
@mixin ms-Icon--AddFavorite { content: '\F0C8'; }
|
762
|
+
@mixin ms-Icon--AddFavoriteFill { content: '\F0C9'; }
|
763
|
+
@mixin ms-Icon--BufferTimeBefore { content: '\F0CF'; }
|
764
|
+
@mixin ms-Icon--BufferTimeAfter { content: '\F0D0'; }
|
765
|
+
@mixin ms-Icon--BufferTimeBoth { content: '\F0D1'; }
|
766
|
+
@mixin ms-Icon--PageCheckedin { content: '\F104'; }
|
767
|
+
@mixin ms-Icon--CaretBottomLeftSolid8 { content: '\F121'; }
|
768
|
+
@mixin ms-Icon--CaretBottomRightSolid8 { content: '\F122'; }
|
769
|
+
@mixin ms-Icon--FolderHorizontal { content: '\F12B'; }
|
770
|
+
@mixin ms-Icon--MicrosoftStaffhubLogo { content: '\F130'; }
|
771
|
+
@mixin ms-Icon--CaloriesAdd { content: '\F172'; }
|
772
|
+
@mixin ms-Icon--BranchFork { content: '\F173'; }
|
773
|
+
@mixin ms-Icon--SingleColumn { content: '\F1D3'; }
|
774
|
+
@mixin ms-Icon--DoubleColumn { content: '\F1D4'; }
|
775
|
+
@mixin ms-Icon--TripleColumn { content: '\F1D5'; }
|
776
|
+
@mixin ms-Icon--ColumnLeftTwoThirds { content: '\F1D6'; }
|
777
|
+
@mixin ms-Icon--ColumnRightTwoThirds { content: '\F1D7'; }
|