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.

popupview.scss 349B

1234567891011121314151617
  1. @mixin base-popupview($primaryStyleName : v-popupview) {
  2. .#{$primaryStyleName} {
  3. cursor: pointer;
  4. text-decoration: underline;
  5. white-space: nowrap;
  6. }
  7. .#{$primaryStyleName}-popup {
  8. overflow: auto;
  9. }
  10. .#{$primaryStyleName}-loading {
  11. width: 30px;
  12. height: 30px;
  13. background: transparent url(../common/img/ajax-loader-medium.gif) no-repeat 50%;
  14. }
  15. }