123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- /* stylelint-disable no-duplicate-selectors */
- /* stylelint-disable selector-class-pattern */
- :root {
- --primary-color: #00a6ca;
- --error-color: #ff4d4f;
- --content-padding: 24px;
- }
- * {
- box-sizing: border-box;
- padding: 0;
- margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, 'PingFang SC',
- 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
- text-decoration: none;
- letter-spacing: 0.5px;
- }
- a {
- color: #222;
- text-decoration: none;
- }
- input,
- textarea {
- outline: none;
- }
- ul,
- ol {
- list-style: none;
- }
- img {
- vertical-align: middle;
- border: 0;
- }
- [hidden] {
- display: none;
- }
- .container {
- width: 100vw;
- height: 100vh;
- }
- .content-main {
- padding: var(--content-padding);
- }
- .table-wrapper {
- margin-top: var(--content-padding);
- }
- .table-tool {
- display: flex;
- justify-content: flex-end;
- margin-bottom: var(--content-padding);
- }
- .ReactModal__Overlay {
- z-index: 20;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: rgb(0 0 0 / 60%) !important;
- opacity: 0;
- transition: opacity 200ms ease-in-out;
- }
- .ReactModal__Content {
- position: static !important;
- padding: 0 !important;
- border-radius: 10px;
- transition: transform 200ms ease-in-out !important;
- transform: translateY(30px);
- }
- .ReactModal__Overlay--after-open {
- opacity: 1;
- & .ReactModal__Content {
- transform: translateY(0);
- }
- }
- .ReactModal__Overlay--before-close {
- opacity: 0;
- & .ReactModal__Content {
- transform: translateY(30px);
- }
- }
- .width-full {
- width: 100%;
- }
- .height-full {
- height: 100%;
- }
- .content-full {
- width: 100%;
- height: 100%;
- }
- .align-right {
- text-align: right;
- }
- .display-block {
- display: block;
- }
- .ant-layout-content {
- overflow: auto;
- }
- .ant-text-btn-color-cyan {
- color: #13c2c2 !important;
- &:hover {
- background-color: #e1f5f6 !important;
- }
- }
- .ant-text-btn-color-yellow {
- color: #ff7500 !important;
- &:hover {
- background-color: #fdf0e4 !important;
- }
- }
- .ant-btn-color-green {
- color: white !important;
- background-color: #0aa344;
- border-color: #0aa344;
- &:hover {
- background-color: #4dbe6b !important;
- border-color: #4dbe6b !important;
- }
- }
- .grey-icon {
- color: #bbb;
- }
- .recharts-tooltip-cursor {
- fill: #eee !important;
- }
- .recharts-tooltip-item-list {
- & li {
- color: white !important;
- }
- }
- .recharts-default-tooltip {
- color: white;
- }
- .layout-content-custom {
- display: flex;
- flex-direction: column;
- }
- .ant-table-cell {
- overflow-wrap: anywhere !important;
- }
|