You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
785 B

10 years ago
10 years ago
  1. /*
  2. * # Semantic - Flag
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2014 Contributor
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Theme
  13. *******************************/
  14. @type : 'element';
  15. @element : 'flag';
  16. @import '../../semantic.config';
  17. i.flag {
  18. display: inline-block;
  19. width: @width;
  20. height: @height;
  21. line-height: @height;
  22. vertical-align: @verticalAlign;
  23. margin: 0em @margin 0em 0em;
  24. text-decoration: inherit;
  25. speak: none;
  26. font-smoothing: antialiased;
  27. backface-visibility: hidden;
  28. }
  29. i.flag:before {
  30. display: inline-block;
  31. content: '';
  32. background: url(@spritePath) no-repeat 0px 0px;
  33. width: @width;
  34. height: @height;
  35. }
  36. .loadUIOverrides();