kibana-riya
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
24 lines (19 loc) • 436 B
text/less
@import "~ui/styles/variables";
@import (reference) "~ui/styles/bootstrap/mixins";
.flex-parent(@grow: 1, @shrink: 1, @basis: auto, @direction: column) {
flex: @grow @shrink @basis;
display: flex;
flex-direction: @direction;
> * {
flex-shrink: 0;
}
}
.real-flex-parent(@flow: column nowrap) {
display: flex;
flex-flow: @flow;
}
.ellipsis() {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}