office-ui-fabric-rails 2.5.0.0

Sign up to get free protection for your applications and to get access to all the features.
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,31 @@
1
+ @import 'Fabric.Common';
2
+
3
+ @import '../components/Breadcrumb/Breadcrumb';
4
+ @import '../components/Button/Button';
5
+ @import '../components/Callout/Callout';
6
+ @import '../components/ChoiceField/ChoiceField';
7
+ @import '../components/CommandBar/CommandBar';
8
+ @import '../components/ContextualMenu/ContextualMenu';
9
+ @import '../components/DatePicker/DatePicker';
10
+ @import '../components/Dialog/Dialog';
11
+ @import '../components/Dropdown/Dropdown';
12
+ @import '../components/Facepile/Facepile';
13
+ @import '../components/Label/Label';
14
+ @import '../components/Link/Link';
15
+ @import '../components/List/List';
16
+ @import '../components/ListItem/ListItem';
17
+ @import '../components/MessageBanner/MessageBanner';
18
+ @import '../components/NavBar/NavBar';
19
+ @import '../components/OrgChart/OrgChart';
20
+ @import '../components/Overlay/Overlay';
21
+ @import '../components/Panel/Panel';
22
+ @import '../components/PeoplePicker/PeoplePicker';
23
+ @import '../components/Persona/Persona';
24
+ @import '../components/PersonaCard/PersonaCard';
25
+ @import '../components/Pivot/Pivot';
26
+ @import '../components/ProgressIndicator/ProgressIndicator';
27
+ @import '../components/SearchBox/SearchBox';
28
+ @import '../components/Spinner/Spinner';
29
+ @import '../components/Table/Table';
30
+ @import '../components/TextField/TextField';
31
+ @import '../components/Toggle/Toggle';
@@ -0,0 +1,32 @@
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
+ @import "Fabric.Grid";
9
+
10
+ //== Grid container (same for all sizes)
11
+ //
12
+ .ms-Grid {
13
+ @include ms-Grid;
14
+ }
15
+
16
+ //== Grid rows (pull first and last column out)
17
+ //
18
+ .ms-Grid-row {
19
+ @include ms-Grid-row;
20
+ }
21
+
22
+ //== Grid cells
23
+ //
24
+ .ms-Grid-col {
25
+ @include ms-Grid-col;
26
+ }
27
+
28
+ // For nested grids (a grid inside a column), removing the padding
29
+ // so that the nested grid's columns go to the edge of the parent's.
30
+ .ms-Grid-col .ms-Grid {
31
+ padding: 0;
32
+ }
@@ -0,0 +1,23 @@
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 font-family definition
7
+
8
+ /*
9
+ Your use of the content in the files referenced here are subject to the terms of the license at http://aka.ms/fabric-font-license
10
+ */
11
+
12
+ @import "Fabric.Typography.Fonts";
13
+
14
+ @font-face {
15
+ font-family: 'Office365Icons';
16
+ src: url('#{$ms-font-directory}/icons/office365icons.eot?');
17
+ src: url('#{$ms-font-directory}/icons/office365icons.eot?#iefix') format('embedded-opentype'),
18
+ url('#{$ms-font-directory}/icons/office365icons.woff?') format('woff'),
19
+ url('#{$ms-font-directory}/icons/office365icons.ttf?') format('truetype'),
20
+ url('#{$ms-font-directory}/icons/office365icons.svg?#office365icons') format('svg');
21
+ font-weight: normal;
22
+ font-style: normal;
23
+ }
@@ -0,0 +1,771 @@
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
+
9
+ @import './Fabric.Icons';
10
+
11
+ // Base icon definition
12
+ .ms-Icon {
13
+ @include ms-Icon();
14
+ }
15
+
16
+ // Modifiers: Each of the icons.
17
+ //*-- Start
18
+ .ms-Icon--circleEmpty:before { @include ms-Icon--circleEmpty; }
19
+ .ms-Icon--circleFill:before { @include ms-Icon--circleFill; }
20
+ .ms-Icon--placeholder:before { @include ms-Icon--placeholder; }
21
+ .ms-Icon--star:before { @include ms-Icon--star; }
22
+ .ms-Icon--plus:before { @include ms-Icon--plus; }
23
+ .ms-Icon--minus:before { @include ms-Icon--minus; }
24
+ .ms-Icon--question:before { @include ms-Icon--question; }
25
+ .ms-Icon--exclamation:before { @include ms-Icon--exclamation; }
26
+ .ms-Icon--person:before { @include ms-Icon--person; }
27
+ .ms-Icon--mail:before { @include ms-Icon--mail; }
28
+ .ms-Icon--infoCircle:before { @include ms-Icon--infoCircle; }
29
+ .ms-Icon--alert:before { @include ms-Icon--alert; }
30
+ .ms-Icon--xCircle:before { @include ms-Icon--xCircle; }
31
+ .ms-Icon--mailOpen:before { @include ms-Icon--mailOpen; }
32
+ .ms-Icon--people:before { @include ms-Icon--people; }
33
+ .ms-Icon--bell:before { @include ms-Icon--bell; }
34
+ .ms-Icon--calendar:before { @include ms-Icon--calendar; }
35
+ .ms-Icon--scheduling:before { @include ms-Icon--scheduling; }
36
+ .ms-Icon--event:before { @include ms-Icon--event; }
37
+ .ms-Icon--folder:before { @include ms-Icon--folder; }
38
+ .ms-Icon--documents:before { @include ms-Icon--documents; }
39
+ .ms-Icon--onedrive:before { @include ms-Icon--onedrive; }
40
+ .ms-Icon--chat:before { @include ms-Icon--chat; }
41
+ .ms-Icon--sites:before { @include ms-Icon--sites; }
42
+ .ms-Icon--listBullets:before { @include ms-Icon--listBullets; }
43
+ .ms-Icon--calendarWeek:before { @include ms-Icon--calendarWeek; }
44
+ .ms-Icon--calendarWorkWeek:before { @include ms-Icon--calendarWorkWeek; }
45
+ .ms-Icon--calendarDay:before { @include ms-Icon--calendarDay; }
46
+ .ms-Icon--folderMove:before { @include ms-Icon--folderMove; }
47
+ .ms-Icon--panel:before { @include ms-Icon--panel; }
48
+ .ms-Icon--popout:before { @include ms-Icon--popout; }
49
+ .ms-Icon--menu:before { @include ms-Icon--menu; }
50
+ .ms-Icon--home:before { @include ms-Icon--home; }
51
+ .ms-Icon--favorites:before { @include ms-Icon--favorites; }
52
+ .ms-Icon--phone:before { @include ms-Icon--phone; }
53
+ .ms-Icon--mailSend:before { @include ms-Icon--mailSend; }
54
+ .ms-Icon--save:before { @include ms-Icon--save; }
55
+ .ms-Icon--trash:before { @include ms-Icon--trash; }
56
+ .ms-Icon--pencil:before { @include ms-Icon--pencil; }
57
+ .ms-Icon--flag:before { @include ms-Icon--flag; }
58
+ .ms-Icon--reply:before { @include ms-Icon--reply; }
59
+ .ms-Icon--miniatures:before { @include ms-Icon--miniatures; }
60
+ .ms-Icon--voicemail:before { @include ms-Icon--voicemail; }
61
+ .ms-Icon--play:before { @include ms-Icon--play; }
62
+ .ms-Icon--pause:before { @include ms-Icon--pause; }
63
+ .ms-Icon--onlineAdd:before { @include ms-Icon--onlineAdd; }
64
+ .ms-Icon--onlineJoin:before { @include ms-Icon--onlineJoin; }
65
+ .ms-Icon--replyAll:before { @include ms-Icon--replyAll; }
66
+ .ms-Icon--attachment:before { @include ms-Icon--attachment; }
67
+ .ms-Icon--drm:before { @include ms-Icon--drm; }
68
+ .ms-Icon--pinDown:before { @include ms-Icon--pinDown; }
69
+ .ms-Icon--refresh:before { @include ms-Icon--refresh; }
70
+ .ms-Icon--gear:before { @include ms-Icon--gear; }
71
+ .ms-Icon--smiley:before { @include ms-Icon--smiley; }
72
+ .ms-Icon--info:before { @include ms-Icon--info; }
73
+ .ms-Icon--lock:before { @include ms-Icon--lock; }
74
+ .ms-Icon--search:before { @include ms-Icon--search; }
75
+ .ms-Icon--questionReverse:before { @include ms-Icon--questionReverse; }
76
+ .ms-Icon--notRecurring:before { @include ms-Icon--notRecurring; }
77
+ .ms-Icon--tasks:before { @include ms-Icon--tasks; }
78
+ .ms-Icon--check:before { @include ms-Icon--check; }
79
+ .ms-Icon--x:before { @include ms-Icon--x; }
80
+ .ms-Icon--ellipsis:before { @include ms-Icon--ellipsis; }
81
+ .ms-Icon--dot:before { @include ms-Icon--dot; }
82
+ .ms-Icon--arrowUp:before { @include ms-Icon--arrowUp; }
83
+ .ms-Icon--arrowDown:before { @include ms-Icon--arrowDown; }
84
+ .ms-Icon--arrowLeft:before { @include ms-Icon--arrowLeft; }
85
+ .ms-Icon--arrowRight:before { @include ms-Icon--arrowRight; }
86
+ .ms-Icon--download:before { @include ms-Icon--download; }
87
+ .ms-Icon--directions:before { @include ms-Icon--directions; }
88
+ .ms-Icon--microphone:before { @include ms-Icon--microphone; }
89
+ .ms-Icon--caretUp:before { @include ms-Icon--caretUp; }
90
+ .ms-Icon--caretDown:before { @include ms-Icon--caretDown; }
91
+ .ms-Icon--caretLeft:before { @include ms-Icon--caretLeft; }
92
+ .ms-Icon--caretRight:before { @include ms-Icon--caretRight; }
93
+ .ms-Icon--caretUpLeft:before { @include ms-Icon--caretUpLeft; }
94
+ .ms-Icon--caretUpRight:before { @include ms-Icon--caretUpRight; }
95
+ .ms-Icon--caretDownRight:before { @include ms-Icon--caretDownRight; }
96
+ .ms-Icon--caretDownLeft:before { @include ms-Icon--caretDownLeft; }
97
+ .ms-Icon--note:before { @include ms-Icon--note; }
98
+ .ms-Icon--noteReply:before { @include ms-Icon--noteReply; }
99
+ .ms-Icon--noteForward:before { @include ms-Icon--noteForward; }
100
+ .ms-Icon--key:before { @include ms-Icon--key; }
101
+ .ms-Icon--tile:before { @include ms-Icon--tile; }
102
+ .ms-Icon--taskRecurring:before { @include ms-Icon--taskRecurring; }
103
+ .ms-Icon--starEmpty:before { @include ms-Icon--starEmpty; }
104
+ .ms-Icon--upload:before { @include ms-Icon--upload; }
105
+ .ms-Icon--wrench:before { @include ms-Icon--wrench; }
106
+ .ms-Icon--share:before { @include ms-Icon--share; }
107
+ .ms-Icon--documentReply:before { @include ms-Icon--documentReply; }
108
+ .ms-Icon--documentForward:before { @include ms-Icon--documentForward; }
109
+ .ms-Icon--partner:before { @include ms-Icon--partner; }
110
+ .ms-Icon--reactivate:before { @include ms-Icon--reactivate; }
111
+ .ms-Icon--sort:before { @include ms-Icon--sort; }
112
+ .ms-Icon--personAdd:before { @include ms-Icon--personAdd; }
113
+ .ms-Icon--chevronUp:before { @include ms-Icon--chevronUp; }
114
+ .ms-Icon--chevronDown:before { @include ms-Icon--chevronDown; }
115
+ .ms-Icon--chevronLeft:before { @include ms-Icon--chevronLeft; }
116
+ .ms-Icon--chevronRight:before { @include ms-Icon--chevronRight; }
117
+ .ms-Icon--peopleAdd:before { @include ms-Icon--peopleAdd; }
118
+ .ms-Icon--newsfeed:before { @include ms-Icon--newsfeed; }
119
+ .ms-Icon--notebook:before { @include ms-Icon--notebook; }
120
+ .ms-Icon--link:before { @include ms-Icon--link; }
121
+ .ms-Icon--chevronsUp:before { @include ms-Icon--chevronsUp; }
122
+ .ms-Icon--chevronsDown:before { @include ms-Icon--chevronsDown; }
123
+ .ms-Icon--chevronsLeft:before { @include ms-Icon--chevronsLeft; }
124
+ .ms-Icon--chevronsRight:before { @include ms-Icon--chevronsRight; }
125
+ .ms-Icon--clutter:before { @include ms-Icon--clutter; }
126
+ .ms-Icon--subscribe:before { @include ms-Icon--subscribe; }
127
+ .ms-Icon--unsubscribe:before { @include ms-Icon--unsubscribe; }
128
+ .ms-Icon--personRemove:before { @include ms-Icon--personRemove; }
129
+ .ms-Icon--receiptForward:before { @include ms-Icon--receiptForward; }
130
+ .ms-Icon--receiptReply:before { @include ms-Icon--receiptReply; }
131
+ .ms-Icon--receiptCheck:before { @include ms-Icon--receiptCheck; }
132
+ .ms-Icon--peopleRemove:before { @include ms-Icon--peopleRemove; }
133
+ .ms-Icon--merge:before { @include ms-Icon--merge; }
134
+ .ms-Icon--split:before { @include ms-Icon--split; }
135
+ .ms-Icon--eventCancel:before { @include ms-Icon--eventCancel; }
136
+ .ms-Icon--eventShare:before { @include ms-Icon--eventShare; }
137
+ .ms-Icon--today:before { @include ms-Icon--today; }
138
+ .ms-Icon--oofReply:before { @include ms-Icon--oofReply; }
139
+ .ms-Icon--voicemailReply:before { @include ms-Icon--voicemailReply; }
140
+ .ms-Icon--voicemailForward:before { @include ms-Icon--voicemailForward; }
141
+ .ms-Icon--ribbon:before { @include ms-Icon--ribbon; }
142
+ .ms-Icon--contact:before { @include ms-Icon--contact; }
143
+ .ms-Icon--eye:before { @include ms-Icon--eye; }
144
+ .ms-Icon--glasses:before { @include ms-Icon--glasses; }
145
+ .ms-Icon--print:before { @include ms-Icon--print; }
146
+ .ms-Icon--room:before { @include ms-Icon--room; }
147
+ .ms-Icon--post:before { @include ms-Icon--post; }
148
+ .ms-Icon--toggle:before { @include ms-Icon--toggle; }
149
+ .ms-Icon--touch:before { @include ms-Icon--touch; }
150
+ .ms-Icon--clock:before { @include ms-Icon--clock; }
151
+ .ms-Icon--fax:before { @include ms-Icon--fax; }
152
+ .ms-Icon--lightning:before { @include ms-Icon--lightning; }
153
+ .ms-Icon--dialpad:before { @include ms-Icon--dialpad; }
154
+ .ms-Icon--phoneTransfer:before { @include ms-Icon--phoneTransfer; }
155
+ .ms-Icon--phoneAdd:before { @include ms-Icon--phoneAdd; }
156
+ .ms-Icon--late:before { @include ms-Icon--late; }
157
+ .ms-Icon--chatAdd:before { @include ms-Icon--chatAdd; }
158
+ .ms-Icon--conflict:before { @include ms-Icon--conflict; }
159
+ .ms-Icon--navigate:before { @include ms-Icon--navigate; }
160
+ .ms-Icon--camera:before { @include ms-Icon--camera; }
161
+ .ms-Icon--filter:before { @include ms-Icon--filter; }
162
+ .ms-Icon--fullscreen:before { @include ms-Icon--fullscreen; }
163
+ .ms-Icon--new:before { @include ms-Icon--new; }
164
+ .ms-Icon--mailEmpty:before { @include ms-Icon--mailEmpty; }
165
+ .ms-Icon--editBox:before { @include ms-Icon--editBox; }
166
+ .ms-Icon--waffle:before { @include ms-Icon--waffle; }
167
+ .ms-Icon--work:before { @include ms-Icon--work; }
168
+ .ms-Icon--eventRecurring:before { @include ms-Icon--eventRecurring; }
169
+ .ms-Icon--cart:before { @include ms-Icon--cart; }
170
+ .ms-Icon--socialListening:before { @include ms-Icon--socialListening; }
171
+ .ms-Icon--mapMarker:before { @include ms-Icon--mapMarker; }
172
+ .ms-Icon--org:before { @include ms-Icon--org; }
173
+ .ms-Icon--replyAlt:before { @include ms-Icon--replyAlt; }
174
+ .ms-Icon--replyAllAlt:before { @include ms-Icon--replyAllAlt; }
175
+ .ms-Icon--eventInfo:before { @include ms-Icon--eventInfo; }
176
+ .ms-Icon--group:before { @include ms-Icon--group; }
177
+ .ms-Icon--money:before { @include ms-Icon--money; }
178
+ .ms-Icon--graph:before { @include ms-Icon--graph; }
179
+ .ms-Icon--noteEdit:before { @include ms-Icon--noteEdit; }
180
+ .ms-Icon--dashboard:before { @include ms-Icon--dashboard; }
181
+ .ms-Icon--mailEdit:before { @include ms-Icon--mailEdit; }
182
+ .ms-Icon--pinLeft:before { @include ms-Icon--pinLeft; }
183
+ .ms-Icon--heart:before { @include ms-Icon--heart; }
184
+ .ms-Icon--heartEmpty:before { @include ms-Icon--heartEmpty; }
185
+ .ms-Icon--picture:before { @include ms-Icon--picture; }
186
+ .ms-Icon--cake:before { @include ms-Icon--cake; }
187
+ .ms-Icon--books:before { @include ms-Icon--books; }
188
+ .ms-Icon--chart:before { @include ms-Icon--chart; }
189
+ .ms-Icon--video:before { @include ms-Icon--video; }
190
+ .ms-Icon--soccer:before { @include ms-Icon--soccer; }
191
+ .ms-Icon--meal:before { @include ms-Icon--meal; }
192
+ .ms-Icon--balloon:before { @include ms-Icon--balloon; }
193
+ .ms-Icon--cat:before { @include ms-Icon--cat; }
194
+ .ms-Icon--dog:before { @include ms-Icon--dog; }
195
+ .ms-Icon--bag:before { @include ms-Icon--bag; }
196
+ .ms-Icon--music:before { @include ms-Icon--music; }
197
+ .ms-Icon--stopwatch:before { @include ms-Icon--stopwatch; }
198
+ .ms-Icon--coffee:before { @include ms-Icon--coffee; }
199
+ .ms-Icon--briefcase:before { @include ms-Icon--briefcase; }
200
+ .ms-Icon--pill:before { @include ms-Icon--pill; }
201
+ .ms-Icon--trophy:before { @include ms-Icon--trophy; }
202
+ .ms-Icon--firstAid:before { @include ms-Icon--firstAid; }
203
+ .ms-Icon--plane:before { @include ms-Icon--plane; }
204
+ .ms-Icon--page:before { @include ms-Icon--page; }
205
+ .ms-Icon--car:before { @include ms-Icon--car; }
206
+ .ms-Icon--dogAlt:before { @include ms-Icon--dogAlt; }
207
+ .ms-Icon--document:before { @include ms-Icon--document; }
208
+ .ms-Icon--metadata:before { @include ms-Icon--metadata; }
209
+ .ms-Icon--pointItem:before { @include ms-Icon--pointItem; }
210
+ .ms-Icon--text:before { @include ms-Icon--text; }
211
+ .ms-Icon--fieldText:before { @include ms-Icon--fieldText; }
212
+ .ms-Icon--fieldNumber:before { @include ms-Icon--fieldNumber; }
213
+ .ms-Icon--dropdown:before { @include ms-Icon--dropdown; }
214
+ .ms-Icon--radioButton:before { @include ms-Icon--radioButton; }
215
+ .ms-Icon--checkbox:before { @include ms-Icon--checkbox; }
216
+ .ms-Icon--story:before { @include ms-Icon--story; }
217
+ .ms-Icon--bold:before { @include ms-Icon--bold; }
218
+ .ms-Icon--italic:before { @include ms-Icon--italic; }
219
+ .ms-Icon--underline:before { @include ms-Icon--underline; }
220
+ .ms-Icon--quote:before { @include ms-Icon--quote; }
221
+ .ms-Icon--styleRemove:before { @include ms-Icon--styleRemove; }
222
+ .ms-Icon--pictureAdd:before { @include ms-Icon--pictureAdd; }
223
+ .ms-Icon--pictureRemove:before { @include ms-Icon--pictureRemove; }
224
+ .ms-Icon--desktop:before { @include ms-Icon--desktop; }
225
+ .ms-Icon--tablet:before { @include ms-Icon--tablet; }
226
+ .ms-Icon--mobile:before { @include ms-Icon--mobile; }
227
+ .ms-Icon--table:before { @include ms-Icon--table; }
228
+ .ms-Icon--hide:before { @include ms-Icon--hide; }
229
+ .ms-Icon--shield:before { @include ms-Icon--shield; }
230
+ .ms-Icon--header:before { @include ms-Icon--header; }
231
+ .ms-Icon--paint:before { @include ms-Icon--paint; }
232
+ .ms-Icon--support:before { @include ms-Icon--support; }
233
+ .ms-Icon--settings:before { @include ms-Icon--settings; }
234
+ .ms-Icon--creditCard:before { @include ms-Icon--creditCard; }
235
+ .ms-Icon--reload:before { @include ms-Icon--reload; }
236
+ .ms-Icon--peopleSecurity:before { @include ms-Icon--peopleSecurity; }
237
+ .ms-Icon--fieldTextBox:before { @include ms-Icon--fieldTextBox; }
238
+ .ms-Icon--multiChoice:before { @include ms-Icon--multiChoice; }
239
+ .ms-Icon--fieldMail:before { @include ms-Icon--fieldMail; }
240
+ .ms-Icon--contactForm:before { @include ms-Icon--contactForm; }
241
+ .ms-Icon--circleHalfFilled:before { @include ms-Icon--circleHalfFilled; }
242
+ .ms-Icon--documentPDF:before { @include ms-Icon--documentPDF; }
243
+ .ms-Icon--bookmark:before { @include ms-Icon--bookmark; }
244
+ .ms-Icon--circleUnfilled:before { @include ms-Icon--circleUnfilled; }
245
+ .ms-Icon--circleFilled:before { @include ms-Icon--circleFilled; }
246
+ .ms-Icon--textBox:before { @include ms-Icon--textBox; }
247
+ .ms-Icon--drop:before { @include ms-Icon--drop; }
248
+ .ms-Icon--sun:before { @include ms-Icon--sun; }
249
+ .ms-Icon--lifesaver:before { @include ms-Icon--lifesaver; }
250
+ .ms-Icon--lifesaverLock:before { @include ms-Icon--lifesaverLock; }
251
+ .ms-Icon--mailUnread:before { @include ms-Icon--mailUnread; }
252
+ .ms-Icon--mailRead:before { @include ms-Icon--mailRead; }
253
+ .ms-Icon--inboxCheck:before { @include ms-Icon--inboxCheck; }
254
+ .ms-Icon--folderSearch:before { @include ms-Icon--folderSearch; }
255
+ .ms-Icon--collapse:before { @include ms-Icon--collapse; }
256
+ .ms-Icon--expand:before { @include ms-Icon--expand; }
257
+ .ms-Icon--ascending:before { @include ms-Icon--ascending; }
258
+ .ms-Icon--descending:before { @include ms-Icon--descending; }
259
+ .ms-Icon--filterClear:before { @include ms-Icon--filterClear; }
260
+ .ms-Icon--checkboxEmpty:before { @include ms-Icon--checkboxEmpty; }
261
+ .ms-Icon--checkboxMixed:before { @include ms-Icon--checkboxMixed; }
262
+ .ms-Icon--boards:before { @include ms-Icon--boards; }
263
+ .ms-Icon--checkboxCheck:before { @include ms-Icon--checkboxCheck; }
264
+ .ms-Icon--frowny:before { @include ms-Icon--frowny; }
265
+ .ms-Icon--lightBulb:before { @include ms-Icon--lightBulb; }
266
+ .ms-Icon--globe:before { @include ms-Icon--globe; }
267
+ .ms-Icon--deviceWipe:before { @include ms-Icon--deviceWipe; }
268
+ .ms-Icon--listCheck:before { @include ms-Icon--listCheck; }
269
+ .ms-Icon--listGroup:before { @include ms-Icon--listGroup; }
270
+ .ms-Icon--timeline:before { @include ms-Icon--timeline; }
271
+ .ms-Icon--fontIncrease:before { @include ms-Icon--fontIncrease; }
272
+ .ms-Icon--fontDecrease:before { @include ms-Icon--fontDecrease; }
273
+ .ms-Icon--fontColor:before { @include ms-Icon--fontColor; }
274
+ .ms-Icon--mailCheck:before { @include ms-Icon--mailCheck; }
275
+ .ms-Icon--mailDown:before { @include ms-Icon--mailDown; }
276
+ .ms-Icon--listCheckbox:before { @include ms-Icon--listCheckbox; }
277
+ .ms-Icon--sunAdd:before { @include ms-Icon--sunAdd; }
278
+ .ms-Icon--sunQuestion:before { @include ms-Icon--sunQuestion; }
279
+ .ms-Icon--chevronThinUp:before { @include ms-Icon--chevronThinUp; }
280
+ .ms-Icon--chevronThinDown:before { @include ms-Icon--chevronThinDown; }
281
+ .ms-Icon--chevronThinLeft:before { @include ms-Icon--chevronThinLeft; }
282
+ .ms-Icon--chevronThinRight:before { @include ms-Icon--chevronThinRight; }
283
+ .ms-Icon--chevronThickUp:before { @include ms-Icon--chevronThickUp; }
284
+ .ms-Icon--chevronThickDown:before { @include ms-Icon--chevronThickDown; }
285
+ .ms-Icon--chevronThickLeft:before { @include ms-Icon--chevronThickLeft; }
286
+ .ms-Icon--chevronThickRight:before { @include ms-Icon--chevronThickRight; }
287
+ .ms-Icon--linkRemove:before { @include ms-Icon--linkRemove; }
288
+ .ms-Icon--alertOutline:before { @include ms-Icon--alertOutline; }
289
+ .ms-Icon--documentLandscape:before { @include ms-Icon--documentLandscape; }
290
+ .ms-Icon--documentAdd:before { @include ms-Icon--documentAdd; }
291
+ .ms-Icon--toggleMiddle:before { @include ms-Icon--toggleMiddle; }
292
+ .ms-Icon--embed:before { @include ms-Icon--embed; }
293
+ .ms-Icon--listNumbered:before { @include ms-Icon--listNumbered; }
294
+ .ms-Icon--peopleCheck:before { @include ms-Icon--peopleCheck; }
295
+ .ms-Icon--caretUpOutline:before { @include ms-Icon--caretUpOutline; }
296
+ .ms-Icon--caretDownOutline:before { @include ms-Icon--caretDownOutline; }
297
+ .ms-Icon--caretLeftOutline:before { @include ms-Icon--caretLeftOutline; }
298
+ .ms-Icon--caretRightOutline:before { @include ms-Icon--caretRightOutline; }
299
+ .ms-Icon--mailSync:before { @include ms-Icon--mailSync; }
300
+ .ms-Icon--mailError:before { @include ms-Icon--mailError; }
301
+ .ms-Icon--mailPause:before { @include ms-Icon--mailPause; }
302
+ .ms-Icon--peopleSync:before { @include ms-Icon--peopleSync; }
303
+ .ms-Icon--peopleError:before { @include ms-Icon--peopleError; }
304
+ .ms-Icon--peoplePause:before { @include ms-Icon--peoplePause; }
305
+ .ms-Icon--circleBall:before { @include ms-Icon--circleBall; }
306
+ .ms-Icon--circleBalloons:before { @include ms-Icon--circleBalloons; }
307
+ .ms-Icon--circleCar:before { @include ms-Icon--circleCar; }
308
+ .ms-Icon--circleCat:before { @include ms-Icon--circleCat; }
309
+ .ms-Icon--circleCoffee:before { @include ms-Icon--circleCoffee; }
310
+ .ms-Icon--circleDog:before { @include ms-Icon--circleDog; }
311
+ .ms-Icon--circleLightning:before { @include ms-Icon--circleLightning; }
312
+ .ms-Icon--circlePill:before { @include ms-Icon--circlePill; }
313
+ .ms-Icon--circlePlane:before { @include ms-Icon--circlePlane; }
314
+ .ms-Icon--circlePoodle:before { @include ms-Icon--circlePoodle; }
315
+ .ms-Icon--checkPeople:before { @include ms-Icon--checkPeople; }
316
+ .ms-Icon--documentSearch:before { @include ms-Icon--documentSearch; }
317
+ .ms-Icon--sortLines:before { @include ms-Icon--sortLines; }
318
+ .ms-Icon--calendarPublic:before { @include ms-Icon--calendarPublic; }
319
+ .ms-Icon--contactPublic:before { @include ms-Icon--contactPublic; }
320
+ .ms-Icon--classNotebook:before { @include ms-Icon--classNotebook; }
321
+ .ms-Icon--triangleUp:before { @include ms-Icon--triangleUp; }
322
+ .ms-Icon--triangleRight:before { @include ms-Icon--triangleRight; }
323
+ .ms-Icon--triangleDown:before { @include ms-Icon--triangleDown; }
324
+ .ms-Icon--triangleLeft:before { @include ms-Icon--triangleLeft; }
325
+ .ms-Icon--triangleEmptyUp:before { @include ms-Icon--triangleEmptyUp; }
326
+ .ms-Icon--triangleEmptyRight:before { @include ms-Icon--triangleEmptyRight; }
327
+ .ms-Icon--triangleEmptyDown:before { @include ms-Icon--triangleEmptyDown; }
328
+ .ms-Icon--triangleEmptyLeft:before { @include ms-Icon--triangleEmptyLeft; }
329
+ .ms-Icon--filePDF:before { @include ms-Icon--filePDF; }
330
+ .ms-Icon--fileImage:before { @include ms-Icon--fileImage; }
331
+ .ms-Icon--fileDocument:before { @include ms-Icon--fileDocument; }
332
+ .ms-Icon--listGroup2:before { @include ms-Icon--listGroup2; }
333
+ .ms-Icon--copy:before { @include ms-Icon--copy; }
334
+ .ms-Icon--creditCardOutline:before { @include ms-Icon--creditCardOutline; }
335
+ .ms-Icon--mailPublic:before { @include ms-Icon--mailPublic; }
336
+ .ms-Icon--folderPublic:before { @include ms-Icon--folderPublic; }
337
+ .ms-Icon--teamwork:before { @include ms-Icon--teamwork; }
338
+ .ms-Icon--move:before { @include ms-Icon--move; }
339
+ .ms-Icon--classroom:before { @include ms-Icon--classroom; }
340
+ .ms-Icon--menu2:before { @include ms-Icon--menu2; }
341
+ .ms-Icon--plus2:before { @include ms-Icon--plus2; }
342
+ .ms-Icon--tag:before { @include ms-Icon--tag; }
343
+ .ms-Icon--arrowUp2:before { @include ms-Icon--arrowUp2; }
344
+ .ms-Icon--arrowDown2:before { @include ms-Icon--arrowDown2; }
345
+ .ms-Icon--circlePlus:before { @include ms-Icon--circlePlus; }
346
+ .ms-Icon--circleInfo:before { @include ms-Icon--circleInfo; }
347
+ .ms-Icon--section:before { @include ms-Icon--section; }
348
+ .ms-Icon--sections:before { @include ms-Icon--sections; }
349
+ .ms-Icon--at:before { @include ms-Icon--at; }
350
+ .ms-Icon--arrowUpRight:before { @include ms-Icon--arrowUpRight; }
351
+ .ms-Icon--arrowDownRight:before { @include ms-Icon--arrowDownRight; }
352
+ .ms-Icon--arrowDownLeft:before { @include ms-Icon--arrowDownLeft; }
353
+ .ms-Icon--arrowUpLeft:before { @include ms-Icon--arrowUpLeft; }
354
+ .ms-Icon--bundle:before { @include ms-Icon--bundle; }
355
+ .ms-Icon--pictureEdit:before { @include ms-Icon--pictureEdit; }
356
+ .ms-Icon--protectionCenter:before { @include ms-Icon--protectionCenter; }
357
+ .ms-Icon--alert2:before { @include ms-Icon--alert2; }
358
+
359
+ //*-- end
360
+ // Modifier: Place the icon in a circle.
361
+ .ms-Icon--circle {
362
+ @include ms-Icon--circle;
363
+ }
364
+
365
+ // Modifiers: Some icons require custom alignment when placed in circles.
366
+ .ms-Icon--circle {
367
+ &.ms-Icon--star:before {
368
+ top: -2%;
369
+ left: 1%;
370
+ }
371
+ &.ms-Icon--person:before {
372
+ top: -2%;
373
+ left: -3%;
374
+ }
375
+ &.ms-Icon--alert:before {
376
+ top: -4%;
377
+ }
378
+ &.ms-Icon--mailOpen:before {
379
+ top: -5%;
380
+ }
381
+ &.ms-Icon--people:before {
382
+ top: -4%;
383
+ left: -7%;
384
+ }
385
+ &.ms-Icon--bell:before {
386
+ top: -3%;
387
+ }
388
+ &.ms-Icon--scheduling:before {
389
+ top: -3%;
390
+ left: 6%;
391
+ }
392
+ &.ms-Icon--documents:before {
393
+ top: -1%;
394
+ left: -2%;
395
+ }
396
+ &.ms-Icon--listBullets:before {
397
+ top: -1%;
398
+ left: 5%;
399
+ }
400
+ &.ms-Icon--panel:before {
401
+ left: -2%;
402
+ }
403
+ &.ms-Icon--popout:before {
404
+ top: -2%;
405
+ left: -2%;
406
+ }
407
+ &.ms-Icon--home:before {
408
+ top: -4%;
409
+ }
410
+ &.ms-Icon--favorites:before {
411
+ top: -2%;
412
+ left: 2%;
413
+ }
414
+ &.ms-Icon--phone:before {
415
+ top: -2%;
416
+ left: -2%;
417
+ }
418
+ &.ms-Icon--mailSend:before {
419
+ left: -10%;
420
+ }
421
+ &.ms-Icon--pencil:before {
422
+ top: -2%;
423
+ left: 3%;
424
+ }
425
+ &.ms-Icon--flag:before {
426
+ left: 3%;
427
+ }
428
+ &.ms-Icon--miniatures:before {
429
+ left: -3%;
430
+ }
431
+ &.ms-Icon--voicemail:before {
432
+ top: 2%;
433
+ left: -7%;
434
+ }
435
+ &.ms-Icon--onlineAdd:before {
436
+ top: -1%;
437
+ left: 2%;
438
+ }
439
+ &.ms-Icon--pinDown:before {
440
+ top: 5%;
441
+ }
442
+ &.ms-Icon--gear:before {
443
+ left: 2%;
444
+ }
445
+ &.ms-Icon--check:before {
446
+ top: 3%;
447
+ }
448
+ &.ms-Icon--ellipsis:before {
449
+ top: 2%;
450
+ left: -12%;
451
+ }
452
+ &.ms-Icon--directions:before {
453
+ left: 10%;
454
+ }
455
+ &.ms-Icon--microphone:before {
456
+ top: -3%;
457
+ }
458
+ &.ms-Icon--caretDown:before {
459
+ top: 5%;
460
+ left: 2%;
461
+ }
462
+ &.ms-Icon--caretLeft:before {
463
+ left: -6%;
464
+ }
465
+ &.ms-Icon--caretRight:before {
466
+ left: 6%;
467
+ }
468
+ &.ms-Icon--caretUpLeft:before {
469
+ top: 5%;
470
+ left: 5%;
471
+ }
472
+ &.ms-Icon--caretUpRight:before {
473
+ top: 5%;
474
+ left: -3%;
475
+ }
476
+ &.ms-Icon--caretDownRight:before {
477
+ left: -3%;
478
+ }
479
+ &.ms-Icon--caretDownLeft:before {
480
+ left: 4%;
481
+ }
482
+ &.ms-Icon--note:before {
483
+ top: 2%;
484
+ left: -3%;
485
+ }
486
+ &.ms-Icon--noteReply:before {
487
+ top: 6%;
488
+ left: 3%;
489
+ }
490
+ &.ms-Icon--noteForward:before {
491
+ top: 6%;
492
+ }
493
+ &.ms-Icon--key:before {
494
+ top: 5%;
495
+ left: 1%;
496
+ }
497
+ &.ms-Icon--tile:before {
498
+ top: -1%;
499
+ left: -18%;
500
+ }
501
+ &.ms-Icon--taskRecurring:before {
502
+ top: 2%;
503
+ left: -1%;
504
+ }
505
+ &.ms-Icon--starEmpty:before {
506
+ top: -4%;
507
+ left: 1%;
508
+ }
509
+ &.ms-Icon--documentReply:before {
510
+ top: -2%;
511
+ left: 7%;
512
+ }
513
+ &.ms-Icon--documentForward:before {
514
+ left: 5%;
515
+ }
516
+ &.ms-Icon--partner:before {
517
+ top: -2%;
518
+ }
519
+ &.ms-Icon--reactivate:before {
520
+ top: -2%;
521
+ left: 6%;
522
+ }
523
+ &.ms-Icon--sort:before {
524
+ left: -19%;
525
+ }
526
+ &.ms-Icon--personAdd:before {
527
+ top: -2%;
528
+ left: 6%;
529
+ }
530
+ &.ms-Icon--chevronDown:before {
531
+ top: 4%;
532
+ }
533
+ &.ms-Icon--chevronLeft:before {
534
+ left: -5%;
535
+ }
536
+ &.ms-Icon--chevronRight:before {
537
+ left: 4%;
538
+ }
539
+ &.ms-Icon--peopleAdd:before {
540
+ top: -5%;
541
+ left: -12%;
542
+ }
543
+ &.ms-Icon--newsfeed:before {
544
+ left: -4%;
545
+ }
546
+ &.ms-Icon--notebook:before {
547
+ left: -4%;
548
+ }
549
+ &.ms-Icon--link:before {
550
+ top: 2%;
551
+ left: -18%;
552
+ }
553
+ &.ms-Icon--chevronsDown:before {
554
+ top: 5%;
555
+ }
556
+ &.ms-Icon--chevronsLeft:before {
557
+ left: -5%;
558
+ }
559
+ &.ms-Icon--chevronsRight:before {
560
+ left: 4%;
561
+ }
562
+ &.ms-Icon--personRemove:before {
563
+ left: 5%;
564
+ }
565
+ &.ms-Icon--receiptForward:before {
566
+ left: -20%;
567
+ }
568
+ &.ms-Icon--receiptReply:before {
569
+ left: -20%;
570
+ }
571
+ &.ms-Icon--receiptCheck:before {
572
+ left: -20%;
573
+ }
574
+ &.ms-Icon--peopleRemove:before {
575
+ top: -3%;
576
+ left: -12%;
577
+ }
578
+ &.ms-Icon--merge:before {
579
+ top: 2%;
580
+ }
581
+ &.ms-Icon--split:before {
582
+ top: 2%;
583
+ }
584
+ &.ms-Icon--eventCancel:before {
585
+ left: -2%;
586
+ }
587
+ &.ms-Icon--today:before {
588
+ top: -2%;
589
+ }
590
+ &.ms-Icon--oofReply:before {
591
+ left: 5%;
592
+ }
593
+ &.ms-Icon--voicemailReply:before {
594
+ top: 4%;
595
+ left: -25%;
596
+ }
597
+ &.ms-Icon--voicemailForward:before {
598
+ top: 4%;
599
+ left: -20%;
600
+ }
601
+ &.ms-Icon--eye:before {
602
+ top: -4%;
603
+ }
604
+ &.ms-Icon--post:before {
605
+ top: -4%;
606
+ left: 4%;
607
+ }
608
+ &.ms-Icon--fax:before {
609
+ top: -3%;
610
+ left: -2%;
611
+ }
612
+ &.ms-Icon--lightning:before {
613
+ top: 2%;
614
+ left: 1%;
615
+ }
616
+ &.ms-Icon--filter:before {
617
+ top: 7%;
618
+ }
619
+ &.ms-Icon--cart:before {
620
+ left: 3%;
621
+ }
622
+ &.ms-Icon--socialListening:before {
623
+ top: 2%;
624
+ }
625
+ &.ms-Icon--mapMarker:before {
626
+ top: 2%;
627
+ }
628
+ &.ms-Icon--replyAllAlt:before {
629
+ left: -16%;
630
+ }
631
+ &.ms-Icon--group:before {
632
+ left: -33%;
633
+ }
634
+ &.ms-Icon--money:before {
635
+ left: -8%;
636
+ }
637
+ &.ms-Icon--noteEdit:before {
638
+ left: 4%;
639
+ }
640
+ &.ms-Icon--mailEdit:before {
641
+ top: 3%;
642
+ left: 7%;
643
+ }
644
+ &.ms-Icon--pinLeft:before {
645
+ left: -6%;
646
+ }
647
+ &.ms-Icon--heart:before {
648
+ top: 5%;
649
+ }
650
+ &.ms-Icon--heartEmpty:before {
651
+ top: 5%;
652
+ }
653
+ &.ms-Icon--cake:before {
654
+ top: -5%;
655
+ }
656
+ &.ms-Icon--books:before {
657
+ left: -8%;
658
+ }
659
+ &.ms-Icon--video:before {
660
+ top: -3%;
661
+ left: 3%;
662
+ }
663
+ &.ms-Icon--balloon:before {
664
+ top: 4%;
665
+ left: -1%;
666
+ }
667
+ &.ms-Icon--music:before {
668
+ top: -2%;
669
+ left: -5%;
670
+ }
671
+ &.ms-Icon--stopwatch:before {
672
+ top: -3%;
673
+ left: 3%;
674
+ }
675
+ &.ms-Icon--coffee:before {
676
+ top: -3%;
677
+ left: 3%;
678
+ }
679
+ &.ms-Icon--plane:before {
680
+ left: 4%;
681
+ }
682
+ &.ms-Icon--dogAlt:before {
683
+ left: -15%;
684
+ }
685
+ &.ms-Icon--metadata:before {
686
+ top: -4%;
687
+ left: 4%;
688
+ }
689
+ &.ms-Icon--text:before {
690
+ top: -4%;
691
+ left: 10%;
692
+ }
693
+ &.ms-Icon--fieldText:before {
694
+ left: -14%;
695
+ }
696
+ &.ms-Icon--fieldNumber:before {
697
+ left: -14%;
698
+ }
699
+ &.ms-Icon--dropdown:before {
700
+ left: -14%;
701
+ }
702
+ &.ms-Icon--story:before {
703
+ left: -5%;
704
+ }
705
+ &.ms-Icon--bold:before {
706
+ left: 4%;
707
+ }
708
+ &.ms-Icon--underline:before {
709
+ top: 4%;
710
+ }
711
+ &.ms-Icon--quote:before {
712
+ left: -4%;
713
+ }
714
+ &.ms-Icon--styleRemove:before {
715
+ top: 4%;
716
+ left: 5%;
717
+ }
718
+ &.ms-Icon--pictureAdd:before {
719
+ left: -6%;
720
+ }
721
+ &.ms-Icon--pictureRemove:before {
722
+ left: -6%;
723
+ }
724
+ &.ms-Icon--mobile:before {
725
+ left: -3%;
726
+ }
727
+ &.ms-Icon--hide:before {
728
+ top: -4%;
729
+ }
730
+ &.ms-Icon--header:before {
731
+ left: -9%;
732
+ }
733
+ &.ms-Icon--msn:before {
734
+ left: 3%;
735
+ }
736
+ &.ms-Icon--peopleCheck:before {
737
+ left: -7%;
738
+ top: -3%;
739
+ }
740
+ &.ms-Icon--caretDownOutline:before {
741
+ top: 6%;
742
+ }
743
+ &.ms-Icon--caretLeftOutline:before {
744
+ left: -5%;
745
+ }
746
+ &.ms-Icon--caretRightOutline:before {
747
+ left: 5%;
748
+ }
749
+ &.ms-Icon--sway:before {
750
+ left: -3%;
751
+ }
752
+ &.ms-Icon--mailSync:before {
753
+ left: 8%;
754
+ top: 3%;
755
+ }
756
+ &.ms-Icon--peopleSync:before {
757
+ left: -8%;
758
+ }
759
+ &.ms-Icon--peopleError:before {
760
+ left: -8%;
761
+ }
762
+ &.ms-Icon--peoplePause:before {
763
+ left: -8%;
764
+ }
765
+ &.ms-Icon--documentSearch:before {
766
+ left: 8%;
767
+ }
768
+ &.ms-Icon--dynamicsMarketing:before {
769
+ left: -8%;
770
+ }
771
+ }