You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- .kf-basic-table-info {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- align-items: stretch;
- width: 100%;
- border: 1px solid @border-color;
- border-bottom: none;
- border-radius: 4px;
-
- &__item {
- display: flex;
- align-items: stretch;
- width: 25%;
- border-bottom: 1px solid @border-color;
-
- &__label {
- flex: none;
- padding: 12px 20px;
- color: @text-color-secondary;
- font-size: 14px;
- text-align: left;
- background-color: .addAlpha(#606b7a, 0.05) [];
- }
-
- &__value-container {
- display: flex;
- flex: 1;
- flex-direction: column;
- align-items: stretch;
- min-width: 0;
- }
-
- &__value {
- flex: 1;
- min-width: 0;
- padding: 12px 20px 4px;
- font-size: @font-size;
- word-break: break-all;
-
- & + & {
- padding-top: 0;
- }
-
- &:last-child {
- padding-bottom: 12px;
- }
-
- &__text {
- color: @text-color;
- }
-
- &__link:hover {
- text-decoration: underline @underline-color;
- text-underline-offset: 3px;
- }
- }
-
- &__node {
- flex: 1;
- min-width: 0;
- padding: 12px 20px;
- font-size: @font-size;
- word-break: break-all;
- }
- }
- }
|