flyout.scss 815 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * IBM Confidential
  3. * OCO Source Materials
  4. * IBM Business Platform: Dashboard
  5. * (C) Copyright IBM Corp. 2018
  6. * The source code for this program is not published or otherwise divested of its trade secrets,
  7. * irrespective of what has been deposited with the U.S. Copyright Office
  8. **/
  9. .flyout-content-container {
  10. height: 100%;
  11. display: block;
  12. }
  13. .flyout-content {
  14. clear: both;
  15. display: block;
  16. }
  17. .flyout-close-button {
  18. display: block;
  19. float: right;
  20. padding: 8px 0;
  21. &[dir="rtl"] {
  22. float: left;
  23. }
  24. }
  25. .flyout-loading {
  26. background-image: url(../images/wLoading.svg);
  27. background-repeat: no-repeat;
  28. height: 40px;
  29. line-height: 50px;
  30. margin: 5px;
  31. padding-left: 50px;
  32. &[dir="rtl"] {
  33. padding-left: 0px;
  34. padding-right: 50px;
  35. }
  36. }
  37. .ie .flyout-loading {
  38. background-image: url(../images/wLoading.gif);
  39. }