| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- @import '~antd/es/style/themes/default.less';
- .access-config-card-item {
- &.active {
- border: 1px solid @primary-color-active;
- }
- .tableCardDisabled {
- width: 100%;
- background: url('/images/access-config-diaabled.png') no-repeat;
- background-size: 100% 100%;
- }
- .tableCardEnabled {
- width: 100%;
- background: url('/images/access-config-enabled.png') no-repeat;
- background-size: 100% 100%;
- }
- .context-access {
- display: flex;
- width: 100%;
- .card {
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- width: 0;
- margin-left: 20px;
- .header {
- .title {
- width: calc(100% - 70px);
- overflow: hidden;
- font-weight: 700;
- font-size: 18px;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .title::before {
- display: none;
- }
- .desc {
- width: 100%;
- margin-top: 10px;
- overflow: hidden;
- color: #666;
- font-weight: 400;
- font-size: 12px;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- .container {
- display: flex;
- width: 100%;
- min-height: 60px;
- margin-top: 10px;
- .server,
- .procotol {
- width: calc(50% - 20px);
- margin-right: 10px;
- .serverItem {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .subTitle {
- width: 100%;
- overflow: hidden;
- color: rgba(0, 0, 0, 0.75);
- font-size: 12px;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .subItem {
- width: 100%;
- height: 20px;
- overflow: hidden;
- color: #666;
- font-size: 12px;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- .procotol {
- .desc {
- width: 100%;
- overflow: hidden;
- color: #666;
- font-weight: 400;
- font-size: 12px;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- }
- }
- }
- }
- :global {
- .ant-pagination-item {
- display: none;
- }
- }
|