web-apps/vendor/framework7/src/less/material/tabs.less
2016-11-11 16:24:21 +03:00

31 lines
512 B
Plaintext

/* === Tabs === */
.tabs {
.tab {
display: none;
}
.tab.active {
display: block;
}
}
.tabs-animated-wrap {
position: relative;
width: 100%;
overflow: hidden;
height: 100%;
>.tabs {
.flexbox();
height: 100%;
.transition(300ms);
>.tab {
width: 100%;
display: block;
.flex-shrink(0);
}
}
}
.tabs-swipeable-wrap {
height: 100%;
> .tabs > .tab {
display: block;
}
}