2016-10-26 17:31:05 -07:00
|
|
|
.widget-tab {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
2016-10-27 13:40:54 -07:00
|
|
|
padding: 0 10px;
|
2016-10-26 17:31:05 -07:00
|
|
|
text-align: center;
|
2016-10-27 13:40:54 -07:00
|
|
|
@extend .no-select;
|
2016-10-26 17:31:05 -07:00
|
|
|
|
|
|
|
> .tab {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px 10px;
|
2016-10-27 13:40:54 -07:00
|
|
|
background-color: $color-off-white;
|
|
|
|
color: $color-gray;
|
2016-10-26 17:31:05 -07:00
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
2016-10-27 13:40:54 -07:00
|
|
|
margin-right: -3px;
|
2016-10-26 17:31:05 -07:00
|
|
|
|
|
|
|
&:hover {
|
2016-10-27 13:40:54 -07:00
|
|
|
@include ease-in();
|
|
|
|
background-color: $color-gray;
|
|
|
|
color: $color-off-white;
|
2016-10-26 17:31:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .selected {
|
2016-10-27 13:40:54 -07:00
|
|
|
background-color: $color-gray;
|
|
|
|
color: $color-off-white;
|
2016-10-26 17:31:05 -07:00
|
|
|
}
|
|
|
|
}
|