diff --git a/src/packages/collaboration/stylesheets/collaboration.less b/src/packages/collaboration/stylesheets/collaboration.less index 949dae16f..30f46fee5 100644 --- a/src/packages/collaboration/stylesheets/collaboration.less +++ b/src/packages/collaboration/stylesheets/collaboration.less @@ -1,5 +1,6 @@ @import "bootstrap/less/variables.less"; @import "octicon-mixins.less"; +@import "fontello-mixins.less"; @video-padding: 5px; @large-width: 160px; @@ -141,11 +142,11 @@ .toggle-video{ margin-left: 5px; - .mini-icon(arr-right); + .fontello-icon(fontello-video); } .toggle-audio{ margin-left: 5px; - .mini-icon(arr-up); + .fontello-icon(fontello-audio); } } diff --git a/static/fontello-mixins.less b/static/fontello-mixins.less new file mode 100644 index 000000000..291c8338f --- /dev/null +++ b/static/fontello-mixins.less @@ -0,0 +1,20 @@ +@fontello-video: "\e800"; +@fontello-audio: "\e801"; + +.fontello-icon(@name, @size: 16px) { + &:before { + font-family: 'fontello'; + font-weight: normal; + font-style: normal; + display: inline-block; + line-height: 1; + -webkit-font-smoothing: antialiased; + text-decoration: none; + + font-size: @size; + width: @size; + height: @size; + + content: @@name + } +} \ No newline at end of file diff --git a/static/fontello.woff b/static/fontello.woff new file mode 100644 index 000000000..66f673571 Binary files /dev/null and b/static/fontello.woff differ diff --git a/static/root-view.less b/static/root-view.less index c28262a9e..7cd040868 100644 --- a/static/root-view.less +++ b/static/root-view.less @@ -72,3 +72,10 @@ html, body { font-weight: normal; font-style: normal; } + +@font-face { + font-family: 'fontello'; + src: url("fontello.woff") format("woff"); + font-weight: normal; + font-style: normal; +} \ No newline at end of file