@spalger/kibana
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
19 lines (15 loc) • 325 B
text/less
@import "~ui/styles/variables";
@import (reference) "~bootstrap/less/mixins";
.flex-parent(@grow: 1, @shrink: 1, @basis: auto) {
flex: @grow @shrink @basis;
display: flex;
flex-direction: column;
> * {
flex-shrink: 0;
}
}
.ellipsis() {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}