| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- @prefix-cls: ~'@{namespace}-basic-table';
- // fix table unnecessary scrollbar
- .@{prefix-cls} {
- .hide-scrollbar-y {
- .@{ventSpace}-spin-nested-loading {
- .@{ventSpace}-spin-container {
- .@{ventSpace}-table {
- .@{ventSpace}-table-content {
- .@{ventSpace}-table-scroll {
- .@{ventSpace}-table-hide-scrollbar {
- overflow-y: auto !important;
- // overflow-x: hidden !important;
- // width: 0px !important;
- }
- .@{ventSpace}-table-content {
- overflow-y: auto !important;
- // overflow-x: hidden !important;
- }
- }
- .@{ventSpace}-table-fixed-right {
- .@{ventSpace}-table-body-outer {
- .@{ventSpace}-table-body-inner {
- overflow-y: auto !important;
- // overflow-x: hidden !important;
- }
- }
- }
- .@{ventSpace}-table-fixed-left {
- .@{ventSpace}-table-body-outer {
- .@{ventSpace}-table-body-inner {
- overflow-y: auto !important;
- // overflow-x: hidden !important;
- }
- }
- }
- }
- }
- }
- }
- }
- .hide-scrollbar-x {
- .@{ventSpace}-spin-nested-loading {
- .@{ventSpace}-spin-container {
- .@{ventSpace}-table {
- .@{ventSpace}-table-content {
- .@{ventSpace}-table-scroll {
- .@{ventSpace}-table-hide-scrollbar {
- //overflow-x: auto !important;
- }
- .@{ventSpace}-table-content {
- overflow: auto !important;
- }
- }
- .@{ventSpace}-table-fixed-right {
- .@{ventSpace}-table-body-outer {
- .@{ventSpace}-table-body-inner {
- overflow-x: auto !important;
- }
- }
- }
- .@{ventSpace}-table-fixed-left {
- .@{ventSpace}-table-body-outer {
- .@{ventSpace}-table-body-inner {
- overflow-x: auto !important;
- }
- }
- }
- }
- }
- }
- }
- }
- }
|