Chatwoot/app/javascript/dashboard/assets/scss/views/settings/channel.scss

53 lines
883 B
SCSS
Raw Normal View History

$channel-hover-color: rgba(0, 0, 0, 0.1);
.channels {
margin-top: $space-medium;
2019-10-27 13:58:02 +00:00
.inactive {
2019-10-20 08:04:19 +00:00
filter: grayscale(100%);
}
2019-10-27 13:58:02 +00:00
.channel {
@include flex;
@include background-white;
@include border-light;
cursor: pointer;
flex-direction: column;
margin: -1px;
padding: $space-normal $zero;
transition: all 0.2s ease-in;
&:last-child {
@include border-light;
}
&:hover {
border: 1px solid $primary-color;
box-shadow: 0 2px 8px $channel-hover-color;
z-index: 999;
}
&.disabled {
opacity: 0.6;
}
img {
margin: $space-normal auto;
width: 50%;
}
.channel__title {
color: $color-body;
font-size: var(--font-size-default);
text-align: center;
text-transform: capitalize;
}
p {
color: $medium-gray;
width: 100%;
}
}
}