office-ui-fabric-rails 2.5.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.
Files changed (59) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +5 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE +21 -0
  7. data/README.md +69 -0
  8. data/Rakefile +24 -0
  9. data/bin/console +14 -0
  10. data/bin/setup +8 -0
  11. data/bower.json +7 -0
  12. data/lib/office-ui-fabric-rails.rb +2 -0
  13. data/lib/office-ui-fabric-rails/engine.rb +6 -0
  14. data/lib/office-ui-fabric-rails/version.rb +6 -0
  15. data/office-ui-fabric-rails.gemspec +35 -0
  16. data/vendor/assets/css/fabric.components.css +6553 -0
  17. data/vendor/assets/css/fabric.components.min.css +6 -0
  18. data/vendor/assets/css/fabric.components.rtl.css +6355 -0
  19. data/vendor/assets/css/fabric.components.rtl.min.css +6 -0
  20. data/vendor/assets/css/fabric.css +5991 -0
  21. data/vendor/assets/css/fabric.min.css +6 -0
  22. data/vendor/assets/css/fabric.rtl.css +6280 -0
  23. data/vendor/assets/css/fabric.rtl.min.css +6 -0
  24. data/vendor/assets/js/jquery.fabric.js +2451 -0
  25. data/vendor/assets/js/jquery.fabric.min.js +2 -0
  26. data/vendor/assets/scss/Fabric.Animations.Output.scss +419 -0
  27. data/vendor/assets/scss/Fabric.Animations.RTL.Output.scss +80 -0
  28. data/vendor/assets/scss/Fabric.Color.Mixins.Output.scss +458 -0
  29. data/vendor/assets/scss/Fabric.Components.scss +31 -0
  30. data/vendor/assets/scss/Fabric.Grid.Output.scss +32 -0
  31. data/vendor/assets/scss/Fabric.Icons.Font.Output.scss +23 -0
  32. data/vendor/assets/scss/Fabric.Icons.Output.scss +771 -0
  33. data/vendor/assets/scss/Fabric.Icons.RTL.Output.scss +114 -0
  34. data/vendor/assets/scss/Fabric.RTL.scss +39 -0
  35. data/vendor/assets/scss/Fabric.Responsive.Utilities.Output.scss +1022 -0
  36. data/vendor/assets/scss/Fabric.Typography.Fonts.Output.scss +76 -0
  37. data/vendor/assets/scss/Fabric.Typography.Language.Overrides.Output.scss +56 -0
  38. data/vendor/assets/scss/Fabric.Typography.Output.scss +379 -0
  39. data/vendor/assets/scss/Fabric.Utilities.Output.scss +23 -0
  40. data/vendor/assets/scss/Fabric.scss +40 -0
  41. data/vendor/assets/scss/_Fabric.Animations.RTL.scss +79 -0
  42. data/vendor/assets/scss/_Fabric.Animations.scss +237 -0
  43. data/vendor/assets/scss/_Fabric.Color.Mixins.scss +414 -0
  44. data/vendor/assets/scss/_Fabric.Color.Variables.scss +90 -0
  45. data/vendor/assets/scss/_Fabric.Common.scss +15 -0
  46. data/vendor/assets/scss/_Fabric.Grid.scss +34 -0
  47. data/vendor/assets/scss/_Fabric.Icons.scss +397 -0
  48. data/vendor/assets/scss/_Fabric.Mixins.RTL.scss +315 -0
  49. data/vendor/assets/scss/_Fabric.Mixins.scss +274 -0
  50. data/vendor/assets/scss/_Fabric.Responsive.Utilities.Variables.scss +697 -0
  51. data/vendor/assets/scss/_Fabric.Responsive.Variables.scss +35 -0
  52. data/vendor/assets/scss/_Fabric.Typography.Fonts.scss +170 -0
  53. data/vendor/assets/scss/_Fabric.Typography.Language.Overrides.scss +118 -0
  54. data/vendor/assets/scss/_Fabric.Typography.Variables.scss +27 -0
  55. data/vendor/assets/scss/_Fabric.Typography.scss +357 -0
  56. data/vendor/assets/scss/_Fabric.Utilities.scss +36 -0
  57. data/vendor/assets/scss/_Fabric.ZIndex.Variables.scss +32 -0
  58. data/vendor/assets/scss/_Office.Color.Variables.scss +34 -0
  59. metadata +172 -0
@@ -0,0 +1,90 @@
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
+ // Fabric Core Color Variables
7
+
8
+
9
+ //== Theme Colors
10
+ //
11
+ $ms-color-themeDarker: #004578;
12
+ $ms-color-themeDark: #005a9e;
13
+ $ms-color-themeDarkAlt: #106ebe;
14
+ $ms-color-themePrimary: #0078d7;
15
+ $ms-color-themeSecondary: #2b88d8;
16
+ $ms-color-themeTertiary: #71afe5;
17
+ $ms-color-themeLight: #c7e0f4;
18
+ $ms-color-themeLighter: #deecf9;
19
+ $ms-color-themeLighterAlt: #eff6fc;
20
+
21
+
22
+ //== Grayscale Colors
23
+ //
24
+ $ms-color-black: #000000;
25
+ $ms-color-neutralDark: #212121;
26
+ $ms-color-neutralPrimary: #333333;
27
+ $ms-color-neutralPrimaryAlt: #3C3C3C;
28
+ $ms-color-neutralSecondary: #666666;
29
+ $ms-color-neutralSecondaryAlt: #767676;
30
+ $ms-color-neutralTertiary: #a6a6a6;
31
+ $ms-color-neutralTertiaryAlt: #c8c8c8;
32
+ $ms-color-neutralLight: #eaeaea;
33
+ $ms-color-neutralLighter: #f4f4f4;
34
+ $ms-color-neutralLighterAlt: #f8f8f8;
35
+ $ms-color-white: #ffffff;
36
+
37
+
38
+ //== Translucent Colors
39
+ //
40
+ $ms-color-blackTranslucent40: rgba(0,0,0,.4);
41
+ $ms-color-whiteTranslucent40: rgba(255,255,255,.4);
42
+
43
+
44
+ //== Core brand and accent colors
45
+ //
46
+ $ms-color-yellow: #ffb900;
47
+ $ms-color-yellowLight: #fff100;
48
+ $ms-color-orange: #d83b01;
49
+ $ms-color-orangeLight: #ea4300;
50
+ $ms-color-orangeLighter: #ff8c00;
51
+ $ms-color-redDark: #a80000;
52
+ $ms-color-red: #e81123;
53
+ $ms-color-magentaDark: #5c005c;
54
+ $ms-color-magenta: #b4009e;
55
+ $ms-color-magentaLight: #e3008c;
56
+ $ms-color-purpleDark: #32145a;
57
+ $ms-color-purple: #5c2d91;
58
+ $ms-color-purpleLight: #b4a0ff;
59
+ $ms-color-blueDark: #002050;
60
+ $ms-color-blueMid: #00188f;
61
+ $ms-color-blue: #0078d7;
62
+ $ms-color-blueLight: #00bcf2;
63
+ $ms-color-tealDark: #004b50;
64
+ $ms-color-teal: #008272;
65
+ $ms-color-tealLight: #00b294;
66
+ $ms-color-greenDark: #004b1c;
67
+ $ms-color-green: #107c10;
68
+ $ms-color-greenLight: #bad80a;
69
+
70
+
71
+ //== Message colors
72
+ //
73
+ $ms-color-info: $ms-color-green;
74
+ $ms-color-infoBackground: $ms-color-neutralLighter;
75
+ $ms-color-success: $ms-color-green;
76
+ $ms-color-successBackground: #dff6dd;
77
+ $ms-color-alert: $ms-color-orange;
78
+ $ms-color-alertBackground: #fed9cc;
79
+ $ms-color-error: $ms-color-redDark;
80
+ $ms-color-errorBackground: #fde7e9;
81
+
82
+
83
+ //== High contrast colors
84
+ //
85
+ $ms-color-contrastBlackDisabled: #00ff00;
86
+ $ms-color-contrastWhiteDisabled: #600000;
87
+ $ms-color-contrastBlackSelected: #1AEBFF;
88
+ $ms-color-contrastWhiteSelected: #37006E;
89
+ $ms-color-contrastBlackLink: #8080ff;
90
+ $ms-color-contrastWhiteLink: #00009F;
@@ -0,0 +1,15 @@
1
+ @import "./Fabric.Animations";
2
+ @import "./Fabric.Color.Mixins";
3
+ @import "./Fabric.Color.Variables";
4
+ @import "./Fabric.Grid";
5
+ @import "./Fabric.Icons";
6
+ @import "./Fabric.Mixins";
7
+ @import "./Fabric.Mixins.RTL";
8
+ @import './Fabric.Responsive.Utilities.Variables';
9
+ @import "./Fabric.Responsive.Variables";
10
+ @import "./Fabric.Typography";
11
+ @import "./Fabric.Typography.Fonts";
12
+ @import "./Fabric.Typography.Variables";
13
+ @import "./Fabric.Utilities";
14
+ @import "./Fabric.ZIndex.Variables";
15
+ @import "./Office.Color.Variables";
@@ -0,0 +1,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
+
9
+ //== Grid container (same for all sizes)
10
+ //
11
+ @mixin ms-Grid {
12
+ @include ms-u-borderBox;
13
+ @include ms-u-clearfix;
14
+ padding: 0 8px;
15
+ }
16
+
17
+ //== Grid rows (pull first and last column out)
18
+ //
19
+ @mixin ms-Grid-row {
20
+ margin: 0 -8px;
21
+ @include ms-u-borderBox;
22
+ @include ms-u-clearfix;
23
+ }
24
+
25
+ //== Grid cells
26
+ //
27
+ @mixin ms-Grid-col {
28
+ position: relative;
29
+ min-height: 1px;
30
+ padding-left: 8px;
31
+ padding-right: 8px;
32
+ @include ms-u-borderBox;
33
+ float: left;
34
+ }
@@ -0,0 +1,397 @@
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 definitions
7
+
8
+ @mixin ms-Icon {
9
+ -moz-osx-font-smoothing: grayscale;
10
+ -webkit-font-smoothing: antialiased;
11
+ display: inline-block;
12
+ font-family: 'Office365Icons';
13
+ font-style: normal;
14
+ font-weight: normal;
15
+ line-height: 1;
16
+ speak: none;
17
+ }
18
+
19
+ // Modifiers: Each of the icons.
20
+ @mixin ms-Icon--circleEmpty { content: '\e000'; } // ''
21
+ @mixin ms-Icon--circleFill { content: '\e001'; } // ''
22
+ @mixin ms-Icon--placeholder { content: '\e002'; } // ''
23
+ @mixin ms-Icon--star { content: '\e003'; } // ''
24
+ @mixin ms-Icon--plus { content: '\e004'; } // ''
25
+ @mixin ms-Icon--minus { content: '\e005'; } // ''
26
+ @mixin ms-Icon--question { content: '\e006'; } // ''
27
+ @mixin ms-Icon--exclamation { content: '\e007'; } // ''
28
+ @mixin ms-Icon--person { content: '\e008'; } // ''
29
+ @mixin ms-Icon--mail { content: '\e009'; } // ''
30
+ @mixin ms-Icon--infoCircle { content: '\e00a'; } // ''
31
+ @mixin ms-Icon--alert { content: '\e00b'; } // ''
32
+ @mixin ms-Icon--xCircle { content: '\e00c'; } // ''
33
+ @mixin ms-Icon--mailOpen { content: '\e00d'; } // ''
34
+ @mixin ms-Icon--people { content: '\e00e'; } // ''
35
+ @mixin ms-Icon--bell { content: '\e010'; } // ''
36
+ @mixin ms-Icon--calendar { content: '\e011'; } // ''
37
+ @mixin ms-Icon--scheduling { content: '\e012'; } // ''
38
+ @mixin ms-Icon--event { content: '\e013'; } // ''
39
+ @mixin ms-Icon--folder { content: '\e014'; } // ''
40
+ @mixin ms-Icon--documents { content: '\e015'; } // ''
41
+ @mixin ms-Icon--onedrive { content: '\e016'; } // ''
42
+ @mixin ms-Icon--chat { content: '\e017'; } // ''
43
+ @mixin ms-Icon--sites { content: '\e018'; } // ''
44
+ @mixin ms-Icon--listBullets { content: '\e019'; } // ''
45
+ @mixin ms-Icon--calendarWeek { content: '\e01a'; } // ''
46
+ @mixin ms-Icon--calendarWorkWeek { content: '\e01b'; } // ''
47
+ @mixin ms-Icon--calendarDay { content: '\e01c'; } // ''
48
+ @mixin ms-Icon--folderMove { content: '\e01d'; } // ''
49
+ @mixin ms-Icon--panel { content: '\e01e'; } // ''
50
+ @mixin ms-Icon--popout { content: '\e01f'; } // ''
51
+ @mixin ms-Icon--menu { content: '\e020'; } // ''
52
+ @mixin ms-Icon--home { content: '\e021'; } // ''
53
+ @mixin ms-Icon--favorites { content: '\e022'; } // ''
54
+ @mixin ms-Icon--phone { content: '\e023'; } // ''
55
+ @mixin ms-Icon--mailSend { content: '\e024'; } // ''
56
+ @mixin ms-Icon--save { content: '\e025'; } // ''
57
+ @mixin ms-Icon--trash { content: '\e026'; } // ''
58
+ @mixin ms-Icon--pencil { content: '\e027'; } // ''
59
+ @mixin ms-Icon--flag { content: '\e028'; } // ''
60
+ @mixin ms-Icon--reply { content: '\e029'; } // ''
61
+ @mixin ms-Icon--miniatures { content: '\e02a'; } // ''
62
+ @mixin ms-Icon--voicemail { content: '\e02b'; } // ''
63
+ @mixin ms-Icon--play { content: '\e02c'; } // ''
64
+ @mixin ms-Icon--pause { content: '\e02d'; } // ''
65
+ @mixin ms-Icon--onlineAdd { content: '\e02e'; } // ''
66
+ @mixin ms-Icon--onlineJoin { content: '\e02f'; } // ''
67
+ @mixin ms-Icon--replyAll { content: '\e030'; } // ''
68
+ @mixin ms-Icon--attachment { content: '\e031'; } // ''
69
+ @mixin ms-Icon--drm { content: '\e032'; } // ''
70
+ @mixin ms-Icon--pinDown { content: '\e033'; } // ''
71
+ @mixin ms-Icon--refresh { content: '\e034'; } // ''
72
+ @mixin ms-Icon--gear { content: '\e035'; } // ''
73
+ @mixin ms-Icon--smiley { content: '\e036'; } // ''
74
+ @mixin ms-Icon--info { content: '\e037'; } // ''
75
+ @mixin ms-Icon--lock { content: '\e038'; } // ''
76
+ @mixin ms-Icon--search { content: '\e039'; } // ''
77
+ @mixin ms-Icon--questionReverse { content: '\e03a'; } // ''
78
+ @mixin ms-Icon--notRecurring { content: '\e03b'; } // ''
79
+ @mixin ms-Icon--tasks { content: '\e040'; } // ''
80
+ @mixin ms-Icon--check { content: '\e041'; } // ''
81
+ @mixin ms-Icon--x { content: '\e042'; } // ''
82
+ @mixin ms-Icon--ellipsis { content: '\e045'; } // ''
83
+ @mixin ms-Icon--dot { content: '\e046'; } // ''
84
+ @mixin ms-Icon--arrowUp { content: '\e047'; } // ''
85
+ @mixin ms-Icon--arrowDown { content: '\e048'; } // ''
86
+ @mixin ms-Icon--arrowLeft { content: '\e049'; } // ''
87
+ @mixin ms-Icon--arrowRight { content: '\e04a'; } // ''
88
+ @mixin ms-Icon--download { content: '\e04b'; } // ''
89
+ @mixin ms-Icon--directions { content: '\e04c'; } // ''
90
+ @mixin ms-Icon--microphone { content: '\e04f'; } // ''
91
+ @mixin ms-Icon--caretUp { content: '\e051'; } // ''
92
+ @mixin ms-Icon--caretDown { content: '\e052'; } // ''
93
+ @mixin ms-Icon--caretLeft { content: '\e053'; } // ''
94
+ @mixin ms-Icon--caretRight { content: '\e054'; } // ''
95
+ @mixin ms-Icon--caretUpLeft { content: '\e05a'; } // ''
96
+ @mixin ms-Icon--caretUpRight { content: '\e05b'; } // ''
97
+ @mixin ms-Icon--caretDownRight { content: '\e05c'; } // ''
98
+ @mixin ms-Icon--caretDownLeft { content: '\e05d'; } // ''
99
+ @mixin ms-Icon--note { content: '\e06a'; } // ''
100
+ @mixin ms-Icon--noteReply { content: '\e06b'; } // ''
101
+ @mixin ms-Icon--noteForward { content: '\e06c'; } // ''
102
+ @mixin ms-Icon--key { content: '\e06f'; } // ''
103
+ @mixin ms-Icon--tile { content: '\e070'; } // ''
104
+ @mixin ms-Icon--taskRecurring { content: '\e071'; } // ''
105
+ @mixin ms-Icon--starEmpty { content: '\e073'; } // ''
106
+ @mixin ms-Icon--upload { content: '\e076'; } // ''
107
+ @mixin ms-Icon--wrench { content: '\e077'; } // ''
108
+ @mixin ms-Icon--share { content: '\e078'; } // ''
109
+ @mixin ms-Icon--documentReply { content: '\e079'; } // ''
110
+ @mixin ms-Icon--documentForward { content: '\e07a'; } // ''
111
+ @mixin ms-Icon--partner { content: '\e080'; } // ''
112
+ @mixin ms-Icon--reactivate { content: '\e084'; } // ''
113
+ @mixin ms-Icon--sort { content: '\e085'; } // ''
114
+ @mixin ms-Icon--personAdd { content: '\e086'; } // ''
115
+ @mixin ms-Icon--chevronUp { content: '\e087'; } // ''
116
+ @mixin ms-Icon--chevronDown { content: '\e088'; } // ''
117
+ @mixin ms-Icon--chevronLeft { content: '\e089'; } // ''
118
+ @mixin ms-Icon--chevronRight { content: '\e08a'; } // ''
119
+ @mixin ms-Icon--peopleAdd { content: '\e08c'; } // ''
120
+ @mixin ms-Icon--newsfeed { content: '\e08d'; } // ''
121
+ @mixin ms-Icon--notebook { content: '\e08e'; } // ''
122
+ @mixin ms-Icon--link { content: '\e08f'; } // ''
123
+ @mixin ms-Icon--chevronsUp { content: '\e090'; } // ''
124
+ @mixin ms-Icon--chevronsDown { content: '\e091'; } // ''
125
+ @mixin ms-Icon--chevronsLeft { content: '\e092'; } // ''
126
+ @mixin ms-Icon--chevronsRight { content: '\e093'; } // ''
127
+ @mixin ms-Icon--clutter { content: '\e09a'; } // ''
128
+ @mixin ms-Icon--subscribe { content: '\e09c'; } // ''
129
+ @mixin ms-Icon--unsubscribe { content: '\e09d'; } // ''
130
+ @mixin ms-Icon--personRemove { content: '\e09e'; } // ''
131
+ @mixin ms-Icon--receiptForward { content: '\e0a0'; } // ''
132
+ @mixin ms-Icon--receiptReply { content: '\e0a1'; } // ''
133
+ @mixin ms-Icon--receiptCheck { content: '\e0a2'; } // ''
134
+ @mixin ms-Icon--peopleRemove { content: '\e0a3'; } // ''
135
+ @mixin ms-Icon--merge { content: '\e0a4'; } // ''
136
+ @mixin ms-Icon--split { content: '\e0a5'; } // ''
137
+ @mixin ms-Icon--eventCancel { content: '\e0a6'; } // ''
138
+ @mixin ms-Icon--eventShare { content: '\e0a7'; } // ''
139
+ @mixin ms-Icon--today { content: '\e0a9'; } // ''
140
+ @mixin ms-Icon--oofReply { content: '\e0aa'; } // ''
141
+ @mixin ms-Icon--voicemailReply { content: '\e0ac'; } // ''
142
+ @mixin ms-Icon--voicemailForward { content: '\e0ad'; } // ''
143
+ @mixin ms-Icon--ribbon { content: '\e0af'; } // ''
144
+ @mixin ms-Icon--contact { content: '\e0b0'; } // ''
145
+ @mixin ms-Icon--eye { content: '\e0b1'; } // ''
146
+ @mixin ms-Icon--glasses { content: '\e0b2'; } // ''
147
+ @mixin ms-Icon--print { content: '\e100'; } // ''
148
+ @mixin ms-Icon--room { content: '\e101'; } // ''
149
+ @mixin ms-Icon--post { content: '\e102'; } // ''
150
+ @mixin ms-Icon--toggle { content: '\e103'; } // ''
151
+ @mixin ms-Icon--touch { content: '\e104'; } // ''
152
+ @mixin ms-Icon--clock { content: '\e105'; } // ''
153
+ @mixin ms-Icon--fax { content: '\e106'; } // ''
154
+ @mixin ms-Icon--lightning { content: '\e110'; } // ''
155
+ @mixin ms-Icon--dialpad { content: '\e111'; } // ''
156
+ @mixin ms-Icon--phoneTransfer { content: '\e112'; } // ''
157
+ @mixin ms-Icon--phoneAdd { content: '\e113'; } // ''
158
+ @mixin ms-Icon--late { content: '\e114'; } // ''
159
+ @mixin ms-Icon--chatAdd { content: '\e115'; } // ''
160
+ @mixin ms-Icon--conflict { content: '\e116'; } // ''
161
+ @mixin ms-Icon--navigate { content: '\e117'; } // ''
162
+ @mixin ms-Icon--camera { content: '\e119'; } // ''
163
+ @mixin ms-Icon--filter { content: '\e11a'; } // ''
164
+ @mixin ms-Icon--fullscreen { content: '\e11b'; } // ''
165
+ @mixin ms-Icon--new { content: '\e11c'; } // ''
166
+ @mixin ms-Icon--mailEmpty { content: '\e11d'; } // ''
167
+ @mixin ms-Icon--editBox { content: '\e11e'; } // ''
168
+ @mixin ms-Icon--waffle { content: '\e11f'; } // ''
169
+ @mixin ms-Icon--work { content: '\e120'; } // ''
170
+ @mixin ms-Icon--eventRecurring { content: '\e121'; } // ''
171
+ @mixin ms-Icon--cart { content: '\e122'; } // ''
172
+ @mixin ms-Icon--socialListening { content: '\e123'; } // ''
173
+ @mixin ms-Icon--mapMarker { content: '\e124'; } // ''
174
+ @mixin ms-Icon--org { content: '\e125'; } // ''
175
+ @mixin ms-Icon--replyAlt { content: '\e150'; } // ''
176
+ @mixin ms-Icon--replyAllAlt { content: '\e152'; } // ''
177
+ @mixin ms-Icon--eventInfo { content: '\e154'; } // ''
178
+ @mixin ms-Icon--group { content: '\e155'; } // ''
179
+ @mixin ms-Icon--money { content: '\e161'; } // ''
180
+ @mixin ms-Icon--graph { content: '\e162'; } // ''
181
+ @mixin ms-Icon--noteEdit { content: '\e163'; } // ''
182
+ @mixin ms-Icon--dashboard { content: '\e164'; } // ''
183
+ @mixin ms-Icon--mailEdit { content: '\e165'; } // ''
184
+ @mixin ms-Icon--pinLeft { content: '\e167'; } // ''
185
+ @mixin ms-Icon--heart { content: '\e16a'; } // ''
186
+ @mixin ms-Icon--heartEmpty { content: '\e16b'; } // ''
187
+ @mixin ms-Icon--picture { content: '\e16c'; } // ''
188
+ @mixin ms-Icon--cake { content: '\e16d'; } // ''
189
+ @mixin ms-Icon--books { content: '\e16e'; } // ''
190
+ @mixin ms-Icon--chart { content: '\e16f'; } // ''
191
+ @mixin ms-Icon--video { content: '\e170'; } // ''
192
+ @mixin ms-Icon--soccer { content: '\e171'; } // ''
193
+ @mixin ms-Icon--meal { content: '\e172'; } // ''
194
+ @mixin ms-Icon--balloon { content: '\e173'; } // ''
195
+ @mixin ms-Icon--cat { content: '\e174'; } // ''
196
+ @mixin ms-Icon--dog { content: '\e175'; } // ''
197
+ @mixin ms-Icon--bag { content: '\e176'; } // ''
198
+ @mixin ms-Icon--music { content: '\e177'; } // ''
199
+ @mixin ms-Icon--stopwatch { content: '\e178'; } // ''
200
+ @mixin ms-Icon--coffee { content: '\e179'; } // ''
201
+ @mixin ms-Icon--briefcase { content: '\e17a'; } // ''
202
+ @mixin ms-Icon--pill { content: '\e17b'; } // ''
203
+ @mixin ms-Icon--trophy { content: '\e17c'; } // ''
204
+ @mixin ms-Icon--firstAid { content: '\e17d'; } // ''
205
+ @mixin ms-Icon--plane { content: '\e17e'; } // ''
206
+ @mixin ms-Icon--page { content: '\e17f'; } // ''
207
+ @mixin ms-Icon--car { content: '\e180'; } // ''
208
+ @mixin ms-Icon--dogAlt { content: '\e181'; } // ''
209
+ @mixin ms-Icon--document { content: '\e182'; } // ''
210
+ @mixin ms-Icon--metadata { content: '\e183'; } // ''
211
+ @mixin ms-Icon--pointItem { content: '\e184'; } // ''
212
+ @mixin ms-Icon--text { content: '\e185'; } // ''
213
+ @mixin ms-Icon--fieldText { content: '\e186'; } // ''
214
+ @mixin ms-Icon--fieldNumber { content: '\e187'; } // ''
215
+ @mixin ms-Icon--dropdown { content: '\e188'; } // ''
216
+ @mixin ms-Icon--radioButton { content: '\e189'; } // ''
217
+ @mixin ms-Icon--checkbox { content: '\e18a'; } // ''
218
+ @mixin ms-Icon--story { content: '\e18b'; } // ''
219
+ @mixin ms-Icon--bold { content: '\e18c'; } // ''
220
+ @mixin ms-Icon--italic { content: '\e18d'; } // ''
221
+ @mixin ms-Icon--underline { content: '\e18e'; } // ''
222
+ @mixin ms-Icon--quote { content: '\e18f'; } // ''
223
+ @mixin ms-Icon--styleRemove { content: '\e190'; } // ''
224
+ @mixin ms-Icon--pictureAdd { content: '\e191'; } // ''
225
+ @mixin ms-Icon--pictureRemove { content: '\e192'; } // ''
226
+ @mixin ms-Icon--desktop { content: '\e193'; } // ''
227
+ @mixin ms-Icon--tablet { content: '\e194'; } // ''
228
+ @mixin ms-Icon--mobile { content: '\e195'; } // ''
229
+ @mixin ms-Icon--table { content: '\e196'; } // ''
230
+ @mixin ms-Icon--hide { content: '\e197'; } // ''
231
+ @mixin ms-Icon--shield { content: '\e198'; } // ''
232
+ @mixin ms-Icon--header { content: '\e19a'; } // ''
233
+ @mixin ms-Icon--paint { content: '\e19b'; } // ''
234
+ @mixin ms-Icon--support { content: '\e19c'; } // ''
235
+ @mixin ms-Icon--settings { content: '\e19d'; } // ''
236
+ @mixin ms-Icon--creditCard { content: '\e19e'; } // ''
237
+ @mixin ms-Icon--reload { content: '\e19f'; } // ''
238
+ @mixin ms-Icon--peopleSecurity { content: '\e200'; } // ''
239
+ @mixin ms-Icon--fieldTextBox { content: '\e203'; } // ''
240
+ @mixin ms-Icon--multiChoice { content: '\e204'; } // ''
241
+ @mixin ms-Icon--fieldMail { content: '\e205'; } // ''
242
+ @mixin ms-Icon--contactForm { content: '\e206'; } // ''
243
+ @mixin ms-Icon--circleHalfFilled { content: '\e207'; } // ''
244
+ @mixin ms-Icon--documentPDF { content: '\e208'; } // ''
245
+ @mixin ms-Icon--bookmark { content: '\e209'; } // ''
246
+ @mixin ms-Icon--circleUnfilled { content: '\e20b'; } // ''
247
+ @mixin ms-Icon--circleFilled { content: '\e20c'; } // ''
248
+ @mixin ms-Icon--textBox { content: '\e20e'; } // ''
249
+ @mixin ms-Icon--drop { content: '\e20f'; } // ''
250
+ @mixin ms-Icon--sun { content: '\e210'; } // ''
251
+ @mixin ms-Icon--lifesaver { content: '\e211'; } // ''
252
+ @mixin ms-Icon--lifesaverLock { content: '\e212'; } // ''
253
+ @mixin ms-Icon--mailUnread { content: '\e213'; } // ''
254
+ @mixin ms-Icon--mailRead { content: '\e214'; } // ''
255
+ @mixin ms-Icon--inboxCheck { content: '\e215'; } // ''
256
+ @mixin ms-Icon--folderSearch { content: '\e216'; } // ''
257
+ @mixin ms-Icon--collapse { content: '\e217'; } // ''
258
+ @mixin ms-Icon--expand { content: '\e218'; } // ''
259
+ @mixin ms-Icon--ascending { content: '\e219'; } // ''
260
+ @mixin ms-Icon--descending { content: '\e21a'; } // ''
261
+ @mixin ms-Icon--filterClear { content: '\e21b'; } // ''
262
+ @mixin ms-Icon--checkboxEmpty { content: '\e21c'; } // ''
263
+ @mixin ms-Icon--checkboxMixed { content: '\e21d'; } // ''
264
+ @mixin ms-Icon--boards { content: '\e21e'; } // ''
265
+ @mixin ms-Icon--checkboxCheck { content: '\e21f'; } // ''
266
+ @mixin ms-Icon--frowny { content: '\e220'; } // ''
267
+ @mixin ms-Icon--lightBulb { content: '\e221'; } // ''
268
+ @mixin ms-Icon--globe { content: '\e222'; } // ''
269
+ @mixin ms-Icon--deviceWipe { content: '\e223'; } // ''
270
+ @mixin ms-Icon--listCheck { content: '\e226'; } // ''
271
+ @mixin ms-Icon--listGroup { content: '\e227'; } // ''
272
+ @mixin ms-Icon--timeline { content: '\e228'; } // ''
273
+ @mixin ms-Icon--fontIncrease { content: '\e229'; } // ''
274
+ @mixin ms-Icon--fontDecrease { content: '\e22a'; } // ''
275
+ @mixin ms-Icon--fontColor { content: '\e22b'; } // ''
276
+ @mixin ms-Icon--mailCheck { content: '\e22c'; } // ''
277
+ @mixin ms-Icon--mailDown { content: '\e22d'; } // ''
278
+ @mixin ms-Icon--listCheckbox { content: '\e22e'; } // ''
279
+ @mixin ms-Icon--sunAdd { content: '\e22f'; } // ''
280
+ @mixin ms-Icon--sunQuestion { content: '\e230'; } // ''
281
+ @mixin ms-Icon--chevronThinUp { content: '\e231'; } // ''
282
+ @mixin ms-Icon--chevronThinDown { content: '\e232'; } // ''
283
+ @mixin ms-Icon--chevronThinLeft { content: '\e233'; } // ''
284
+ @mixin ms-Icon--chevronThinRight { content: '\e234'; } // ''
285
+ @mixin ms-Icon--chevronThickUp { content: '\e235'; } // ''
286
+ @mixin ms-Icon--chevronThickDown { content: '\e236'; } // ''
287
+ @mixin ms-Icon--chevronThickLeft { content: '\e237'; } // ''
288
+ @mixin ms-Icon--chevronThickRight { content: '\e238'; } // ''
289
+ @mixin ms-Icon--linkRemove { content: '\e239'; } // ''
290
+ @mixin ms-Icon--alertOutline { content: '\e23b'; } // ''
291
+ @mixin ms-Icon--documentLandscape { content: '\e23c'; } // ''
292
+ @mixin ms-Icon--documentAdd { content: '\e23d'; } // ''
293
+ @mixin ms-Icon--toggleMiddle { content: '\e23e'; } // ''
294
+ @mixin ms-Icon--embed { content: '\e23f'; } // ''
295
+ @mixin ms-Icon--listNumbered { content: '\e240'; } // ''
296
+ @mixin ms-Icon--peopleCheck { content: '\e242'; } // ''
297
+ @mixin ms-Icon--caretUpOutline { content: '\e243'; } // ''
298
+ @mixin ms-Icon--caretDownOutline { content: '\e244'; } // ''
299
+ @mixin ms-Icon--caretLeftOutline { content: '\e245'; } // ''
300
+ @mixin ms-Icon--caretRightOutline { content: '\e246'; } // ''
301
+ @mixin ms-Icon--mailSync { content: '\e248'; } // ''
302
+ @mixin ms-Icon--mailError { content: '\e249'; } // ''
303
+ @mixin ms-Icon--mailPause { content: '\e24a'; } // ''
304
+ @mixin ms-Icon--peopleSync { content: '\e24b'; } // ''
305
+ @mixin ms-Icon--peopleError { content: '\e24c'; } // ''
306
+ @mixin ms-Icon--peoplePause { content: '\e24d'; } // ''
307
+ @mixin ms-Icon--circleBall { content: '\e24e'; } // ''
308
+ @mixin ms-Icon--circleBalloons { content: '\e24f'; } // ''
309
+ @mixin ms-Icon--circleCar { content: '\e250'; } // ''
310
+ @mixin ms-Icon--circleCat { content: '\e251'; } // ''
311
+ @mixin ms-Icon--circleCoffee { content: '\e252'; } // ''
312
+ @mixin ms-Icon--circleDog { content: '\e253'; } // ''
313
+ @mixin ms-Icon--circleLightning { content: '\e254'; } // ''
314
+ @mixin ms-Icon--circlePill { content: '\e255'; } // ''
315
+ @mixin ms-Icon--circlePlane { content: '\e256'; } // ''
316
+ @mixin ms-Icon--circlePoodle { content: '\e257'; } // ''
317
+ @mixin ms-Icon--checkPeople { content: '\e259'; } // ''
318
+ @mixin ms-Icon--documentSearch { content: '\e25a'; } // ''
319
+ @mixin ms-Icon--sortLines { content: '\e25c'; } // ''
320
+ @mixin ms-Icon--calendarPublic { content: '\e25d'; } // ''
321
+ @mixin ms-Icon--contactPublic { content: '\e25e'; } // ''
322
+ @mixin ms-Icon--classNotebook { content: '\e25f'; } // ''
323
+ @mixin ms-Icon--triangleUp { content: '\e260'; } // ''
324
+ @mixin ms-Icon--triangleRight { content: '\e261'; } // ''
325
+ @mixin ms-Icon--triangleDown { content: '\e262'; } // ''
326
+ @mixin ms-Icon--triangleLeft { content: '\e263'; } // ''
327
+ @mixin ms-Icon--triangleEmptyUp { content: '\e264'; } // ''
328
+ @mixin ms-Icon--triangleEmptyRight { content: '\e265'; } // ''
329
+ @mixin ms-Icon--triangleEmptyDown { content: '\e266'; } // ''
330
+ @mixin ms-Icon--triangleEmptyLeft { content: '\e267'; } // ''
331
+ @mixin ms-Icon--filePDF { content: '\e268'; } // ''
332
+ @mixin ms-Icon--fileImage { content: '\e26c'; } // ''
333
+ @mixin ms-Icon--fileDocument { content: '\e26d'; } // ''
334
+ @mixin ms-Icon--listGroup2 { content: '\e26e'; } // ''
335
+ @mixin ms-Icon--copy { content: '\e26f'; } // ''
336
+ @mixin ms-Icon--creditCardOutline { content: '\e270'; } // ''
337
+ @mixin ms-Icon--mailPublic { content: '\e272'; } // ''
338
+ @mixin ms-Icon--folderPublic { content: '\e273'; } // ''
339
+ @mixin ms-Icon--teamwork { content: '\e274'; } // ''
340
+ @mixin ms-Icon--move { content: '\e275'; } // ''
341
+ @mixin ms-Icon--classroom { content: '\e276'; } // ''
342
+ @mixin ms-Icon--menu2 { content: '\e277'; } // ''
343
+ @mixin ms-Icon--plus2 { content: '\e278'; } // ''
344
+ @mixin ms-Icon--tag { content: '\e279'; } // ''
345
+ @mixin ms-Icon--arrowUp2 { content: '\e27a'; } // ''
346
+ @mixin ms-Icon--arrowDown2 { content: '\e27b'; } // ''
347
+ @mixin ms-Icon--circlePlus { content: '\e27c'; } // ''
348
+ @mixin ms-Icon--circleInfo { content: '\e27d'; } // ''
349
+ @mixin ms-Icon--section { content: '\e27e'; } // ''
350
+ @mixin ms-Icon--sections { content: '\e27f'; } // ''
351
+ @mixin ms-Icon--at { content: '\e282'; } // ''
352
+ @mixin ms-Icon--arrowUpRight { content: '\e283'; } // ''
353
+ @mixin ms-Icon--arrowDownRight { content: '\e284'; } // ''
354
+ @mixin ms-Icon--arrowDownLeft { content: '\e285'; } // ''
355
+ @mixin ms-Icon--arrowUpLeft { content: '\e286'; } // ''
356
+ @mixin ms-Icon--bundle { content: '\e287'; } // ''
357
+ @mixin ms-Icon--pictureEdit { content: '\e288'; } // ''
358
+ @mixin ms-Icon--protectionCenter { content: '\e289'; } // ''
359
+ @mixin ms-Icon--alert2 { content: '\e28a'; } // ''
360
+
361
+
362
+ @mixin ms-Icon--circle {
363
+ position: relative;
364
+ display: inline-block;
365
+ font-size: 1rem;
366
+ width: 1em;
367
+ height: 1em;
368
+ margin: 0 0.5em 0 0;
369
+ padding: 0;
370
+ text-align: left;
371
+ -webkit-font-smoothing: antialiased;
372
+
373
+ &:before, &:after {
374
+ line-height: 1;
375
+ font-size: inherit;
376
+ }
377
+
378
+ &:before {
379
+ display: block;
380
+ width: 100%;
381
+ height: 100%;
382
+ margin: 0;
383
+ padding: 0;
384
+ vertical-align: top;
385
+ position: absolute;
386
+ }
387
+
388
+ &:after {
389
+ content: '\e000';
390
+ position: absolute;
391
+ top: 0;
392
+ left: 0;
393
+ transform: scale(2);
394
+ transform-origin: 50% 50%;
395
+ z-index: $ms-zIndex-back;
396
+ }
397
+ }