partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

_mixins.scss (677B)


      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 
      7 @mixin no-select {
      8     user-select: none;
      9     -o-user-select: none;
     10     -ms-user-select: none;
     11     -moz-user-select: -moz-none;
     12     -webkit-user-select: none;
     13     
     14     cursor:default;
     15 }
     16 
     17 @mixin important-no-border-radius {
     18     //we need to hard code this so we can declare !important
     19     -moz-border-radius: 0 !important;
     20     -webkit-border-radius: 0 !important;
     21     -o-border-radius: 0 !important;
     22     -ms-border-radius: 0 !important;
     23     -khtml-border-radius: 0 !important;
     24     border-radius: 0 !important;
     25 }