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