| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- .datasource-tabs {
- .ant-tabs-bar {
- margin-bottom: 0;
- .ant-tabs-extra-content {
- height: 100%;
- .datasource-tabs-tools {
- .ant-input-search {
- width: 200px;
- margin-right: 5px;
- }
- }
- }
- }
- .datasource-tab, .dataconnect-tab {
- .datasource-table, .dataconnect-table {
- .ant-table {
- margin-top: 5px;
- .ant-table-scroll {
- .ant-table-header {
- overflow: hidden;
- table {
- thead {
- th {
- .ant-table-column-sorter, .ant-table-filter-icon {
- opacity: 0;
- }
- :hover {
- .ant-table-column-sorter, .ant-table-filter-icon {
- opacity: 1;
- }
- }
- }
- .column-filtered {
- .ant-table-filter-icon {
- opacity: 1;
- color: red;
- }
- }
- }
- }
- }
- .ant-table-body {
- margin-top: 17px;
- overflow-y: auto !important;
- table {
- padding: 0;
- .ant-table-row {
- td {
- padding: 8px;
- .datasource-name {
- display: flex;
- .datasource-type {
- width: 20px;
- height: 20px;
- background-size: cover;
- background-repeat: no-repeat;
- background-image: url('https://test-feapp.oss-cn-beijing.aliyuncs.com/feapp/s70f_180613_fix_a_t/images/trdservices/44_2.png');
- }
- .type-oracle {
- background-position: 0 -731px;
- }
- }
- .datasource-tag {
- margin: 2px;
- cursor: default;
- }
- .ant-dropdown-trigger {
- font-size: 18px;
- cursor: pointer;
- }
- }
- .action-col {
- display: flex;
- .operation {
- cursor: pointer;
- }
- .operation:hover {
- color: #40a9ff;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- .operationmenu {
- padding: 0;
- width: 120px;
- .ant-dropdown-menu-item {
- .anticon {
- margin-right: 6px;
- }
- }
- .ant-dropdown-menu-item-divider {
- margin: 0;
- }
- }
- .dataconnect-box {
- width: 600px !important;
- .ant-modal-content {
- .ant-modal-body {
- padding: 6px;
- max-height: 50vh;
- overflow-y: auto;
- .textarea-desc {
- margin-top: 4px;
- }
- .input-port {
- .ant-input-number {
- width: 100% !important;
- .ant-input-number-handler-wrap {
- display: none;
- }
- }
- }
- }
- }
- }
- .ant-table-body::-webkit-scrollbar {/*滚动条整体样式*/
- width: 6px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 4px;
- }
- .ant-table-body::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
- border-radius: 5px;
- -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
- background: rgba(0,0,0,0.2);
- }
- .ant-table-body::-webkit-scrollbar-track {/*滚动条里面轨道*/
- -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
- border-radius: 0;
- background: rgba(0,0,0,0.1);
- }
- .custom-filter-dropdown {
- padding: 8px;
- border-radius: 6px;
- background: #fff;
- box-shadow: 0 1px 6px rgba(0, 0, 0, .2);
- }
-
- .custom-filter-dropdown input {
- width: 130px;
- margin-right: 8px;
- }
-
- .highlight {
- color: #f50;
- }
|