123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- .t-float-left {
- float: left;
- }
- .t-float-right {
- float: right;
- }
- @keyframes tdesign-fade-out {
- from {
- opacity: 1;
- }
- to {
- opacity: 0;
- }
- }
- .hotspot-expanded.relative {
- position: relative;
- }
- .hotspot-expanded::after {
- content: '';
- display: block;
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- transform: scale(1.5);
- }
- t-tab-bar-item {
- height: 100%;
- flex-basis: 0;
- flex-grow: 1;
- }
- .t-tab-bar-item {
- height: 100%;
- box-sizing: border-box;
- user-select: none;
- position: relative;
- }
- .t-tab-bar-item--active {
- background-color: rgba(0, 0, 0, 0.05);
- }
- .t-tab-bar-item.t-is-split:before {
- position: absolute;
- box-sizing: border-box;
- content: ' ';
- pointer-events: none;
- top: 0;
- bottom: 0;
- left: 0;
- border-left: 1px solid #e6e6e6;
- transform: scaleX(0.5);
- top: 8px;
- bottom: 8px;
- }
- .t-tab-bar-item__content {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .t-tab-bar-item__content.t-is-checked {
- color: #0052d9;
- }
- .t-tab-bar-item__content.t-is-checked .t-tab-bar-item__icon-menu {
- background-color: #0052d9;
- }
- .t-tab-bar-item .t-badge-class {
- transform: translate(50%, -10%) !important;
- }
- .t-tab-bar-item__text {
- display: flex;
- align-items: center;
- }
- .t-tab-bar-item__text.t-size-s {
- font-size: 10px;
- line-height: 18px;
- }
- .t-tab-bar-item__icon {
- height: 24px;
- }
- .t-tab-bar-item__icon-menu {
- width: 8px;
- height: 1px;
- background-color: #666;
- position: relative;
- margin-right: 4px;
- }
- .t-tab-bar-item__icon-menu::before,
- .t-tab-bar-item__icon-menu::after {
- display: block;
- content: '';
- position: absolute;
- left: 0;
- background-color: inherit;
- width: inherit;
- height: inherit;
- }
- .t-tab-bar-item__icon-menu::before {
- top: -4px;
- }
- .t-tab-bar-item__icon-menu::after {
- bottom: -4px;
- }
- .t-tab-bar-item__spread {
- position: absolute;
- top: 0;
- left: 7%;
- width: 86%;
- background-color: #fff;
- transform: translate3d(0, calc(-100% - 16px), 0);
- z-index: 1;
- }
- .t-tab-bar-item__spread::before {
- display: block;
- content: '';
- position: absolute;
- bottom: 0;
- left: 50%;
- width: 0;
- height: 0;
- border: 8px solid transparent;
- border-top: 8px solid #fff;
- transform: translate3d(-50%, 16px, 0);
- }
- .t-tab-bar-item__spread-item {
- width: 100%;
- height: 50px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .t-tab-bar-item__spread-item--active {
- background-color: rgba(0, 0, 0, 0.05);
- }
- .t-tab-bar-item__spread-item + .t-tab-bar-item__spread-item {
- position: relative;
- }
- .t-tab-bar-item__spread-item + .t-tab-bar-item__spread-item:before {
- position: absolute;
- box-sizing: border-box;
- content: ' ';
- pointer-events: none;
- top: 0;
- border-top: 1px solid #e6e6e6;
- transform: scaleY(0.5);
- border-top-width: 1px;
- border-top-style: solid;
- border-top-color: #e6e6e6;
- width: 80%;
- }
|