123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- @import '../../style/themes/index';
- @import '../../style/mixins/index';
- @hash-code-prefix-cls: ~'@{ant-prefix}-hash-code';
- .@{hash-code-prefix-cls} {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- color: @text-color;
- font-size: @font-size-base;
- line-height: @line-height-base;
- list-style: none;
- cursor: pointer;
- }
- .@{hash-code-prefix-cls}-header-copy {
- margin-left: @margin-xs;
- cursor: pointer;
- opacity: 0.45;
- }
- .@{hash-code-prefix-cls}-header {
- display: flex;
- justify-content: left;
- width: 100%;
- height: 22px;
- padding-bottom: @padding-xs;
- .@{hash-code-prefix-cls}-header-title {
- font-size: @font-size-base;
- line-height: @line-height-base;
- text-align: center;
- opacity: 0.45;
- }
- .@{hash-code-prefix-cls}-header-logo {
- display: flex;
- flex: 1;
- justify-content: right;
- }
- }
- .@{hash-code-prefix-cls}-double {
- width: 172px;
- &.ant-hash-code-primary {
- width: 220px;
- }
- }
- .@{hash-code-prefix-cls}-single {
- display: flex;
- flex-direction: row-reverse;
- width: 236px;
- &.ant-hash-code-primary {
- width: 284px;
- }
- .@{hash-code-prefix-cls}-header-copy {
- margin-top: @margin-xs;
- }
- }
- .@{hash-code-prefix-cls}-strip {
- width: 350px;
- &.ant-hash-code-primary {
- width: 398px;
- }
- }
- .@{hash-code-prefix-cls}-rect {
- display: flex;
- flex-direction: row-reverse;
- width: 196px;
- &.ant-hash-code-primary {
- width: 244px;
- }
- }
- .@{hash-code-prefix-cls}-primary {
- padding: @padding-lg;
- background-color: @primary-color;
- border-radius: 24px;
- .@{hash-code-prefix-cls}-header-copy {
- opacity: 1;
- }
- .@{hash-code-prefix-cls}-header-title,
- .@{hash-code-prefix-cls}-header-copy,
- .@{hash-code-prefix-cls}-header-logo {
- color: @text-color-dark;
- }
- }
- .@{hash-code-prefix-cls}-contant {
- width: 100%;
- height: 100%;
- }
- .@{hash-code-prefix-cls}-code-value {
- display: flex;
- flex-wrap: wrap;
- gap: 0 10px;
- justify-content: space-between;
- height: 35px;
- overflow: hidden;
- }
- .@{hash-code-prefix-cls}-code-value-block {
- height: 16px;
- font-size: @font-size-base;
- font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
- }
- .@{hash-code-prefix-cls}-value-primary {
- .ant-hash-code-code-value-block {
- color: @text-color-inverse;
- }
- }
- .@{hash-code-prefix-cls}-texaure-double {
- width: 175px;
- height: 36px;
- }
- .@{hash-code-prefix-cls}-texaure {
- position: absolute;
- margin-top: -35px;
- overflow: hidden;
- }
- .@{hash-code-prefix-cls}-texaure-single {
- width: 210px;
- height: 28px;
- margin-top: -21px;
- }
- .@{hash-code-prefix-cls}-texaure-strip {
- width: 350px;
- height: 36px;
- }
- .@{hash-code-prefix-cls}-texaure-rect {
- width: 175px;
- height: 72px;
- margin-top: -71px;
- }
|