outside.scss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .molstar-layout-main {
  2. position: absolute;
  3. left: 0;
  4. right: 0;
  5. bottom: 0;
  6. top: 0;
  7. }
  8. .molstar-layout-top {
  9. position: absolute;
  10. right: 0;
  11. height: $standard-top-height;
  12. top: -$standard-top-height;
  13. width: 50%;
  14. border-left: 1px solid $border-color;
  15. border-bottom: 1px solid $border-color;
  16. }
  17. .molstar-layout-bottom {
  18. position: absolute;
  19. left: 0;
  20. right: 0;
  21. height: $standard-top-height;
  22. top: -$standard-top-height;
  23. width: 50%;
  24. border-bottom: 1px solid $border-color;
  25. }
  26. .molstar-layout-right {
  27. position: absolute;
  28. width: 50%;
  29. right: 0;
  30. bottom: -$standard-bottom-height;
  31. height: $standard-bottom-height;
  32. border-left: 1px solid $border-color;
  33. border-top: 1px solid $border-color;
  34. }
  35. .molstar-layout-left {
  36. position: absolute;
  37. width: 50%;
  38. left: 0;
  39. bottom: 0;
  40. bottom: -$standard-bottom-height;
  41. height: $standard-bottom-height;
  42. border-top: 1px solid $border-color;
  43. }
  44. /////////////////////////////////////////
  45. .molstar-layout-hide-right {
  46. .molstar-layout-right {
  47. display: none;
  48. }
  49. .molstar-layout-left {
  50. width: 100%;
  51. }
  52. }
  53. .molstar-layout-hide-left {
  54. .molstar-layout-left {
  55. display: none;
  56. }
  57. .molstar-layout-right {
  58. width: 100%;
  59. border-left: none;
  60. }
  61. }
  62. ///////////////////////////////////
  63. .molstar-layout-hide-top {
  64. .molstar-layout-top {
  65. display: none;
  66. }
  67. .molstar-layout-bottom {
  68. width: 100%;
  69. border-left: none;
  70. }
  71. }
  72. .molstar-layout-hide-bottom {
  73. .molstar-layout-bottom {
  74. display: none;
  75. }
  76. .molstar-layout-top {
  77. width: 100%;
  78. border-left: none;
  79. }
  80. }