ModuleLoader.css 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .ModuleLoader {
  2. position: fixed;
  3. top: 0;
  4. right: 0;
  5. width: 300px;
  6. height: 100vh;
  7. background: #f8f9fa;
  8. overflow-y: scroll;
  9. overflow-x: hidden;
  10. border: 1px solid #dee2e6!important;
  11. padding: 10px 5px;
  12. z-index: 99999;
  13. }
  14. .MemoryLoaderUI {
  15. z-index: 999999;
  16. position: fixed;
  17. top: 0;
  18. left: 0;
  19. background: rgba(0,55,0, 0.25);
  20. border: 1px solid #666;
  21. padding: 2px 2px;
  22. text-align: left;
  23. width: 200px;
  24. margin: 0;
  25. max-height: 95vh;
  26. overflow-y: auto;
  27. }
  28. .MemoryLoaderUI.mini {
  29. width: 50px;
  30. }
  31. .MemoryLoaderUI.mini .row {
  32. margin: 0;
  33. }
  34. .ServiceBar {
  35. position: fixed;
  36. bottom: 0;
  37. z-index: 9999;
  38. min-height: 40px;
  39. }
  40. .ServiceBar>.row {
  41. margin-bottom: 3px;
  42. }
  43. .ServiceDisplay {
  44. position: fixed;
  45. left: 1px;
  46. top: 5vh;
  47. width: 400px;
  48. z-index: 10000000;
  49. height: 85vh;
  50. overflow-y: auto;
  51. overflow-x: hidden;
  52. border: 1px solid #cecece;
  53. }
  54. .ServiceDisplay > .card-content {
  55. padding: 1px;
  56. text-align: left;
  57. }
  58. .MemoryLoaderUI .card-content {
  59. padding: 3px;
  60. }