_mixins.scss 675 B

12345678910111213141516171819202122232425
  1. // @import 'mixins/background-gradient';
  2. @import 'mixins/theme-background-image';
  3. @import 'mixins/inner-border';
  4. @import 'mixins/frame';
  5. @import 'mixins/reset-extras';
  6. @mixin no-select {
  7. user-select: none;
  8. -o-user-select: none;
  9. -ms-user-select: none;
  10. -moz-user-select: -moz-none;
  11. -webkit-user-select: none;
  12. cursor:default;
  13. }
  14. @mixin important-no-border-radius {
  15. //we need to hard code this so we can declare !important
  16. -moz-border-radius: 0 !important;
  17. -webkit-border-radius: 0 !important;
  18. -o-border-radius: 0 !important;
  19. -ms-border-radius: 0 !important;
  20. -khtml-border-radius: 0 !important;
  21. border-radius: 0 !important;
  22. }