_variables.icons.scss 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. $icons: (
  2. 'arrow-down-big': '\e030',
  3. 'arrow-down': '\e01a',
  4. 'arrow-left': '\e022',
  5. 'arrow-right': '\e017',
  6. 'arrow-up-big': '\e02f',
  7. 'arrow-up': '\e010',
  8. 'arrows-up-down': '\e016',
  9. 'bin': '\e038',
  10. 'bold': '\e026',
  11. 'chain-broken': '\e047',
  12. 'code': '\e001',
  13. 'cog': '\e020',
  14. 'cogs': '\e00c',
  15. 'collapse-down': '\e03f',
  16. 'collapse-up': '\e03e',
  17. 'cross': '\e012',
  18. 'date': '\e045',
  19. 'doc-empty-inverse': '\e00d',
  20. 'doc-empty': '\e00e',
  21. 'doc-full-inverse': '\e01b',
  22. 'doc-full': '\e018',
  23. 'download': '\e044',
  24. 'edit': '\e00f',
  25. 'folder-inverse': '\e014',
  26. 'folder-open-1': '\e013',
  27. 'folder-open-inverse': '\e01f',
  28. 'folder': '\e01c',
  29. 'form': '\e00b',
  30. 'grip': '\e03b',
  31. 'group': '\e031',
  32. 'help': '\e041',
  33. // help-inverse directly renders the corresponding character.
  34. 'help-inverse': '?',
  35. 'home': '\e035',
  36. // horizontalrule is not rendered as an icon font – it uses a unicode dash character rendered with a fallback font.
  37. 'horizontalrule': '\2014',
  38. 'image': '\e019',
  39. 'italic': '\e027',
  40. 'link': '\e02c',
  41. 'list-ol': '\e029',
  42. 'list-ul': '\e028',
  43. 'locked': '\e009',
  44. 'logout': '\e049',
  45. 'mail': '\e015',
  46. 'media': '\e032',
  47. 'no-view': '\e006',
  48. 'openquote': '\e000',
  49. 'order-down': '\e036',
  50. 'order-up': '\e037',
  51. 'order': '\e034',
  52. 'password': '\e033',
  53. 'pick': '\e03d',
  54. 'pilcrow': '\e002',
  55. 'placeholder': '\e003',
  56. 'plus-inverse': '\e024',
  57. 'plus': '\e01d',
  58. 'radio-empty': '\e02e',
  59. 'radio-full': '\e02d',
  60. 'redirect': '\e03c',
  61. 'repeat': '\e02b',
  62. 'search': '\e011',
  63. 'site': '\e007',
  64. 'snippet': '\e025',
  65. 'spinner': '\e03a',
  66. 'strikethrough': '\e04a',
  67. 'subscript': '\e04c',
  68. 'success': '\e043',
  69. 'superscript': '\e04b',
  70. 'table': '\e048',
  71. 'tag': '\e01e',
  72. 'tick-inverse': '\e023',
  73. 'tick': '\e021',
  74. 'time': '\e008',
  75. 'title': '\e046',
  76. 'undo': '\e02a',
  77. 'unlocked': '\e00a',
  78. 'user': '\e004',
  79. 'view': '\e005',
  80. 'wagtail-inverse': '\e040',
  81. 'wagtail': '\e039',
  82. 'warning': '\e042',
  83. );
  84. $icons-after: (
  85. 'arrow-down-after': map-get($icons, 'arrow-down'),
  86. 'arrow-right-after': map-get($icons, 'arrow-right'),
  87. 'arrow-up-after': map-get($icons, 'arrow-up'),
  88. );