tntd 1.4.20 → 1.4.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Handle/README.md +0 -20
- package/components/Handle/index.js +27 -6
- package/components/locale.js +8 -2
- package/dist/1.tntd.js +1 -1
- package/dist/stats.json +23819 -24067
- package/dist/tntd.css +1 -1
- package/dist/tntd.js +13 -8
- package/es/ArrayInput/icon.js +5 -5
- package/es/ArrayInput/index.js +108 -76
- package/es/AuthContext.js +1 -1
- package/es/Columns/index.js +38 -31
- package/es/DevelopmentLogin/LoginModal.js +45 -32
- package/es/DevelopmentLogin/index.js +17 -13
- package/es/Ellipsis/Svg/CopySVG.js +13 -13
- package/es/Ellipsis/Svg/TickSVG.js +8 -8
- package/es/Ellipsis/index.js +69 -58
- package/es/Handle/README.md +0 -20
- package/es/Handle/index.js +67 -32
- package/es/Icon/fonts/iconfont.js +12 -7
- package/es/Icon/index.js +13 -10
- package/es/Img/Contain.js +29 -24
- package/es/Img/Cover.js +54 -40
- package/es/Img/index.js +45 -36
- package/es/Layout/ActionsContext.js +2 -3
- package/es/Layout/AppList.js +92 -37
- package/es/Layout/Application.js +72 -26
- package/es/Layout/Avatar.js +66 -29
- package/es/Layout/CompatibleLanguage.js +94 -39
- package/es/Layout/EnterpriseLayout/Avatar.js +76 -38
- package/es/Layout/EnterpriseLayout/Language.js +32 -14
- package/es/Layout/EnterpriseLayout/Theme.js +34 -16
- package/es/Layout/EnterpriseLayout/index.js +16 -14
- package/es/Layout/GlobalNavigation/NavigationPopup.js +170 -59
- package/es/Layout/GlobalNavigation/index.js +54 -20
- package/es/Layout/Header.js +46 -25
- package/es/Layout/HeaderActions.js +56 -42
- package/es/Layout/HeaderNavs.js +47 -20
- package/es/Layout/HeaderTabs.js +102 -49
- package/es/Layout/Iconfont.js +1 -1
- package/es/Layout/Language.js +32 -14
- package/es/Layout/Layout.js +108 -86
- package/es/Layout/Logo.js +32 -16
- package/es/Layout/OrgAppList.js +107 -62
- package/es/Layout/SideMenu.js +124 -63
- package/es/Layout/Theme.js +61 -23
- package/es/Layout/checkAuth.js +29 -0
- package/es/Layout/index.js +34 -26
- package/es/Layout/paaslayout/CompactSideMenu.js +74 -35
- package/es/Layout/paaslayout/Header.js +45 -22
- package/es/Layout/paaslayout/Logo.js +13 -3
- package/es/Layout/paaslayout/SideMenu.js +78 -39
- package/es/Layout/paaslayout/index.js +102 -75
- package/es/Layout/storage.js +9 -10
- package/es/Layout/utils.js +136 -0
- package/es/LoadingButton/index.js +24 -15
- package/es/Modal/index.js +46 -38
- package/es/Page/Box.js +41 -34
- package/es/Page/index.js +67 -52
- package/es/Page/utils.js +5 -0
- package/es/QueryForm/Field/Checkbox.js +9 -5
- package/es/QueryForm/Field/Select.js +41 -31
- package/es/QueryForm/Field/SelectInput.js +41 -26
- package/es/QueryForm/Field/fieldsMap.js +1 -0
- package/es/QueryForm/Field/index.js +71 -41
- package/es/QueryForm/createActions.js +7 -6
- package/es/QueryForm/index.js +135 -76
- package/es/QueryListScene/List.js +128 -74
- package/es/QueryListScene/QueryForm.js +81 -46
- package/es/QueryListScene/QueryListScene.js +40 -25
- package/es/QueryListScene/Title.js +3 -3
- package/es/QueryListScene/Toolbar.js +12 -11
- package/es/Select/DropDownWrap.js +50 -29
- package/es/Select/index.js +231 -135
- package/es/Table/ResizableTable/index.js +40 -26
- package/es/Table/index.js +16 -18
- package/es/Title/index.js +23 -21
- package/es/locale.js +11 -3
- package/es/utils/checkAuth.js +5 -3
- package/es/utils/findMenuInfoByPath.js +4 -0
- package/es/utils/index.js +23 -12
- package/lib/ArrayInput/icon.js +6 -6
- package/lib/ArrayInput/index.js +127 -78
- package/lib/AuthContext.js +4 -1
- package/lib/Columns/index.js +47 -31
- package/lib/DevelopmentLogin/LoginModal.js +58 -32
- package/lib/DevelopmentLogin/index.js +27 -16
- package/lib/Ellipsis/Svg/CopySVG.js +15 -13
- package/lib/Ellipsis/Svg/TickSVG.js +10 -8
- package/lib/Ellipsis/index.js +80 -57
- package/lib/Handle/README.md +0 -20
- package/lib/Handle/index.js +80 -32
- package/lib/Icon/fonts/iconfont.js +12 -7
- package/lib/Icon/index.js +20 -11
- package/lib/Img/Contain.js +34 -24
- package/lib/Img/Cover.js +65 -42
- package/lib/Img/index.js +51 -36
- package/lib/Layout/ActionsContext.js +4 -1
- package/lib/Layout/AppList.js +118 -40
- package/lib/Layout/Application.js +86 -26
- package/lib/Layout/Avatar.js +86 -32
- package/lib/Layout/CompatibleLanguage.js +110 -39
- package/lib/Layout/EnterpriseLayout/Avatar.js +100 -41
- package/lib/Layout/EnterpriseLayout/Header.js +113 -0
- package/lib/Layout/EnterpriseLayout/HeaderActions.js +104 -0
- package/lib/Layout/EnterpriseLayout/Language.js +48 -17
- package/lib/Layout/EnterpriseLayout/Theme.js +44 -16
- package/lib/Layout/EnterpriseLayout/index.js +23 -14
- package/lib/Layout/GlobalNavigation/NavigationPopup.js +186 -59
- package/lib/Layout/GlobalNavigation/index.js +74 -23
- package/lib/Layout/Header.js +63 -28
- package/lib/Layout/HeaderActions.js +74 -45
- package/lib/Layout/HeaderNavs.js +61 -23
- package/lib/Layout/HeaderTabs.js +118 -51
- package/lib/Layout/Iconfont.js +5 -1
- package/lib/Layout/Language.js +48 -17
- package/lib/Layout/Layout.js +128 -88
- package/lib/Layout/Logo.js +43 -19
- package/lib/Layout/OrgAppList.js +127 -64
- package/lib/Layout/SideMenu.js +143 -65
- package/lib/Layout/Theme.js +73 -23
- package/lib/Layout/checkAuth.js +39 -0
- package/lib/Layout/createActions.js +5 -0
- package/lib/Layout/images/index.js +28 -0
- package/lib/Layout/index.js +55 -30
- package/lib/Layout/paaslayout/CompactSideMenu.js +84 -35
- package/lib/Layout/paaslayout/Header.js +55 -22
- package/lib/Layout/paaslayout/Logo.js +19 -3
- package/lib/Layout/paaslayout/SideMenu.js +87 -39
- package/lib/Layout/paaslayout/index.js +122 -77
- package/lib/Layout/storage.js +40 -11
- package/lib/Layout/utils.js +166 -0
- package/lib/LoadingButton/index.js +29 -15
- package/lib/Modal/index.js +53 -38
- package/lib/Page/Box.js +45 -34
- package/lib/Page/index.js +77 -52
- package/lib/Page/utils.js +9 -1
- package/lib/QueryForm/Field/Checkbox.js +13 -5
- package/lib/QueryForm/Field/Select.js +53 -33
- package/lib/QueryForm/Field/SelectInput.js +56 -28
- package/lib/QueryForm/Field/fieldsMap.js +15 -1
- package/lib/QueryForm/Field/index.js +81 -43
- package/lib/QueryForm/createActions.js +12 -6
- package/lib/QueryForm/index.js +157 -78
- package/lib/QueryForm/useForm.js +5 -0
- package/lib/QueryListScene/List.js +140 -76
- package/lib/QueryListScene/QueryForm.js +86 -46
- package/lib/QueryListScene/QueryListScene.js +46 -25
- package/lib/QueryListScene/Title.js +7 -3
- package/lib/QueryListScene/Toolbar.js +16 -11
- package/lib/QueryListScene/createActions.js +5 -0
- package/lib/QueryListScene/index.js +10 -0
- package/lib/QueryListScene/useActions.js +5 -0
- package/lib/Select/DropDownWrap.js +56 -31
- package/lib/Select/index.js +241 -135
- package/lib/Table/ResizableTable/index.js +48 -26
- package/lib/Table/index.js +28 -17
- package/lib/Title/index.js +28 -21
- package/lib/index.js +56 -35
- package/lib/locale.js +19 -4
- package/lib/utils/checkAuth.js +9 -4
- package/lib/utils/findMenuInfoByPath.js +8 -1
- package/lib/utils/index.js +42 -15
- package/package.json +2 -2
package/dist/tntd.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.tnt-icon svg{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}.tnt-queryform{display:flex}.tnt-queryform-extra{line-height:32px;margin-left:12px}.tnt-queryform-extra>*{margin-left:8px}.tnt-queryform-actions{align-items:center;display:inline-block;height:32px;line-height:32px}.tnt-queryform-actions>:not(.expand-link){margin-right:10px}.tnt-queryform-actions>.expand-link{padding:0;margin-right:0}.tnt-queryform-actions>.ant-badge .tnt-icon{margin-right:8px}.tnt-queryform .ant-form{display:inline-block;margin-bottom:12px;display:flex;flex:1}.tnt-queryform .ant-form.ant-form-inline{flex-wrap:unset}.tnt-queryform .ant-form>div:first-child{height:32px;overflow:hidden}.tnt-queryform .ant-form.expanded>div:first-child{height:auto!important}.tnt-queryform .ant-form.showMore>div:first-child .ant-form-item{margin-bottom:12px}.tnt-queryform .ant-form>div:nth-child(2){display:flex}.tnt-queryform .ant-form.ant-form-inline .ant-form-item{margin-right:10px;display:inline-block}.tnt-queryform .ant-form .ant-form-item-control{line-height:unset}.tnt-queryform .ant-form .ant-form-item-control .ant-calendar-picker-input{padding:0 11px}.tnt-queryform .ant-form .ant-form-item-control .ant-form-item-children>.ant-input,.tnt-queryform .ant-form .ant-form-item-control .ant-form-item-children>.ant-input-affix-wrapper{width:160px}.tnt-queryform-drawer{margin-top:50px}.tnt-queryform-drawer.large-size{margin-top:60px}.tnt-queryform-drawer.ant-drawer.ant-drawer-open .ant-drawer-mask{opacity:0;background:unset}.tnt-queryform-drawer .ant-drawer-body .ant-form-item{display:block;margin-right:0;margin-bottom:20px;width:100%}.tnt-queryform-drawer .ant-drawer-body .ant-form-item-label{display:block;text-align:left;line-height:22px;margin-bottom:10px}.tnt-queryform-drawer .ant-drawer-body .ant-calendar-picker,.tnt-queryform-drawer .ant-drawer-body .ant-form-item-control,.tnt-queryform-drawer .ant-drawer-body .ant-form-item-control-wrapper,.tnt-queryform-drawer .ant-drawer-body .ant-input{min-width:100%;width:100%}.tnt-queryform-drawer .ant-drawer-body>.ant-btn{display:block;width:100%;margin-bottom:10px}.tnt-queryform-drawer .ant-drawer-body>.ant-btn.ant-btn-primary{margin-top:20px}.tnt-resizable-table .react-resizable{position:relative;background-clip:padding-box}.tnt-resizable-table-handle{position:absolute;width:10px;height:100%;bottom:0;right:-5px;cursor:col-resize;z-index:1}.tnt-resizable-table th:last-of-type .react-resizable-handle{right:0}.tnt-resizable-table .ant-table-column-sorters,.tnt-resizable-table .ant-table-column-title{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.tnt-resizable-table .ant-table-column-sorters{display:inline-flex;max-width:100%;align-items:center}.tnt-querylistscene{position:relative}.tnt-querylistscene.large-size .tnt-querylistscene-title{height:48px}.tnt-querylistscene-title{position:sticky;top:0;height:40px;background:#fff;line-height:40px;padding:0 20px;z-index:1}.tnt-querylistscene-title>span{font-size:14px;color:#17233d;letter-spacing:0}.tnt-querylistscene-toolbar{padding:12px 16px;background:#fff;box-shadow:0 0 6px 0 rgba(0,0,0,.06);border-radius:4px 4px 0 0}.tnt-querylistscene-toolbar>:not(:last-child){margin-right:12px}.tnt-querylistscene-content{background:#f1f2f5;padding:16px 20px}.tnt-querylistscene-list{background:#fff;box-shadow:0 0 6px 0 rgba(0,0,0,.06);border-radius:4px}.hasToolbar .tnt-querylistscene-list{border-radius:0 0 4px 4px}.tnt-querylistscene-list .ant-table-pagination.ant-pagination{position:relative;width:100%;text-align:right;margin-bottom:0;padding:12px 16px;background:#fff;margin-top:0;border-radius:0 0 4px 4px;box-shadow:0 -2px 4px rgba(0,0,0,.06);z-index:1}.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-total-text{float:left}.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-options{text-align:left}.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-jump-next,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-jump-prev,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-next,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-prev{height:28px;line-height:28px}.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-jump-next .ant-pagination-item-link,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-jump-prev .ant-pagination-item-link,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-next .ant-pagination-item-link,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-prev .ant-pagination-item-link{border:none}.tnt-querylistscene-list.paginationSticky .ant-table-pagination.ant-pagination{position:sticky;bottom:0}.tnt-querylistscene-list.hasScrollToBottom .ant-table-pagination.ant-pagination{box-shadow:none}.tnt-modal.ant-modal{max-width:100vw;padding-bottom:0}.tnt-modal .ant-modal-content{height:100%;display:flex;flex-direction:column}.tnt-modal .ant-modal-content .ant-modal-close{display:none}.tnt-modal .ant-modal-header{position:relative;padding:8px 20px}.tnt-modal .ant-modal-header .tnt-modal-header-actions{position:absolute;top:0;right:0;height:40px;line-height:40px}.tnt-modal .ant-modal-header .tnt-modal-header-actions .tnt-icon{width:40px;height:40px;line-height:40px;cursor:pointer;text-align:center;display:inline-block}.tnt-modal .ant-modal-header .tnt-modal-header-actions i.fullscreen:hover{color:#2e81f7}.tnt-modal .ant-modal-header .tnt-modal-header-actions i.close:hover{color:red}.tnt-modal .ant-modal-title .link{margin-left:10px;font-size:12px;color:#999}.tnt-modal .ant-modal-title .link:hover{color:#2e81f7}.tnt-modal .ant-modal-title img{position:relative;width:18px;height:18px;margin-right:8px;vertical-align:text-top}.tnt-modal .ant-modal-body{padding:0;flex:1;overflow:auto}.tnt-modal.fullscreen .ant-modal-body{height:calc(100vh - 39px);background:#fff}.tnt-modal iframe{border:none;width:100%;height:100%}.tnt-columns .ant-col:not(:first-of-type)>div{box-shadow:5px 5px 10px -4px hsla(0,0%,83.5%,.5),3px -5px 10px -4px hsla(0,0%,83.5%,.4)}.gutter .tnt-columns .ant-col:not(:first-of-type)>div,.tnt-columns .ant-col:first-child>div{box-shadow:0 0 10px 0 hsla(0,0%,83.5%,.5)}.tnt-columns-col,.tnt-columns-col>div{height:inherit}.tnt-columns-col-header{padding:0 20px;height:48px;line-height:48px;border-bottom:1px solid #e1e6ee}.tnt-columns-col-header .title-left{float:left;color:#17233d;font-size:14px}.tnt-columns-col-header .title-extra{float:right}.tnt-columns-col-header .title-extra .ant-btn{width:64px;height:22px;font-size:12px}.tnt-columns-col-header .title-extra .ant-btn-primary{background:#126bfb;border-radius:2px;border-color:#126bfb}.tnt-columns-col-tabs{height:48px;line-height:48px;border-bottom:1px solid #e1e6ee;color:#17233d;font-size:14px}.tnt-columns-col-tabs .tab-item{display:inline-block;padding:0 20px;height:48px;text-align:center;cursor:pointer;transition:borderBottom 1s}.tnt-columns-col-tabs .active-tab{border-bottom:2px solid #126bfb}.tnt-columns-col-body{height:calc(100% - 48px);padding:10px 20px;overflow-y:scroll;color:#17233d}.tnt-more-menus-dropdown-icon{font-size:12px;margin-left:2px}.large-size>.ant-layout-content .tnt-page.in-layout{height:calc(100vh - 60px)}.tnt-page{position:relative;width:100%;height:100%;overflow-y:hidden}.tnt-page.in-layout{box-shadow:none;height:calc(100vh - 50px)}.tnt-page.in-layout .tnt-page-box,.tnt-page.in-layout .tnt-page-box>.ant-card{height:100%}.tnt-page.in-layout .tnt-page-content .tnt-page-box .ant-card .ant-card-body{overflow-x:hidden;overflow-y:auto}.tnt-page-box-white{z-index:1;background:#f3f5f6;box-shadow:0 0 6px 0 rgba(0,0,0,.1),0 10px 12px 2px rgba(170,182,206,.2)}.in-layout .tnt-page-box-white{background:#fafbfc}.tnt-page-box-gray{background:#e8ebed;box-shadow:0 10px 12px 2px rgba(0,0,0,.1)}.in-layout .tnt-page-box-gray{background:#f8f9fa;box-shadow:0 2px 5px 1px rgba(0,0,0,.1)}.tnt-page-header{position:absolute;top:0;left:0;right:0;display:flex;flex-direction:row;justify-content:space-between;background:#f0f2f3;box-shadow:0 0 6px 0 rgba(0,0,0,.1),0 10px 6px 0 rgba(170,182,206,.2)}.in-layout .tnt-page-header{background:#fff;box-shadow:none}.tnt-page-header-section{display:flex;align-items:center}.tnt-page-header-section:first-child>*{margin-right:10px}.tnt-page-header-section:nth-child(2)>*{margin:0 5px}.tnt-page-header-section:nth-child(3)>*{margin-left:10px}.tnt-page-content{height:calc(100% - 40px);flex-direction:row;width:100%;position:relative;z-index:0}.tnt-page-box{overflow:auto}.tnt-page-box .ant-card{background:inherit}.tnt-page-box-card{background-color:transparent!important}.tnt-page-box-card .ant-card-head{border-bottom:1px solid #e0e0e0;margin-bottom:0}.small .tnt-page-box-card .ant-card-head{height:40px;line-height:40px}.tnt-page-box-card .ant-card-head .ant-card-head-title{font-weight:400}.tnt-page-box-card .ant-card-body{overflow:auto}.page-header-section-back{position:relative;display:inline-block;margin-right:40px!important;cursor:pointer}.page-header-section-back:after{content:"";position:absolute;width:1px;height:16px;right:-20px;top:50%;transform:translateY(-50%);background-color:#dcdfe6}.page-header-section-back:hover,.page-header-section-back:hover i{color:#126bfb}.page-header-section-back i{font-size:14px;margin-right:6px;color:#4c4c4c}.page-header-section-back span{font-size:14px;font-weight:400}.tnt-title{position:relative;height:32px;line-height:32px;clear:both;overflow:hidden}.tnt-title.has-number .tnt-title-text h3{margin-left:0}.tnt-title.has-number.is-simple .count:before,.tnt-title.has-number .tnt-title-text:before{display:none}.tnt-title.has-number.small .count{font-size:20px;margin-right:12px}.tnt-title.has-number.small .count:before{width:20px;height:15px;top:44%;left:60%}.tnt-title.has-number.middle .count{font-size:24px;margin-right:12px}.tnt-title.has-number.middle .count:before{width:24px;height:15px;left:56%}.tnt-title.has-number.large .count{font-size:28px;margin-right:12px}.tnt-title.has-number.large .count:before{width:28px;height:18px;left:56%}.tnt-title.has-number .count{top:-1px;color:#0089ff;font-size:22px;font-style:normal;margin-right:12px;position:relative;vertical-align:top;font-weight:400;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei!important;letter-spacing:1px}.tnt-title.has-number .count:before{position:absolute;display:block;content:"";width:22px;height:15px;border-top:1px solid #0089ff;background-color:#fff;top:45%;left:58%;transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.tnt-title.small{height:28px;line-height:28px}.tnt-title.small .tnt-title-text h3{font-size:14px}.tnt-title.small .tnt-title-text:before{height:14px;top:7px}.tnt-title.middle{height:36px;line-height:36px}.tnt-title.middle .tnt-title-text h3{font-size:18px}.tnt-title.middle .tnt-title-text:before{height:18px;top:9px}.tnt-title.large{height:40px;line-height:40px}.tnt-title.large .tnt-title-text h3{font-size:20px}.tnt-title.large .tnt-title-text:before{height:20px;top:9px}.tnt-title .tnt-title-text{position:relative;float:left}.tnt-title .tnt-title-text h3{font-size:16px;color:#17233d;font-weight:400;margin:0 10px;display:inline-block}.tnt-title .tnt-title-text span{position:relative;top:1px;font-size:12px;color:#8b919e;margin-right:10px;line-height:1}.tnt-title .tnt-title-text:before{position:absolute;left:0;top:8px;background-color:#126bfb;content:"";width:3px;height:16px;margin-right:8px}.tnt-title .tnt-title-extra{position:relative;float:right;margin-left:8px}.tnt-ellipsis{display:flex}.tnt-ellipsis .overflow{overflow:hidden;text-overflow:ellipsis}.tnt-ellipsis .overflow i{margin:0 .3em}.tnt-ellipsis .ellipsis-nowrap{white-space:nowrap}.tnt-ellipsis .ellipsis-nowrap *,.tnt-ellipsis .ellipsis-wrap{overflow:hidden;text-overflow:ellipsis}.tnt-ellipsis .ellipsis-wrap{display:-webkit-inline-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.tnt-ellipsis .button{height:20px;width:20px;display:inline-flex;align-items:center;margin-left:8px}.tnt-ellipsis .button :hover{cursor:pointer}.tnt-ellipsis .button-hidden{display:none!important}.tnt-ellipsis .button-active{display:inline-flex}.tnt-ellipsis .button-active g{animation:copy-active .3s}@keyframes copy-active{0%{stroke:#07c790}to{stroke:#1e90ff}}.tntd-array-input-item{margin-bottom:10px}.tntd-array-input .ant-col .ant-select,.tntd-array-input .ant-table-row .ant-select{width:100%}.tntd-array-input .mr10{margin-right:10px}.tntd-array-input-action{line-height:28px}.tntd-array-input-action>span{cursor:pointer}
|
|
1
|
+
.tnt-icon svg{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}.tnt-queryform{display:flex}.tnt-queryform-extra{line-height:32px;margin-left:12px}.tnt-queryform-extra>*{margin-left:8px}.tnt-queryform-actions{align-items:center;display:inline-block;height:32px;line-height:32px}.tnt-queryform-actions>:not(.expand-link){margin-right:10px}.tnt-queryform-actions>.expand-link{padding:0;margin-right:0}.tnt-queryform-actions>.ant-badge .tnt-icon{margin-right:8px}.tnt-queryform .ant-form{display:inline-block;margin-bottom:12px;display:flex;flex:1}.tnt-queryform .ant-form.ant-form-inline{flex-wrap:unset}.tnt-queryform .ant-form>div:first-child{height:32px;overflow:hidden}.tnt-queryform .ant-form.expanded>div:first-child{height:auto!important}.tnt-queryform .ant-form.showMore>div:first-child .ant-form-item{margin-bottom:12px}.tnt-queryform .ant-form>div:nth-child(2){display:flex}.tnt-queryform .ant-form.ant-form-inline .ant-form-item{margin-right:10px;display:inline-block}.tnt-queryform .ant-form .ant-form-item-control{line-height:unset}.tnt-queryform .ant-form .ant-form-item-control .ant-calendar-picker-input{padding:0 11px}.tnt-queryform .ant-form .ant-form-item-control .ant-form-item-children>.ant-input,.tnt-queryform .ant-form .ant-form-item-control .ant-form-item-children>.ant-input-affix-wrapper{width:160px}.tnt-queryform-drawer{margin-top:50px}.tnt-queryform-drawer.large-size{margin-top:60px}.tnt-queryform-drawer.ant-drawer.ant-drawer-open .ant-drawer-mask{opacity:0;background:unset}.tnt-queryform-drawer .ant-drawer-body .ant-form-item{display:block;margin-right:0;margin-bottom:20px;width:100%}.tnt-queryform-drawer .ant-drawer-body .ant-form-item-label{display:block;text-align:left;line-height:22px;margin-bottom:10px}.tnt-queryform-drawer .ant-drawer-body .ant-calendar-picker,.tnt-queryform-drawer .ant-drawer-body .ant-form-item-control,.tnt-queryform-drawer .ant-drawer-body .ant-form-item-control-wrapper,.tnt-queryform-drawer .ant-drawer-body .ant-input{min-width:100%;width:100%}.tnt-queryform-drawer .ant-drawer-body>.ant-btn{display:block;width:100%;margin-bottom:10px}.tnt-queryform-drawer .ant-drawer-body>.ant-btn.ant-btn-primary{margin-top:20px}.tnt-resizable-table .react-resizable{position:relative;background-clip:padding-box}.tnt-resizable-table-handle{position:absolute;width:10px;height:100%;bottom:0;right:-5px;cursor:col-resize;z-index:1}.tnt-resizable-table th:last-of-type .react-resizable-handle{right:0}.tnt-resizable-table .ant-table-column-sorters,.tnt-resizable-table .ant-table-column-title{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.tnt-resizable-table .ant-table-column-sorters{display:inline-flex;max-width:100%;align-items:center}.tnt-querylistscene{position:relative}.tnt-querylistscene.large-size .tnt-querylistscene-title{height:48px}.tnt-querylistscene-title{position:sticky;top:0;height:40px;background:#fff;line-height:40px;padding:0 20px;z-index:1}.tnt-querylistscene-title>span{font-size:14px;color:#17233d;letter-spacing:0}.tnt-querylistscene-toolbar{padding:12px 16px;background:#fff;box-shadow:0 0 6px 0 rgba(0,0,0,.06);border-radius:4px 4px 0 0}.tnt-querylistscene-toolbar>:not(:last-child){margin-right:12px}.tnt-querylistscene-content{background:#f1f2f5;padding:16px 20px}.tnt-querylistscene-list{background:#fff;box-shadow:0 0 6px 0 rgba(0,0,0,.06);border-radius:4px}.hasToolbar .tnt-querylistscene-list{border-radius:0 0 4px 4px}.tnt-querylistscene-list .ant-table-pagination.ant-pagination{position:relative;width:100%;text-align:right;margin-bottom:0;padding:12px 16px;background:#fff;margin-top:0;border-radius:0 0 4px 4px;box-shadow:0 -2px 4px rgba(0,0,0,.06);z-index:1}.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-total-text{float:left}.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-options{text-align:left}.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-jump-next,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-jump-prev,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-next,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-prev{height:28px;line-height:28px}.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-jump-next .ant-pagination-item-link,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-jump-prev .ant-pagination-item-link,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-next .ant-pagination-item-link,.tnt-querylistscene-list .ant-table-pagination.ant-pagination .ant-pagination-prev .ant-pagination-item-link{border:none}.tnt-querylistscene-list.paginationSticky .ant-table-pagination.ant-pagination{position:sticky;bottom:0}.tnt-querylistscene-list.hasScrollToBottom .ant-table-pagination.ant-pagination{box-shadow:none}.tnt-modal.ant-modal{max-width:100vw;padding-bottom:0}.tnt-modal .ant-modal-content{height:100%;display:flex;flex-direction:column}.tnt-modal .ant-modal-content .ant-modal-close{display:none}.tnt-modal .ant-modal-header{position:relative;padding:8px 20px}.tnt-modal .ant-modal-header .tnt-modal-header-actions{position:absolute;top:0;right:0;height:40px;line-height:40px}.tnt-modal .ant-modal-header .tnt-modal-header-actions .tnt-icon{width:40px;height:40px;line-height:40px;cursor:pointer;text-align:center;display:inline-block}.tnt-modal .ant-modal-header .tnt-modal-header-actions i.fullscreen:hover{color:#2e81f7}.tnt-modal .ant-modal-header .tnt-modal-header-actions i.close:hover{color:red}.tnt-modal .ant-modal-title .link{margin-left:10px;font-size:12px;color:#999}.tnt-modal .ant-modal-title .link:hover{color:#2e81f7}.tnt-modal .ant-modal-title img{position:relative;width:18px;height:18px;margin-right:8px;vertical-align:text-top}.tnt-modal .ant-modal-body{padding:0;flex:1;overflow:auto}.tnt-modal.fullscreen .ant-modal-body{height:calc(100vh - 39px);background:#fff}.tnt-modal iframe{border:none;width:100%;height:100%}.tnt-columns .ant-col:not(:first-of-type)>div{box-shadow:5px 5px 10px -4px hsla(0,0%,83.5%,.5),3px -5px 10px -4px hsla(0,0%,83.5%,.4)}.gutter .tnt-columns .ant-col:not(:first-of-type)>div,.tnt-columns .ant-col:first-child>div{box-shadow:0 0 10px 0 hsla(0,0%,83.5%,.5)}.tnt-columns-col,.tnt-columns-col>div{height:inherit}.tnt-columns-col-header{padding:0 20px;height:48px;line-height:48px;border-bottom:1px solid #e1e6ee}.tnt-columns-col-header .title-left{float:left;color:#17233d;font-size:14px}.tnt-columns-col-header .title-extra{float:right}.tnt-columns-col-header .title-extra .ant-btn{width:64px;height:22px;font-size:12px}.tnt-columns-col-header .title-extra .ant-btn-primary{background:#126bfb;border-radius:2px;border-color:#126bfb}.tnt-columns-col-tabs{height:48px;line-height:48px;border-bottom:1px solid #e1e6ee;color:#17233d;font-size:14px}.tnt-columns-col-tabs .tab-item{display:inline-block;padding:0 20px;height:48px;text-align:center;cursor:pointer;transition:borderBottom 1s}.tnt-columns-col-tabs .active-tab{border-bottom:2px solid #126bfb}.tnt-columns-col-body{height:calc(100% - 48px);padding:10px 20px;overflow-y:scroll;color:#17233d}.tnt-more-menus-dropdown-icon{font-size:12px;margin-left:2px}.large-size>.ant-layout-content .tnt-page.in-layout{height:calc(100vh - 60px)}.tnt-page{position:relative;width:100%;height:100%;overflow-y:hidden}.tnt-page.in-layout{box-shadow:none;height:calc(100vh - 50px)}.tnt-page.in-layout .tnt-page-box,.tnt-page.in-layout .tnt-page-box>.ant-card{height:100%}.tnt-page.in-layout .tnt-page-content .tnt-page-box .ant-card .ant-card-body{overflow-x:hidden;overflow-y:auto}.tnt-page-box-white{z-index:1;background:#f3f5f6;box-shadow:0 0 6px 0 rgba(0,0,0,.1),0 10px 12px 2px rgba(170,182,206,.2)}.in-layout .tnt-page-box-white{background:#fafbfc}.tnt-page-box-gray{background:#e8ebed;box-shadow:0 10px 12px 2px rgba(0,0,0,.1)}.in-layout .tnt-page-box-gray{background:#f8f9fa;box-shadow:0 2px 5px 1px rgba(0,0,0,.1)}.tnt-page-header{position:absolute;top:0;left:0;right:0;display:flex;flex-direction:row;justify-content:space-between;background:#f0f2f3;box-shadow:0 0 6px 0 rgba(0,0,0,.1),0 10px 6px 0 rgba(170,182,206,.2)}.in-layout .tnt-page-header{background:#fff;box-shadow:none}.tnt-page-header-section{display:flex;align-items:center}.tnt-page-header-section:first-child>*{margin-right:10px}.tnt-page-header-section:nth-child(2)>*{margin:0 5px}.tnt-page-header-section:nth-child(3)>*{margin-left:10px}.tnt-page-content{height:calc(100% - 40px);flex-direction:row;width:100%;position:relative;z-index:0}.tnt-page-box{overflow:auto}.tnt-page-box .ant-card{background:inherit}.tnt-page-box-card{background-color:transparent!important}.tnt-page-box-card .ant-card-head{border-bottom:1px solid #e0e0e0;margin-bottom:0}.small .tnt-page-box-card .ant-card-head{height:40px;line-height:40px}.tnt-page-box-card .ant-card-head .ant-card-head-title{font-weight:400}.tnt-page-box-card .ant-card-body{overflow:auto}.page-header-section-back{position:relative;display:inline-block;margin-right:40px!important;cursor:pointer}.page-header-section-back:after{content:"";position:absolute;width:1px;height:16px;right:-20px;top:50%;transform:translateY(-50%);background-color:#dcdfe6}.page-header-section-back:hover,.page-header-section-back:hover i{color:#126bfb}.page-header-section-back i{font-size:14px;margin-right:6px;color:#4c4c4c}.page-header-section-back span{font-size:14px;font-weight:400}.tnt-title{position:relative;height:32px;line-height:32px;clear:both;overflow:hidden}.tnt-title.has-number .tnt-title-text h3{margin-left:0}.tnt-title.has-number.is-simple .count:before,.tnt-title.has-number .tnt-title-text:before{display:none}.tnt-title.has-number.small .count{font-size:20px;margin-right:12px}.tnt-title.has-number.small .count:before{width:20px;height:15px;top:44%;left:60%}.tnt-title.has-number.middle .count{font-size:24px;margin-right:12px}.tnt-title.has-number.middle .count:before{width:24px;height:15px;left:56%}.tnt-title.has-number.large .count{font-size:28px;margin-right:12px}.tnt-title.has-number.large .count:before{width:28px;height:18px;left:56%}.tnt-title.has-number .count{top:-1px;color:#0089ff;font-size:22px;font-style:normal;margin-right:12px;position:relative;vertical-align:top;font-weight:400;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei!important;letter-spacing:1px}.tnt-title.has-number .count:before{position:absolute;display:block;content:"";width:22px;height:15px;border-top:1px solid #0089ff;background-color:#fff;top:45%;left:58%;transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.tnt-title.small{height:28px;line-height:28px}.tnt-title.small .tnt-title-text h3{font-size:14px}.tnt-title.small .tnt-title-text:before{height:14px;top:7px}.tnt-title.middle{height:36px;line-height:36px}.tnt-title.middle .tnt-title-text h3{font-size:18px}.tnt-title.middle .tnt-title-text:before{height:18px;top:9px}.tnt-title.large{height:40px;line-height:40px}.tnt-title.large .tnt-title-text h3{font-size:20px}.tnt-title.large .tnt-title-text:before{height:20px;top:9px}.tnt-title .tnt-title-text{position:relative;float:left}.tnt-title .tnt-title-text h3{font-size:16px;color:#17233d;font-weight:400;margin:0 10px;display:inline-block}.tnt-title .tnt-title-text span{position:relative;top:1px;font-size:12px;color:#8b919e;margin-right:10px;line-height:1}.tnt-title .tnt-title-text:before{position:absolute;left:0;top:8px;background-color:#126bfb;content:"";width:3px;height:16px;margin-right:8px}.tnt-title .tnt-title-extra{position:relative;float:right;margin-left:8px}.tnt-ellipsis{display:flex}.tnt-ellipsis .overflow{overflow:hidden;text-overflow:ellipsis}.tnt-ellipsis .overflow i{margin:0 .3em}.tnt-ellipsis .ellipsis-nowrap{white-space:nowrap}.tnt-ellipsis .ellipsis-nowrap *,.tnt-ellipsis .ellipsis-wrap{overflow:hidden;text-overflow:ellipsis}.tnt-ellipsis .ellipsis-wrap{display:-webkit-inline-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.tnt-ellipsis .button{height:20px;width:20px;display:inline-flex;align-items:center;margin-left:8px}.tnt-ellipsis .button :hover{cursor:pointer}.tnt-ellipsis .button-hidden{display:none!important}.tnt-ellipsis .button-active{display:inline-flex}.tnt-ellipsis .button-active g{-webkit-animation:copy-active .3s;animation:copy-active .3s}@-webkit-keyframes copy-active{0%{stroke:#07c790}to{stroke:#1e90ff}}@keyframes copy-active{0%{stroke:#07c790}to{stroke:#1e90ff}}.tntd-array-input-item{margin-bottom:10px}.tntd-array-input .ant-col .ant-select,.tntd-array-input .ant-table-row .ant-select{width:100%}.tntd-array-input .mr10{margin-right:10px}.tntd-array-input-action{line-height:28px}.tntd-array-input-action>span{cursor:pointer}
|