123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- @use 'mixins/mixins' as *;
- @use 'mixins/var' as *;
- @use 'common/var' as *;
- $directions: rtl, ltr, ttb, btt;
- @include b(drawer) {
- @include set-component-css-var('drawer', $drawer);
- }
- @include b(drawer) {
- position: absolute;
- box-sizing: border-box;
- background-color: getCssVar('drawer', 'bg-color');
- display: flex;
- flex-direction: column;
- box-shadow: getCssVar('box-shadow', 'dark');
- overflow: hidden;
- transition: all getCssVar('transition-duration');
- @each $direction in $directions {
- .#{$direction} {
- transform: translate(0, 0);
- }
- }
- &__sr-focus:focus {
- outline: none !important;
- }
- &__header {
- align-items: center;
- color: rgb(114, 118, 123);
- display: flex;
- margin-bottom: 32px;
- padding: getCssVar('drawer-padding-primary');
- padding-bottom: 0;
- & > :first-child {
- flex: 1;
- }
- }
- &__title {
- margin: 0;
- flex: 1;
- line-height: inherit;
- font-size: 1rem;
- }
- @include e(footer) {
- padding: getCssVar('drawer-padding-primary');
- padding-top: 10px;
- text-align: right;
- }
- &__close-btn {
- display: inline-flex;
- border: none;
- cursor: pointer;
- font-size: getCssVar('font-size-extra-large');
- color: inherit;
- background-color: transparent;
- outline: none;
- &:focus,
- &:hover {
- i {
- color: getCssVar('color-primary');
- }
- }
- }
- &__body {
- flex: 1;
- padding: getCssVar('drawer-padding-primary');
- overflow: auto;
- & > * {
- box-sizing: border-box;
- }
- }
- &.ltr,
- &.rtl {
- height: 100%;
- top: 0;
- bottom: 0;
- }
- &.ttb,
- &.btt {
- width: 100%;
- left: 0;
- right: 0;
- }
- &.ltr {
- left: 0;
- }
- &.rtl {
- right: 0;
- }
- &.ttb {
- top: 0;
- }
- &.btt {
- bottom: 0;
- }
- }
- .#{$namespace}-drawer-fade {
- &-enter-active,
- &-leave-active {
- transition: all getCssVar('transition-duration');
- }
- &-enter-from,
- &-enter-active,
- &-enter-to,
- &-leave-from,
- &-leave-active,
- &-leave-to {
- overflow: hidden !important;
- }
- &-enter-from,
- &-leave-to {
- opacity: 0;
- }
- &-enter-to,
- &-leave-from {
- opacity: 1;
- }
- &-enter-from,
- &-leave-to {
- @each $direction in $directions {
- .#{$direction} {
- @if $direction == ltr {
- transform: translateX(-100%);
- }
- @if $direction == rtl {
- transform: translateX(100%);
- }
- @if $direction == ttb {
- transform: translateY(-100%);
- }
- @if $direction == btt {
- transform: translateY(100%);
- }
- }
- }
- }
- }
|