MM-50087_Add marketplace button to apps bar (#22653)

Этот коммит содержится в:
Julian Mondragón
2023-03-28 10:54:30 -05:00
коммит произвёл GitHub
родитель 6c9ec24fb9
Коммит da7a6825ce
21 изменённых файлов: 485 добавлений и 240 удалений

Просмотреть файл

@@ -262,6 +262,49 @@
}
}
@mixin icon-button {
display: flex;
align-items: center;
justify-content: center;
border: 0;
background: none;
border-radius: 4px;
color: rgba(var(--center-channel-color-rgb), 0.56);
&:focus,
&:focus-within {
box-sizing: border-box;
border: 2px solid rgba(var(--denim-button-bg-rgb), 0.32);
box-shadow: none;
outline: none;
}
&:hover {
border: 0;
background: rgba(var(--center-channel-color-rgb), 0.08);
color: rgba(var(--center-channel-color-rgb), 0.72);
}
&:active {
border: 0;
background: rgba(var(--button-bg-rgb), 0.08);
color: var(--button-bg);
}
&:disabled {
background: none;
color: rgba(var(--center-channel-color-rgb), 0.32);
cursor: not-allowed;
}
}
@mixin icon-button-small-compact {
width: 28px;
height: 28px;
padding: 6px;
font-size: 16px;
}
@mixin simple-in-and-out-after($classPrefix, $transition_time: 300ms) {
.#{$classPrefix}--enter-from-after {
&-enter {