1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- .row-dragging {
- .bms-ant-table-cell {
- width: 130px;
- }
- }
- .DiySqlMana {
- // padding: 16px;
- border-radius: 4px;
- .left {
- float: left;
- border-radius: 4px;
- width: 220px;
- height:calc(100vh - 80px);
- overflow: scroll;
- margin-right: 16px;
- padding: 16px;
- background: #FFFFFF;
-
- .wrap {
- margin-top: 16px;
- .type {
- cursor: pointer;
- height: 32px;
- line-height: 32px;
- padding-left: 8px;
- background: #FFFFFF;
- border-radius: 4px;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #17181A;
- margin-bottom: 4px;
- &.on {
- font-weight: 500;
- color: #17181A;
- background: #F0F2F5;
- }
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
- }
- .right {
- float: left;
- width: calc(100% - 236px);
- padding: 16px;
- border-radius: 4px;
- background: #FFFFFF;
- .toolBar {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- .filter {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- .filterItem {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- }
- .btnGroup {
- .add {
- cursor: pointer;
- display: inline-block;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 24px;
- padding: 0 14px;
- background: #3377FF;
- border-radius: 4px;
- }
- }
- }
- }
- }
|