Chatwoot/app/javascript/dashboard/assets/scss/widgets/_tabs.scss

74 lines
1.3 KiB
SCSS
Raw Normal View History

.tabs {
@include padding($zero $space-normal);
@include border-normal-bottom;
border-left-width: 0;
border-right-width: 0;
border-top-width: 0;
}
// Tab chat type
.tab--chat-type {
@include flex;
.tabs-title {
a {
font-size: $font-size-default;
font-weight: $font-weight-medium;
padding-bottom: $space-slab;
padding-top: $space-slab;
}
}
}
.tabs-title {
2020-03-22 06:14:40 +00:00
@include margin($zero $space-slab);
.badge {
background: $color-background;
border-radius: $space-small;
color: $color-gray;
font-size: $font-size-micro;
font-weight: $font-weight-black;
margin-left: $space-smaller;
padding: $space-smaller;
}
&:first-child {
margin-left: 0;
}
&:last-child {
margin-right: 0;
}
&:hover,
&:focus {
a {
color: darken($medium-gray, 20%);
}
}
a {
@include position(relative, 1px null null null);
2020-03-22 06:14:40 +00:00
align-items: center;
border-bottom: 2px solid transparent;
color: $medium-gray;
2020-03-22 06:14:40 +00:00
display: flex;
flex-direction: row;
font-size: $font-size-small;
2020-03-22 06:14:40 +00:00
transition: all .15s $ease-in-out-cubic;
}
&.is-active {
a {
border-bottom-color: $color-woot;
color: $color-woot;
}
2020-03-22 06:14:40 +00:00
.badge {
background: $color-extra-light-blue;
color: $color-woot;
}
}
}