1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .molstar-layout-main {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- top: 0;
- }
- .molstar-layout-top {
- position: absolute;
- right: 0;
- height: $standard-top-height;
- top: -$standard-top-height;
- width: 50%;
- border-left: 1px solid $border-color;
- border-bottom: 1px solid $border-color;
- }
- .molstar-layout-bottom {
- position: absolute;
- left: 0;
- right: 0;
- height: $standard-top-height;
- top: -$standard-top-height;
- width: 50%;
- border-bottom: 1px solid $border-color;
- }
- .molstar-layout-right {
- position: absolute;
- width: 50%;
- right: 0;
- bottom: -$standard-bottom-height;
- height: $standard-bottom-height;
- border-left: 1px solid $border-color;
- border-top: 1px solid $border-color;
- }
- .molstar-layout-left {
- position: absolute;
- width: 50%;
- left: 0;
- bottom: 0;
- bottom: -$standard-bottom-height;
- height: $standard-bottom-height;
- border-top: 1px solid $border-color;
- }
- /////////////////////////////////////////
- .molstar-layout-hide-right {
- .molstar-layout-right {
- display: none;
- }
- .molstar-layout-left {
- width: 100%;
- }
- }
- .molstar-layout-hide-left {
- .molstar-layout-left {
- display: none;
- }
- .molstar-layout-right {
- width: 100%;
- border-left: none;
- }
- }
- ///////////////////////////////////
- .molstar-layout-hide-top {
- .molstar-layout-top {
- display: none;
- }
- .molstar-layout-bottom {
- width: 100%;
- border-left: none;
- }
- }
- .molstar-layout-hide-bottom {
- .molstar-layout-bottom {
- display: none;
- }
- .molstar-layout-top {
- width: 100%;
- border-left: none;
- }
- }
|