glyphicons.less 18 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345
  1. // stylelint-disable value-list-comma-newline-after, value-list-comma-space-after, indentation, declaration-colon-newline-after, font-family-no-missing-generic-family-keyword
  2. //
  3. // Glyphicons for Bootstrap
  4. //
  5. // Since icons are fonts, they can be placed anywhere text is placed and are
  6. // thus automatically sized to match the surrounding child. To use, create an
  7. // inline element with the appropriate classes, like so:
  8. //
  9. // <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
  10. // Import the fonts
  11. @font-face {
  12. font-family: 'Glyphicons Halflings';
  13. src: url('@{icon-font-path}@{icon-font-name}.eot');
  14. src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
  15. url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),
  16. url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
  17. url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
  18. url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');
  19. }
  20. // Catchall baseclass
  21. .glyphicon {
  22. position: relative;
  23. top: 1px;
  24. display: inline-block;
  25. font-family: 'Glyphicons Halflings';
  26. font-style: normal;
  27. font-weight: 400;
  28. line-height: 1;
  29. -webkit-font-smoothing: antialiased;
  30. -moz-osx-font-smoothing: grayscale;
  31. }
  32. // Individual icons
  33. .glyphicon-asterisk {
  34. &:before {
  35. content: '\002a';
  36. }
  37. }
  38. .glyphicon-plus {
  39. &:before {
  40. content: '\002b';
  41. }
  42. }
  43. .glyphicon-euro,
  44. .glyphicon-eur {
  45. &:before {
  46. content: '\20ac';
  47. }
  48. }
  49. .glyphicon-minus {
  50. &:before {
  51. content: '\2212';
  52. }
  53. }
  54. .glyphicon-cloud {
  55. &:before {
  56. content: '\2601';
  57. }
  58. }
  59. .glyphicon-pencil {
  60. &:before {
  61. content: '\270f';
  62. }
  63. }
  64. .glyphicon-glass {
  65. &:before {
  66. content: '\e001';
  67. }
  68. }
  69. .glyphicon-music {
  70. &:before {
  71. content: '\e002';
  72. }
  73. }
  74. .glyphicon-search {
  75. &:before {
  76. content: '\e003';
  77. }
  78. }
  79. .glyphicon-heart {
  80. &:before {
  81. content: '\e005';
  82. }
  83. }
  84. .glyphicon-star {
  85. &:before {
  86. content: '\e006';
  87. }
  88. }
  89. .glyphicon-star-empty {
  90. &:before {
  91. content: '\e007';
  92. }
  93. }
  94. .glyphicon-user {
  95. &:before {
  96. content: '\e008';
  97. }
  98. }
  99. .glyphicon-film {
  100. &:before {
  101. content: '\e009';
  102. }
  103. }
  104. .glyphicon-th-large {
  105. &:before {
  106. content: '\e010';
  107. }
  108. }
  109. .glyphicon-th {
  110. &:before {
  111. content: '\e011';
  112. }
  113. }
  114. .glyphicon-th-list {
  115. &:before {
  116. content: '\e012';
  117. }
  118. }
  119. .glyphicon-ok {
  120. &:before {
  121. content: '\e013';
  122. }
  123. }
  124. .glyphicon-remove {
  125. &:before {
  126. content: '\e014';
  127. }
  128. }
  129. .glyphicon-zoom-in {
  130. &:before {
  131. content: '\e015';
  132. }
  133. }
  134. .glyphicon-zoom-out {
  135. &:before {
  136. content: '\e016';
  137. }
  138. }
  139. .glyphicon-off {
  140. &:before {
  141. content: '\e017';
  142. }
  143. }
  144. .glyphicon-signal {
  145. &:before {
  146. content: '\e018';
  147. }
  148. }
  149. .glyphicon-cog {
  150. &:before {
  151. content: '\e019';
  152. }
  153. }
  154. .glyphicon-home {
  155. &:before {
  156. content: '\e021';
  157. }
  158. }
  159. .glyphicon-file {
  160. &:before {
  161. content: '\e022';
  162. }
  163. }
  164. .glyphicon-time {
  165. &:before {
  166. content: '\e023';
  167. }
  168. }
  169. .glyphicon-road {
  170. &:before {
  171. content: '\e024';
  172. }
  173. }
  174. .glyphicon-download-alt {
  175. &:before {
  176. content: '\e025';
  177. }
  178. }
  179. .glyphicon-download {
  180. &:before {
  181. content: '\e026';
  182. }
  183. }
  184. .glyphicon-upload {
  185. &:before {
  186. content: '\e027';
  187. }
  188. }
  189. .glyphicon-inbox {
  190. &:before {
  191. content: '\e028';
  192. }
  193. }
  194. .glyphicon-play-circle {
  195. &:before {
  196. content: '\e029';
  197. }
  198. }
  199. .glyphicon-repeat {
  200. &:before {
  201. content: '\e030';
  202. }
  203. }
  204. .glyphicon-refresh {
  205. &:before {
  206. content: '\e031';
  207. }
  208. }
  209. .glyphicon-list-alt {
  210. &:before {
  211. content: '\e032';
  212. }
  213. }
  214. .glyphicon-lock {
  215. &:before {
  216. content: '\e033';
  217. }
  218. }
  219. .glyphicon-flag {
  220. &:before {
  221. content: '\e034';
  222. }
  223. }
  224. .glyphicon-headphones {
  225. &:before {
  226. content: '\e035';
  227. }
  228. }
  229. .glyphicon-volume-off {
  230. &:before {
  231. content: '\e036';
  232. }
  233. }
  234. .glyphicon-volume-down {
  235. &:before {
  236. content: '\e037';
  237. }
  238. }
  239. .glyphicon-volume-up {
  240. &:before {
  241. content: '\e038';
  242. }
  243. }
  244. .glyphicon-qrcode {
  245. &:before {
  246. content: '\e039';
  247. }
  248. }
  249. .glyphicon-barcode {
  250. &:before {
  251. content: '\e040';
  252. }
  253. }
  254. .glyphicon-tag {
  255. &:before {
  256. content: '\e041';
  257. }
  258. }
  259. .glyphicon-tags {
  260. &:before {
  261. content: '\e042';
  262. }
  263. }
  264. .glyphicon-book {
  265. &:before {
  266. content: '\e043';
  267. }
  268. }
  269. .glyphicon-bookmark {
  270. &:before {
  271. content: '\e044';
  272. }
  273. }
  274. .glyphicon-print {
  275. &:before {
  276. content: '\e045';
  277. }
  278. }
  279. .glyphicon-camera {
  280. &:before {
  281. content: '\e046';
  282. }
  283. }
  284. .glyphicon-font {
  285. &:before {
  286. content: '\e047';
  287. }
  288. }
  289. .glyphicon-bold {
  290. &:before {
  291. content: '\e048';
  292. }
  293. }
  294. .glyphicon-italic {
  295. &:before {
  296. content: '\e049';
  297. }
  298. }
  299. .glyphicon-text-height {
  300. &:before {
  301. content: '\e050';
  302. }
  303. }
  304. .glyphicon-text-width {
  305. &:before {
  306. content: '\e051';
  307. }
  308. }
  309. .glyphicon-align-left {
  310. &:before {
  311. content: '\e052';
  312. }
  313. }
  314. .glyphicon-align-center {
  315. &:before {
  316. content: '\e053';
  317. }
  318. }
  319. .glyphicon-align-right {
  320. &:before {
  321. content: '\e054';
  322. }
  323. }
  324. .glyphicon-align-justify {
  325. &:before {
  326. content: '\e055';
  327. }
  328. }
  329. .glyphicon-list {
  330. &:before {
  331. content: '\e056';
  332. }
  333. }
  334. .glyphicon-indent-left {
  335. &:before {
  336. content: '\e057';
  337. }
  338. }
  339. .glyphicon-indent-right {
  340. &:before {
  341. content: '\e058';
  342. }
  343. }
  344. .glyphicon-facetime-video {
  345. &:before {
  346. content: '\e059';
  347. }
  348. }
  349. .glyphicon-picture {
  350. &:before {
  351. content: '\e060';
  352. }
  353. }
  354. .glyphicon-map-marker {
  355. &:before {
  356. content: '\e062';
  357. }
  358. }
  359. .glyphicon-adjust {
  360. &:before {
  361. content: '\e063';
  362. }
  363. }
  364. .glyphicon-tint {
  365. &:before {
  366. content: '\e064';
  367. }
  368. }
  369. .glyphicon-edit {
  370. &:before {
  371. content: '\e065';
  372. }
  373. }
  374. .glyphicon-share {
  375. &:before {
  376. content: '\e066';
  377. }
  378. }
  379. .glyphicon-check {
  380. &:before {
  381. content: '\e067';
  382. }
  383. }
  384. .glyphicon-move {
  385. &:before {
  386. content: '\e068';
  387. }
  388. }
  389. .glyphicon-step-backward {
  390. &:before {
  391. content: '\e069';
  392. }
  393. }
  394. .glyphicon-fast-backward {
  395. &:before {
  396. content: '\e070';
  397. }
  398. }
  399. .glyphicon-backward {
  400. &:before {
  401. content: '\e071';
  402. }
  403. }
  404. .glyphicon-play {
  405. &:before {
  406. content: '\e072';
  407. }
  408. }
  409. .glyphicon-pause {
  410. &:before {
  411. content: '\e073';
  412. }
  413. }
  414. .glyphicon-stop {
  415. &:before {
  416. content: '\e074';
  417. }
  418. }
  419. .glyphicon-forward {
  420. &:before {
  421. content: '\e075';
  422. }
  423. }
  424. .glyphicon-fast-forward {
  425. &:before {
  426. content: '\e076';
  427. }
  428. }
  429. .glyphicon-step-forward {
  430. &:before {
  431. content: '\e077';
  432. }
  433. }
  434. .glyphicon-eject {
  435. &:before {
  436. content: '\e078';
  437. }
  438. }
  439. .glyphicon-chevron-left {
  440. &:before {
  441. content: '\e079';
  442. }
  443. }
  444. .glyphicon-chevron-right {
  445. &:before {
  446. content: '\e080';
  447. }
  448. }
  449. .glyphicon-plus-sign {
  450. &:before {
  451. content: '\e081';
  452. }
  453. }
  454. .glyphicon-minus-sign {
  455. &:before {
  456. content: '\e082';
  457. }
  458. }
  459. .glyphicon-remove-sign {
  460. &:before {
  461. content: '\e083';
  462. }
  463. }
  464. .glyphicon-ok-sign {
  465. &:before {
  466. content: '\e084';
  467. }
  468. }
  469. .glyphicon-question-sign {
  470. &:before {
  471. content: '\e085';
  472. }
  473. }
  474. .glyphicon-info-sign {
  475. &:before {
  476. content: '\e086';
  477. }
  478. }
  479. .glyphicon-screenshot {
  480. &:before {
  481. content: '\e087';
  482. }
  483. }
  484. .glyphicon-remove-circle {
  485. &:before {
  486. content: '\e088';
  487. }
  488. }
  489. .glyphicon-ok-circle {
  490. &:before {
  491. content: '\e089';
  492. }
  493. }
  494. .glyphicon-ban-circle {
  495. &:before {
  496. content: '\e090';
  497. }
  498. }
  499. .glyphicon-arrow-left {
  500. &:before {
  501. content: '\e091';
  502. }
  503. }
  504. .glyphicon-arrow-right {
  505. &:before {
  506. content: '\e092';
  507. }
  508. }
  509. .glyphicon-arrow-up {
  510. &:before {
  511. content: '\e093';
  512. }
  513. }
  514. .glyphicon-arrow-down {
  515. &:before {
  516. content: '\e094';
  517. }
  518. }
  519. .glyphicon-share-alt {
  520. &:before {
  521. content: '\e095';
  522. }
  523. }
  524. .glyphicon-resize-full {
  525. &:before {
  526. content: '\e096';
  527. }
  528. }
  529. .glyphicon-resize-small {
  530. &:before {
  531. content: '\e097';
  532. }
  533. }
  534. .glyphicon-exclamation-sign {
  535. &:before {
  536. content: '\e101';
  537. }
  538. }
  539. .glyphicon-gift {
  540. &:before {
  541. content: '\e102';
  542. }
  543. }
  544. .glyphicon-leaf {
  545. &:before {
  546. content: '\e103';
  547. }
  548. }
  549. .glyphicon-fire {
  550. &:before {
  551. content: '\e104';
  552. }
  553. }
  554. .glyphicon-eye-open {
  555. &:before {
  556. content: '\e105';
  557. }
  558. }
  559. .glyphicon-eye-close {
  560. &:before {
  561. content: '\e106';
  562. }
  563. }
  564. .glyphicon-warning-sign {
  565. &:before {
  566. content: '\e107';
  567. }
  568. }
  569. .glyphicon-plane {
  570. &:before {
  571. content: '\e108';
  572. }
  573. }
  574. .glyphicon-calendar {
  575. &:before {
  576. content: '\e109';
  577. }
  578. }
  579. .glyphicon-random {
  580. &:before {
  581. content: '\e110';
  582. }
  583. }
  584. .glyphicon-comment {
  585. &:before {
  586. content: '\e111';
  587. }
  588. }
  589. .glyphicon-magnet {
  590. &:before {
  591. content: '\e112';
  592. }
  593. }
  594. .glyphicon-chevron-up {
  595. &:before {
  596. content: '\e113';
  597. }
  598. }
  599. .glyphicon-chevron-down {
  600. &:before {
  601. content: '\e114';
  602. }
  603. }
  604. .glyphicon-retweet {
  605. &:before {
  606. content: '\e115';
  607. }
  608. }
  609. .glyphicon-shopping-cart {
  610. &:before {
  611. content: '\e116';
  612. }
  613. }
  614. .glyphicon-folder-close {
  615. &:before {
  616. content: '\e117';
  617. }
  618. }
  619. .glyphicon-folder-open {
  620. &:before {
  621. content: '\e118';
  622. }
  623. }
  624. .glyphicon-resize-vertical {
  625. &:before {
  626. content: '\e119';
  627. }
  628. }
  629. .glyphicon-resize-horizontal {
  630. &:before {
  631. content: '\e120';
  632. }
  633. }
  634. .glyphicon-hdd {
  635. &:before {
  636. content: '\e121';
  637. }
  638. }
  639. .glyphicon-bullhorn {
  640. &:before {
  641. content: '\e122';
  642. }
  643. }
  644. .glyphicon-bell {
  645. &:before {
  646. content: '\e123';
  647. }
  648. }
  649. .glyphicon-certificate {
  650. &:before {
  651. content: '\e124';
  652. }
  653. }
  654. .glyphicon-thumbs-up {
  655. &:before {
  656. content: '\e125';
  657. }
  658. }
  659. .glyphicon-thumbs-down {
  660. &:before {
  661. content: '\e126';
  662. }
  663. }
  664. .glyphicon-hand-right {
  665. &:before {
  666. content: '\e127';
  667. }
  668. }
  669. .glyphicon-hand-left {
  670. &:before {
  671. content: '\e128';
  672. }
  673. }
  674. .glyphicon-hand-up {
  675. &:before {
  676. content: '\e129';
  677. }
  678. }
  679. .glyphicon-hand-down {
  680. &:before {
  681. content: '\e130';
  682. }
  683. }
  684. .glyphicon-circle-arrow-right {
  685. &:before {
  686. content: '\e131';
  687. }
  688. }
  689. .glyphicon-circle-arrow-left {
  690. &:before {
  691. content: '\e132';
  692. }
  693. }
  694. .glyphicon-circle-arrow-up {
  695. &:before {
  696. content: '\e133';
  697. }
  698. }
  699. .glyphicon-circle-arrow-down {
  700. &:before {
  701. content: '\e134';
  702. }
  703. }
  704. .glyphicon-globe {
  705. &:before {
  706. content: '\e135';
  707. }
  708. }
  709. .glyphicon-wrench {
  710. &:before {
  711. content: '\e136';
  712. }
  713. }
  714. .glyphicon-tasks {
  715. &:before {
  716. content: '\e137';
  717. }
  718. }
  719. .glyphicon-filter {
  720. &:before {
  721. content: '\e138';
  722. }
  723. }
  724. .glyphicon-briefcase {
  725. &:before {
  726. content: '\e139';
  727. }
  728. }
  729. .glyphicon-fullscreen {
  730. &:before {
  731. content: '\e140';
  732. }
  733. }
  734. .glyphicon-dashboard {
  735. &:before {
  736. content: '\e141';
  737. }
  738. }
  739. .glyphicon-paperclip {
  740. &:before {
  741. content: '\e142';
  742. }
  743. }
  744. .glyphicon-heart-empty {
  745. &:before {
  746. content: '\e143';
  747. }
  748. }
  749. .glyphicon-link {
  750. &:before {
  751. content: '\e144';
  752. }
  753. }
  754. .glyphicon-phone {
  755. &:before {
  756. content: '\e145';
  757. }
  758. }
  759. .glyphicon-pushpin {
  760. &:before {
  761. content: '\e146';
  762. }
  763. }
  764. .glyphicon-usd {
  765. &:before {
  766. content: '\e148';
  767. }
  768. }
  769. .glyphicon-gbp {
  770. &:before {
  771. content: '\e149';
  772. }
  773. }
  774. .glyphicon-sort {
  775. &:before {
  776. content: '\e150';
  777. }
  778. }
  779. .glyphicon-sort-by-alphabet {
  780. &:before {
  781. content: '\e151';
  782. }
  783. }
  784. .glyphicon-sort-by-alphabet-alt {
  785. &:before {
  786. content: '\e152';
  787. }
  788. }
  789. .glyphicon-sort-by-order {
  790. &:before {
  791. content: '\e153';
  792. }
  793. }
  794. .glyphicon-sort-by-order-alt {
  795. &:before {
  796. content: '\e154';
  797. }
  798. }
  799. .glyphicon-sort-by-attributes {
  800. &:before {
  801. content: '\e155';
  802. }
  803. }
  804. .glyphicon-sort-by-attributes-alt {
  805. &:before {
  806. content: '\e156';
  807. }
  808. }
  809. .glyphicon-unchecked {
  810. &:before {
  811. content: '\e157';
  812. }
  813. }
  814. .glyphicon-expand {
  815. &:before {
  816. content: '\e158';
  817. }
  818. }
  819. .glyphicon-collapse-down {
  820. &:before {
  821. content: '\e159';
  822. }
  823. }
  824. .glyphicon-collapse-up {
  825. &:before {
  826. content: '\e160';
  827. }
  828. }
  829. .glyphicon-log-in {
  830. &:before {
  831. content: '\e161';
  832. }
  833. }
  834. .glyphicon-flash {
  835. &:before {
  836. content: '\e162';
  837. }
  838. }
  839. .glyphicon-log-out {
  840. &:before {
  841. content: '\e163';
  842. }
  843. }
  844. .glyphicon-new-window {
  845. &:before {
  846. content: '\e164';
  847. }
  848. }
  849. .glyphicon-record {
  850. &:before {
  851. content: '\e165';
  852. }
  853. }
  854. .glyphicon-save {
  855. &:before {
  856. content: '\e166';
  857. }
  858. }
  859. .glyphicon-open {
  860. &:before {
  861. content: '\e167';
  862. }
  863. }
  864. .glyphicon-saved {
  865. &:before {
  866. content: '\e168';
  867. }
  868. }
  869. .glyphicon-import {
  870. &:before {
  871. content: '\e169';
  872. }
  873. }
  874. .glyphicon-export {
  875. &:before {
  876. content: '\e170';
  877. }
  878. }
  879. .glyphicon-send {
  880. &:before {
  881. content: '\e171';
  882. }
  883. }
  884. .glyphicon-floppy-disk {
  885. &:before {
  886. content: '\e172';
  887. }
  888. }
  889. .glyphicon-floppy-saved {
  890. &:before {
  891. content: '\e173';
  892. }
  893. }
  894. .glyphicon-floppy-remove {
  895. &:before {
  896. content: '\e174';
  897. }
  898. }
  899. .glyphicon-floppy-save {
  900. &:before {
  901. content: '\e175';
  902. }
  903. }
  904. .glyphicon-floppy-open {
  905. &:before {
  906. content: '\e176';
  907. }
  908. }
  909. .glyphicon-credit-card {
  910. &:before {
  911. content: '\e177';
  912. }
  913. }
  914. .glyphicon-transfer {
  915. &:before {
  916. content: '\e178';
  917. }
  918. }
  919. .glyphicon-cutlery {
  920. &:before {
  921. content: '\e179';
  922. }
  923. }
  924. .glyphicon-header {
  925. &:before {
  926. content: '\e180';
  927. }
  928. }
  929. .glyphicon-compressed {
  930. &:before {
  931. content: '\e181';
  932. }
  933. }
  934. .glyphicon-earphone {
  935. &:before {
  936. content: '\e182';
  937. }
  938. }
  939. .glyphicon-phone-alt {
  940. &:before {
  941. content: '\e183';
  942. }
  943. }
  944. .glyphicon-tower {
  945. &:before {
  946. content: '\e184';
  947. }
  948. }
  949. .glyphicon-stats {
  950. &:before {
  951. content: '\e185';
  952. }
  953. }
  954. .glyphicon-sd-video {
  955. &:before {
  956. content: '\e186';
  957. }
  958. }
  959. .glyphicon-hd-video {
  960. &:before {
  961. content: '\e187';
  962. }
  963. }
  964. .glyphicon-subtitles {
  965. &:before {
  966. content: '\e188';
  967. }
  968. }
  969. .glyphicon-sound-stereo {
  970. &:before {
  971. content: '\e189';
  972. }
  973. }
  974. .glyphicon-sound-dolby {
  975. &:before {
  976. content: '\e190';
  977. }
  978. }
  979. .glyphicon-sound-5-1 {
  980. &:before {
  981. content: '\e191';
  982. }
  983. }
  984. .glyphicon-sound-6-1 {
  985. &:before {
  986. content: '\e192';
  987. }
  988. }
  989. .glyphicon-sound-7-1 {
  990. &:before {
  991. content: '\e193';
  992. }
  993. }
  994. .glyphicon-copyright-mark {
  995. &:before {
  996. content: '\e194';
  997. }
  998. }
  999. .glyphicon-registration-mark {
  1000. &:before {
  1001. content: '\e195';
  1002. }
  1003. }
  1004. .glyphicon-cloud-download {
  1005. &:before {
  1006. content: '\e197';
  1007. }
  1008. }
  1009. .glyphicon-cloud-upload {
  1010. &:before {
  1011. content: '\e198';
  1012. }
  1013. }
  1014. .glyphicon-tree-conifer {
  1015. &:before {
  1016. content: '\e199';
  1017. }
  1018. }
  1019. .glyphicon-tree-deciduous {
  1020. &:before {
  1021. content: '\e200';
  1022. }
  1023. }
  1024. .glyphicon-cd {
  1025. &:before {
  1026. content: '\e201';
  1027. }
  1028. }
  1029. .glyphicon-save-file {
  1030. &:before {
  1031. content: '\e202';
  1032. }
  1033. }
  1034. .glyphicon-open-file {
  1035. &:before {
  1036. content: '\e203';
  1037. }
  1038. }
  1039. .glyphicon-level-up {
  1040. &:before {
  1041. content: '\e204';
  1042. }
  1043. }
  1044. .glyphicon-copy {
  1045. &:before {
  1046. content: '\e205';
  1047. }
  1048. }
  1049. .glyphicon-paste {
  1050. &:before {
  1051. content: '\e206';
  1052. }
  1053. }
  1054. // The following 2 Glyphicons are omitted for the time being because
  1055. // they currently use Unicode codepoints that are outside the
  1056. // Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
  1057. // non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
  1058. // Notably, the bug affects some older versions of the Android Browser.
  1059. // More info: https://github.com/twbs/bootstrap/issues/10106
  1060. // .glyphicon-door { &:before { content: "\1f6aa"; } }
  1061. // .glyphicon-key { &:before { content: "\1f511"; } }
  1062. .glyphicon-alert {
  1063. &:before {
  1064. content: '\e209';
  1065. }
  1066. }
  1067. .glyphicon-equalizer {
  1068. &:before {
  1069. content: '\e210';
  1070. }
  1071. }
  1072. .glyphicon-king {
  1073. &:before {
  1074. content: '\e211';
  1075. }
  1076. }
  1077. .glyphicon-queen {
  1078. &:before {
  1079. content: '\e212';
  1080. }
  1081. }
  1082. .glyphicon-pawn {
  1083. &:before {
  1084. content: '\e213';
  1085. }
  1086. }
  1087. .glyphicon-bishop {
  1088. &:before {
  1089. content: '\e214';
  1090. }
  1091. }
  1092. .glyphicon-knight {
  1093. &:before {
  1094. content: '\e215';
  1095. }
  1096. }
  1097. .glyphicon-baby-formula {
  1098. &:before {
  1099. content: '\e216';
  1100. }
  1101. }
  1102. .glyphicon-tent {
  1103. &:before {
  1104. content: '\26fa';
  1105. }
  1106. }
  1107. .glyphicon-blackboard {
  1108. &:before {
  1109. content: '\e218';
  1110. }
  1111. }
  1112. .glyphicon-bed {
  1113. &:before {
  1114. content: '\e219';
  1115. }
  1116. }
  1117. .glyphicon-apple {
  1118. &:before {
  1119. content: '\f8ff';
  1120. }
  1121. }
  1122. .glyphicon-erase {
  1123. &:before {
  1124. content: '\e221';
  1125. }
  1126. }
  1127. .glyphicon-hourglass {
  1128. &:before {
  1129. content: '\231b';
  1130. }
  1131. }
  1132. .glyphicon-lamp {
  1133. &:before {
  1134. content: '\e223';
  1135. }
  1136. }
  1137. .glyphicon-duplicate {
  1138. &:before {
  1139. content: '\e224';
  1140. }
  1141. }
  1142. .glyphicon-piggy-bank {
  1143. &:before {
  1144. content: '\e225';
  1145. }
  1146. }
  1147. .glyphicon-scissors {
  1148. &:before {
  1149. content: '\e226';
  1150. }
  1151. }
  1152. .glyphicon-bitcoin {
  1153. &:before {
  1154. content: '\e227';
  1155. }
  1156. }
  1157. .glyphicon-btc {
  1158. &:before {
  1159. content: '\e227';
  1160. }
  1161. }
  1162. .glyphicon-xbt {
  1163. &:before {
  1164. content: '\e227';
  1165. }
  1166. }
  1167. .glyphicon-yen {
  1168. &:before {
  1169. content: '\00a5';
  1170. }
  1171. }
  1172. .glyphicon-jpy {
  1173. &:before {
  1174. content: '\00a5';
  1175. }
  1176. }
  1177. .glyphicon-ruble {
  1178. &:before {
  1179. content: '\20bd';
  1180. }
  1181. }
  1182. .glyphicon-rub {
  1183. &:before {
  1184. content: '\20bd';
  1185. }
  1186. }
  1187. .glyphicon-scale {
  1188. &:before {
  1189. content: '\e230';
  1190. }
  1191. }
  1192. .glyphicon-ice-lolly {
  1193. &:before {
  1194. content: '\e231';
  1195. }
  1196. }
  1197. .glyphicon-ice-lolly-tasted {
  1198. &:before {
  1199. content: '\e232';
  1200. }
  1201. }
  1202. .glyphicon-education {
  1203. &:before {
  1204. content: '\e233';
  1205. }
  1206. }
  1207. .glyphicon-option-horizontal {
  1208. &:before {
  1209. content: '\e234';
  1210. }
  1211. }
  1212. .glyphicon-option-vertical {
  1213. &:before {
  1214. content: '\e235';
  1215. }
  1216. }
  1217. .glyphicon-menu-hamburger {
  1218. &:before {
  1219. content: '\e236';
  1220. }
  1221. }
  1222. .glyphicon-modal-window {
  1223. &:before {
  1224. content: '\e237';
  1225. }
  1226. }
  1227. .glyphicon-oil {
  1228. &:before {
  1229. content: '\e238';
  1230. }
  1231. }
  1232. .glyphicon-grain {
  1233. &:before {
  1234. content: '\e239';
  1235. }
  1236. }
  1237. .glyphicon-sunglasses {
  1238. &:before {
  1239. content: '\e240';
  1240. }
  1241. }
  1242. .glyphicon-text-size {
  1243. &:before {
  1244. content: '\e241';
  1245. }
  1246. }
  1247. .glyphicon-text-color {
  1248. &:before {
  1249. content: '\e242';
  1250. }
  1251. }
  1252. .glyphicon-text-background {
  1253. &:before {
  1254. content: '\e243';
  1255. }
  1256. }
  1257. .glyphicon-object-align-top {
  1258. &:before {
  1259. content: '\e244';
  1260. }
  1261. }
  1262. .glyphicon-object-align-bottom {
  1263. &:before {
  1264. content: '\e245';
  1265. }
  1266. }
  1267. .glyphicon-object-align-horizontal {
  1268. &:before {
  1269. content: '\e246';
  1270. }
  1271. }
  1272. .glyphicon-object-align-left {
  1273. &:before {
  1274. content: '\e247';
  1275. }
  1276. }
  1277. .glyphicon-object-align-vertical {
  1278. &:before {
  1279. content: '\e248';
  1280. }
  1281. }
  1282. .glyphicon-object-align-right {
  1283. &:before {
  1284. content: '\e249';
  1285. }
  1286. }
  1287. .glyphicon-triangle-right {
  1288. &:before {
  1289. content: '\e250';
  1290. }
  1291. }
  1292. .glyphicon-triangle-left {
  1293. &:before {
  1294. content: '\e251';
  1295. }
  1296. }
  1297. .glyphicon-triangle-bottom {
  1298. &:before {
  1299. content: '\e252';
  1300. }
  1301. }
  1302. .glyphicon-triangle-top {
  1303. &:before {
  1304. content: '\e253';
  1305. }
  1306. }
  1307. .glyphicon-console {
  1308. &:before {
  1309. content: '\e254';
  1310. }
  1311. }
  1312. .glyphicon-superscript {
  1313. &:before {
  1314. content: '\e255';
  1315. }
  1316. }
  1317. .glyphicon-subscript {
  1318. &:before {
  1319. content: '\e256';
  1320. }
  1321. }
  1322. .glyphicon-menu-left {
  1323. &:before {
  1324. content: '\e257';
  1325. }
  1326. }
  1327. .glyphicon-menu-right {
  1328. &:before {
  1329. content: '\e258';
  1330. }
  1331. }
  1332. .glyphicon-menu-down {
  1333. &:before {
  1334. content: '\e259';
  1335. }
  1336. }
  1337. .glyphicon-menu-up {
  1338. &:before {
  1339. content: '\e260';
  1340. }
  1341. }