123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- @import "~antd/lib/style/themes/default.less";
- .card {
- margin-bottom: 24px;
- }
- .heading {
- font-size: 14px;
- line-height: 22px;
- margin: 0 0 16px 0;
- }
- .steps:global(.ant-steps) {
- max-width: 750px;
- margin: 16px auto;
- }
- .errorIcon {
- cursor: pointer;
- color: @error-color;
- margin-right: 24px;
- i {
- margin-right: 4px;
- }
- }
- .errorPopover {
- :global {
- .ant-popover-inner-content {
- padding: 0;
- max-height: 290px;
- overflow: auto;
- min-width: 256px;
- }
- }
- }
- .errorListItem {
- list-style: none;
- border-bottom: 1px solid @border-color-split;
- padding: 8px 16px;
- cursor: pointer;
- transition: all .3s;
- &:hover {
- background: @primary-1;
- }
- &:last-child {
- border: 0;
- }
- .errorIcon {
- color: @error-color;
- float: left;
- margin-top: 4px;
- margin-right: 12px;
- padding-bottom: 22px;
- }
- .errorField {
- font-size: 12px;
- color: @text-color-secondary;
- margin-top: 2px;
- }
- }
- .editable {
- td {
- padding-top: 13px !important;
- padding-bottom: 12.5px !important;
- }
- }
- // custom footer for fixed footer toolbar
- .advancedForm + div {
- padding-bottom: 64px;
- }
- .advancedForm {
- :global {
- .ant-form .ant-row:last-child .ant-form-item {
- margin-bottom: 24px;
- }
- .ant-table td {
- transition: none !important;
- }
- }
- }
- .optional {
- color: @text-color-secondary;
- font-style: normal;
- }
|