123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- @body-bg: #ebeef4; /**body背景色***/
- @bg-color: #fff; /**主题背景色**/
- @header-height: 50px; /***Header高度**/
- @table-th-color: #f2f4f6; /***表头背景色***/
- @active-bg: #def1ff; /***下拉项选中背景色***/
- body {
- background: @body-bg;
- overflow-y: hidden;
- }
- .clearfix:after {
- content: "";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
- }
- .clearfix {
- zoom: 1;
- }
- .ant-form-item-label > label {
- color: #000;
- }
- .ant-modal-body .ant-table-tbody > tr > td {
- padding: 6px;
- }
- /*.ant-table-wrapper{
- height: calc(100vh - 240px);
- overflow-y: auto;
- }*/
- .wrapper {
- min-width: 1214px;
- padding: 15px 30px;
- .filter-box {
- border-bottom: 1px @border-color-base solid;
- }
- .ant-form-item {
- margin-bottom: 15px;
- }
- .basic {
- background: #fff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-radius: 4px;
- }
- .table {
- .table-header {
- display: flex;
- justify-content: space-between;
- padding: 15px 0;
- .table-title {
- font-size: 16px;
- font-weight: bold;
- }
- }
- }
- }
- .ant-table-pagination-right {
- justify-content: flex-start;
- }
- //面包屑样式覆盖
- .ant-breadcrumb {
- margin: 20px 0 30px 30px;
- }
- //步骤条样式覆盖
- .ant-steps-item-icon {
- width: 44px;
- height: 44px;
- line-height: 44px;
- }
- .ant-steps-item-tail {
- top: 18px;
- left: 4px;
- }
- .ant-steps-item-process
- > .ant-steps-item-container
- > .ant-steps-item-content
- > .ant-steps-item-title::after,
- .ant-steps-item-title::after,
- .ant-steps-item-wait
- > .ant-steps-item-container
- > .ant-steps-item-content
- > .ant-steps-item-title::after {
- background-color: #c2c2c2;
- }
- .ant-steps-item-icon,
- .ant-steps-item-content {
- vertical-align: unset;
- }
- .ant-tabs-tabpane {
- overflow-x: auto;
- }
- //启用
- .Enable::before {
- content: "";
- width: 5px;
- height: 5px;
- display: block;
- position: relative;
- left: -10px;
- top: 14px;
- background: @link-color;
- border-radius: 50%;
- }
- //禁用
- .Disable::before {
- content: "";
- width: 5px;
- height: 5px;
- display: block;
- position: relative;
- left: -10px;
- top: 14px;
- background: #fe9748;
- border-radius: 50%;
- }
- .Delete::before {
- content: "";
- width: 5px;
- height: 5px;
- display: block;
- position: relative;
- left: -10px;
- top: 14px;
- background: #ff4d4d;
- border-radius: 50%;
- }
- .Adopt::before {
- content: "";
- width: 5px;
- height: 5px;
- display: block;
- position: relative;
- left: -10px;
- top: 14px;
- background: #ff4d4d;
- border-radius: 50%;
- }
- .disable {
- color: #fb8537;
- }
- .delete {
- color: #ff4d4d;
- }
- .adopt {
- color: #22ac76;
- }
- .menuItem:hover {
- color: @primary-color;
- background: #dbeeff;
- }
- .record {
- width: 150px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- display: block;
- }
- //指定科室样式
- .treeContent {
- height: 408px;
- overflow-y: auto;
- border: 1px solid #dee2e9;
- padding-bottom: 20px;
- position: relative;
- .title {
- height: 30px;
- font-size: 14px;
- font-weight: 500;
- color: #333333;
- line-height: 30px;
- background: #f2f4f6;
- padding-left: 20px;
- }
- .tree {
- min-height: 100px;
- max-height: 342px;
- overflow-y: auto;
- }
- .goTop {
- position: fixed;
- right: 11%;
- top: 67%;
- width: 30px;
- height: 30px;
- border: 1px solid #d4d4d4;
- border-radius: 4px;
- vertical-align: middle;
- text-align: center;
- }
- }
- .user {
- .ant-form-item {
- margin-bottom: 15px;
- }
- }
- .toogle {
- position: absolute;
- bottom: 20px;
- left: 26px;
- .icon{
- font-size: 20px;
- color: #1690FF;
- }
- }
- .logoT {
- position: absolute;
- bottom: 10px;
- left: 25px;
- font-size: 12px;
- font-weight: 400;
- color: #333333;
- line-height: 17px;
- }
|