1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-23 15:19:42 +02:00
documize/gui/app/styles/widget/widget-tab.scss

30 lines
479 B
SCSS
Raw Normal View History

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
}
}