kibana-123
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
1,138 lines (937 loc) • 18.6 kB
text/less
// generic mixins
@import (reference) "./mixins";
@import (reference) "./variables";
@import (reference) "~ui/styles/bootstrap/bootstrap";
html,
body {
.flex-parent();
height: 100%;
margin: 0;
}
label > small {
font-weight: normal;
}
button {
// buttons have a stupid 1990's default look which should be disabled
.btn();
}
.small {
font-size: 0.9em ;
}
.smaller {
font-size: 0.8em ;
}
.smallest {
font-size: 0.7em ;
}
// Colors available for font awesome icons, these might not look good with normal text
.text-color-primary {
color: @brand-primary;
}
.text-color-info {
color: @brand-info;
}
.text-color-success {
color: @brand-success;
}
.text-color-warning {
color: @brand-warning;
}
.text-color-danger {
color: @brand-danger;
}
.text-monospace {
font-family: @font-family-monospace;
}
code {
word-break: break-all;
word-wrap: break-word;
}
ul.navbar-inline li {
display: inline;
}
.tooltip {
font-size: 8pt;
font-weight: normal;
opacity: 90%;
}
.tooltip-inner {
word-break: normal;
word-wrap: break-word;
white-space: normal;
}
.content {
.real-flex-parent(@flow: row nowrap);
width: 100%;
height: 100%;
overflow: hidden;
> nav {
z-index: 1;
.navbar-right {
margin-right: 0 ;
}
}
}
.application {
.flex-parent(@shrink: 0);
position: relative;
z-index: 0;
background-color: @white;
}
.top-fixed {
position: fixed;
bottom: 0px;
}
.checkbox label {
display: flex;
align-items: center;
padding-left: 0;
input[type="checkbox"] {
float: none;
margin: 0 4px;
position: static;
}
}
notifications {
z-index: 1;
}
//== Subnav
//
// Use for adding a subnav to your app
.navbar {
margin-bottom: 0px;
}
a {
// overriden by next rule for a tags that actually have an href
cursor: default;
}
.link, [ng-click], [clip-copy], [href], [confirm-click] {
cursor: pointer;
}
.application,
.app-container {
> * {
position: relative;
z-index: 0;
}
.kibana-nav-options {
padding-bottom: 0;
padding-right: 0px;
kbn-global-timepicker {
line-height: 20px;
}
.kibana-nav-actions {
margin-left: auto;
padding-right: 0;
line-height: 20px;
.button-group > :last-child {
border-radius: 0;
}
}
}
> config {
z-index: 1;
}
> navbar { padding-bottom: 4px; }
> kbn-top-nav { z-index: 3; }
> nav,
> navbar {
z-index: 2 ;
}
}
//== Nav tweaks
.nav-condensed > li > a {
padding-top: 2px;
padding-bottom: 2px;
}
.navbar > .container-fluid {
> .navbar-nav,
> .navbar-form {
&:not(.pull-right):first-child {
// This is how .navbar-brand accomplishes it's solid placement
margin-left: -15px;
margin-top: 4px;
}
}
}
.navbtn {
.button-variant(@navbar-default-color; @navbar-default-bg; @navbar-default-border);
}
.navbtn-inverse {
.button-variant(@navbar-default-color; @navbar-default-bg; @navbar-default-border);
}
.navbar-timepicker-time-desc > .fa-clock-o {
padding-right: 5px;
}
kbn-info i {
cursor: help;
}
.kbn-timepicker .btn-default {
background: transparent;
color: @text-color;
border: 0px;
box-shadow: none;
text-shadow: none;
}
.kbn-timepicker .btn-info {
.button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);
.text-info { color: @btn-info-color; }
text-shadow: none;
}
.kbn-timepicker .refresh-interval {
padding: 0.2em 0.4em;
border-radius: @border-radius-small;
}
.kbn-timepicker .refresh-interval-active {
background-color: @btn-info-bg;
color: @btn-info-color;
}
//== Table
kbn-table, .kbn-table {
font-size: @font-size-small;
th {
white-space: nowrap;
padding-right: 10px;
.table-header-move, .table-header-sortchange {
visibility: hidden;
}
.fa {
font-size: 1.1em;
}
}
th:hover {
.table-header-move, .table-header-sortchange {
visibility: visible;
}
}
}
//== Generic Table
table {
td .fa {
// font-awesome's override of the line-height usually doesn't
// cauase problems, but in the table it pushes the icon to the
// top of the row
line-height: @line-height-base;
}
}
//== SavedObjectFinder
saved-object-finder,
paginated-selectable-list {
.row {
padding: 10px;
display: flex;
flex-direction: row;
}
.finder-hit-count,
.finder-manage-object {
min-width: 80px;
padding: 5px;
text-align: center;
}
.finder-hit-count {
flex: 1;
span {
color: @kibanaGray3;
}
}
.finder-manage-object {
flex: 3;
text-align: left;
text-transform: capitalize;
}
.form-group {
margin-bottom: 0;
float: left;
flex: 8;
input {
border: none;
padding: 5px 0px;
border-radius: @border-radius-base;
}
span {
padding: 5px 0px;
background-color: @white;
border: none;
i {
color: @kibanaGray3;
width: 15px;
}
}
}
ul.li-striped {
li {
border: none;
}
li:nth-child(odd) {
background-color: @kibanaGray6;
}
li:nth-child(even) {
background-color: @white;
}
.paginate-heading {
font-weight: normal;
color: @kibanaGray1;
}
.list-group-item {
padding: 8px 15px;
ul {
padding: 0;
display: flex;
flex-direction: row;
.finder-type {
margin-right: 10px;
}
}
a {
i {
color: @saved-object-finder-icon-color ;
margin-right: 10px;
}
display: block;
color: @saved-object-finder-link-color ;
}
&:first-child {
.border-top-radius(0) !important;
}
&.list-group-no-results p {
margin-bottom: 0 ;
}
}
}
.finder-form {
position: relative;
}
.finder-form-options {
.flex-parent();
flex-direction: row;
justify-content: flex-end;
}
.finder-options {
max-height: 300px;
overflow: auto;
padding: 0;
.border-top-radius(0);
// replace the padding that was originally on the outer well
> * {
padding: @padding-base-vertical @padding-base-horizontal;
margin: 0;
}
// enable bigger backgrounds for "active" elements
> li {
margin-top: -ceil(@padding-base-vertical / 2);
&:first-child {
margin: 0;
}
&.active {
background-color: @component-active-bg;
color: @component-active-color;
a {
color: @component-active-color;
}
}
}
}
paginate {
paginate-controls {
margin: 20px;
}
}
}
// when rendered within a config dropdown, don't use a bottom margin
.config saved-object-finder .finder-options {
margin-bottom: 0;
background: @config-saved-object-finder-options-bg;
}
//== inputDatetime
.input-datetime-format {
font-size: @font-size-small;
color: @text-muted;
padding: @padding-base-vertical @padding-base-horizontal;
}
//== clicking disabled buttons should not cause the whole page to get selected
button[disabled] {
user-select: none;
}
//== override the disabled cursor that doesn't work everywhere
.form-control{
&[disabled],
&[readonly],
fieldset[disabled] & {
cursor: default;
opacity: .8;
}
}
.fatal-body {
white-space: pre-wrap;
}
.ng-dirty, .ng-touched {
input.ng-invalid&,
textarea.ng-invalid&,
select.ng-invalid& {
border-color: @state-danger-bg ;
}
}
input[type="radio"],
input[type="checkbox"],
.radio,
.radio-inline,
.checkbox,
.checkbox-inline {
&[disabled],
fieldset[disabled] & {
cursor: default;
opacity: .8;
}
}
textarea {
resize: vertical;
}
.field-collapse-toggle {
color: @field-collapse-toggle-color;
margin-left: 10px ;
}
style-compile {
display: none;
}
.tooltip-inner {
white-space: pre-wrap ;
}
@import '../filter_bar/filter_bar.less';
.cell-hover {
background-color: @table-cell-hover-bg;
}
.cell-hover-show {
// so that the cell doesn't change size on hover
visibility: hidden;
}
.cell-hover:hover {
background-color: @table-cell-hover-hover-bg;
cursor: cell;
.cell-hover-show {
visibility: visible;
}
}
mark, .mark {
background-color: @mark-bg;
}
fieldset {
margin: @form-group-margin-bottom;
padding: @form-group-margin-bottom;
border: 1px solid @input-border;
border-radius: @input-border-radius-base;
}
[fixed-scroll] {
overflow-x: auto;
padding-bottom: 0px;
+ .fixed-scroll-scroller {
position: fixed;
bottom: 0px;
overflow-x: auto;
overflow-y: hidden;
}
}
.list-group {
.list-group-item {
&.active,
&.active:hover,
&.active:focus {
background-color: @list-group-menu-item-active-bg;
cursor: default;
}
}
}
.panel-product {
margin-bottom: 10px;
.panel-heading {
background-color: @kibanaBlue3;
border-radius: 0;
color: @white;
font-size: 17px;
padding: 7px 10px;
}
.panel-heading--clickable {
cursor: pointer;
}
.panel-heading-elasticsearch,
.panel-heading-kibana,
.panel-heading-beats,
.panel-heading-logstash {
background-position: 4px 7px;
background-repeat: no-repeat;
background-size: 26px 26px;
padding-left: 32px;
}
.panel-heading-elasticsearch {
background-color: @product-elasticsearch;
background-image: url("~ui/icons/elasticsearch.svg");
}
.panel-heading-kibana {
background-color: @product-kibana;
background-image: url("~ui/icons/kibana.svg");
}
.panel-heading-beats {
background-color: @product-beats;
background-image: url("~ui/icons/beats.svg");
}
.panel-heading-logstash {
background-color: @product-logstash;
background-image: url("~ui/icons/logstash.svg");
}
.panel-body {
padding: 10px;
}
}
// TODO: Extract these styles into the UI Framework.
.page-row {
padding: 0 10px;
margin: 10px 0;
}
.page-row-text {
color: @kibanaGray2;
font-size: 14px;
}
.kuiVerticalRhythm {
& + & {
margin-top: 10px;
}
}
.kuiView {
background-color: #FFFFFF;
flex: 1 1 auto;
}
.kuiViewContent {
padding-top: 20px;
padding-bottom: 20px;
}
.kuiViewContent--constrainedWidth {
width: 100%;
max-width: 1100px;
margin-left: auto;
margin-right: auto;
}
.kuiViewContentItem {
padding-left: 20px;
padding-right: 20px;
}
.kuiNotice {
padding: 40px 60px 48px;
margin: 20px;
background-color: white;
}
.kuiNotice__header {
margin-bottom: 18px;
}
/**
* 1. Override h1 styles.
*/
.kuiNoticeTitle {
font-size: 22px;
margin-bottom: 12px;
margin-top: 0; // 1
}
.kuiNoticeText {
font-size: 14px;
margin-bottom: 12px;
}
.kuiCard {
display: flex;
flex-direction: column;
border: 1px solid #E0E0E0;
border-radius: 4px;
overflow: hidden;
}
.kuiCard__description {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding: 18px 0;
}
.kuiCard__descriptionTitle {
font-size: 14px;
font-weight: bold;
margin-bottom: 10px;
text-align: center;
max-width: ~"calc(100% - 48px)";
}
.kuiCard__descriptionText {
font-size: 14px;
max-width: ~"calc(100% - 48px)";
}
.kuiCard__footer {
text-align: center;
font-size: 14px;
padding: 0 15px 20px;
}
.kuiCard--fixedWidth {
max-width: 120px;
}
.kuiCardGroup {
display: flex;
border: 1px solid #E0E0E0;
border-radius: 4px;
overflow: hidden;
margin-bottom: 18px;
}
.kuiCardGroup__card {
flex: 1 1 0%;
border: none;
border-radius: 0;
& + & {
border-left: 1px solid #E0E0E0;
}
}
.kuiCardGroup__cardDescription {
flex: 1 1 auto;
}
/**
* 1. Override h1.
*/
.kuiTitle {
margin: 0; // 1
font-size: 22px;
}
.kuiBadge {
display: inline-block;
margin-left: 0.5em;
padding: 0.1em 0.7em;
vertical-align: middle;
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.kuiBadge--default {
background-color: rgba(0, 0, 0, 0.1);
}
.kuiFormSection {
margin-bottom: 16px;
}
.kuiFormSubSection {
margin-bottom: 8px;
}
.kuiFormLabel {
display: block;
margin-bottom: 5px;
font-weight: 700;
}
.kuiFormSubLabel {
display: block;
font-weight: normal;
}
.kuiFormSubLabel__note {
opacity: 0.5;
margin-left: 4px;
font-size: 12px;
}
.kuiTextArea,
.kuiStaticInput {
display: block;
width: 100%;
font-size: 14px;
color: #000000;
border: 1px solid;
border-radius: 4px;
}
.kuiStaticInput {
padding: 5px 0;
border-color: transparent;
background-color: transparent;;
}
.kuiTextArea {
padding: 5px 15px;
border-color: #D4D4D4;
}
.kuiTextArea--nonResizable {
resize: none;
}
.kuiInputNote {
margin: 5px 0 10px;
}
.kuiInputNote--danger {
color: #E74C3C;
}
.kuiInputNote--warning {
color: #F39C12;
}
/**
* 1. Override Bootstrap ui-select component styles. If side padding is > 5px, the component breaks.
*/
.ui-select-multiple.ui-select-bootstrap {
padding: 3px 5px 2px ; // 1
border: 1px solid #D4D4D4; // 1
background-color: #ffffff ; // 1
&.kuiInputError {
border-color: #E74C3C; // 1
}
}
/**
* 1. Override label styles.
*/
.kuiOptionLabel {
font-weight: normal; // 1
cursor: pointer;
}
.kuiFormPanel {
border: 1px solid #D4D4D4;
padding: 12px;
}
.kuiList {
margin-bottom: 10px;
}
.kuiListItem {
padding: 12px 0;
& + & {
border-top: 2px dashed rgba(212, 212, 212, 0.5);
}
&:first-child {
padding-top: 0;
}
&:last-child {
padding-bottom: 0;
}
}
/**
* Utility class.
* TODO: Move to UI Framework.
*/
.fullWidth {
width: 100% ;
}
/**
* Utility class.
* TODO: Move to UI Framework.
*/
.noPadding {
padding: 0 ;
}
/**
* TODO: This is a generic pattern that should be replaced by specific components, e.g. inputGroup.
*/
.flexGroup {
display: flex;
width: 100%;
}
.flexGroup__filler {
flex: 1 1 auto;
}
.kuiColumn + .kuiColumn {
padding-left: 10px;
}
/**
* 1. Use inline-block instead of flexbox so that content doesn't overflow.
* 2. Content can be aligned by offsetting from the top.
*/
// $numColumns: 12;
// @for $i from 1 through $numColumns {
// .kiuColumn--#{$i} {
// display: inline-block; /* 1 */
// vertical-align: top; /* 2 */
// width: $i / $numColumns * 100%;
// }
// }
.makeKuiColumns(12);
.makeKuiColumns(@n, @i: 1) when (@i =< @n) {
.kuiColumn--@{i} {
display: inline-block; /* 1 */
vertical-align: top; /* 2 */
width: (@i * 100% / @n);
}
.makeKuiColumns(@n, (@i + 1));
}
/**
* 1. Override Bootstrap styles.
*/
.kuiLocalDropdownCloseButton {
color: #000000 ; /* 1 */
.theme-dark & {
color: #cecece ; /* 1 */
}
}
// TODO: Extract these styles into the UI Framework.
.kuiFormSection {
margin-bottom: 16px;
}
.kuiFormLabel {
display: block;
}
.kuiFormSubLabel {
display: block;
font-weight: normal;
}
.kuiTextArea,
.kuiInput,
.kuiStaticInput {
display: block;
width: 100%;
font-size: 14px;
color: #000000;
border: 1px solid;
border-radius: 4px;
}
.kuiStaticInput {
padding: 5px 0;
border-color: transparent;
}
.kuiInput,
.kuiTextArea {
padding: 5px 15px;
border-color: #D4D4D4;
}
.kuiSelect {
display: block;
width: 100%;
height: 32px;
padding: 5px 15px;
font-size: 14px;
line-height: 1.42857143;
color: #000000;
background-color: #ffffff;
background-image: none;
border: 1px solid #D4D4D4;
border-radius: 4px;
}
/**
* 1. Override Bootstrap checkbox styles.
*/
.kuiCheckBox {
margin: 0 ; // 1
}
.kuiSideBarSelect {
// TODO: @include kuiSelect styles when this is moved to the UI Framework and we're using SASS.
height: 24px;
font-size: 12px;
padding: 0 15px;
}
.kuiSideBarInput {
// TODO: @include kuiInput styles when this is moved to the UI Framework and we're using SASS.
height: 24px;
font-size: 12px;
}
.kuiSideBarSection {
margin-bottom: 6px;
}
.kuiSideBarSectionTitle {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 6px;
border-bottom: 1px solid #D4D4D4;
}
.kuiSideBarSectionTitle__text {
font-size: 14px;
font-weight: 700;
color: #5A5A5A;
}
/**
* 1. Override Bootstrap button styles.
*/
.kuiSideBarSectionTitle__action {
background-color: transparent; // 1
padding: 0; // 1
cursor: pointer;
color: #328CAA;
&:hover {
color: #105A73;
}
}
.kuiSideBarCollapsibleTitle {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
margin-bottom: 4px;
border-bottom: 1px solid #E8E8E8;
}
.kuiSideBarCollapsibleTitle__label {
display: flex;
align-items: center;
}
/**
* 1. Override FontAwesome .fa styles.
*/
.kuiSideBarCollapsibleTitle__caret {
width: 12px;
height: 12px;
font-size: 12px ; // 1
font-weight: 700;
color: #5A5A5A;
}
.kuiSideBarCollapsibleTitle__text {
font-size: 12px;
font-weight: 700;
color: #5A5A5A;
}
/**
* 1. Override Bootstrap button styles.
*/
.kuiSideBarCollapsibleTitle__action {
background-color: transparent; // 1
padding: 0; // 1
cursor: pointer;
color: #328CAA;
&:hover {
color: #105A73;
}
}
.kuiSideBarCollapsibleSection {
padding-left: 16px;
}
/**
* 1. Override Bootstrap h1 styles.
*/
.kuiSideBarFormSectionTitle {
font-size: 12px;
font-weight: 700;
color: #5A5A5A;
border-bottom: 1px solid #E8E8E8;
margin: 4px 0 ; // 1
padding-bottom: 2px;
}
.kuiSideBarFormRow {
display: flex;
align-items: center;
min-height: 24px;
margin-bottom: 1px;
}
/**
* 1. Override .vis-editor-sidebar styles.
*/
.kuiSideBarFormRow__label {
display: flex;
align-items: center;
flex: 1 1 40% ; // 1
font-weight: 400;
}
.kuiSideBarFormRow__label__colorbox {
width: 24px;
height: 24px;
display: inline-block;
margin-right: 10px;
border: 1px ridge lightgray;
}
.kuiSideBarFormRow__control {
display: flex;
align-items: center;
flex: 1 1 60%;
}
/**
* 1. Override .sidebar-item styles.
*/
.kuiSideBarOptionsLink {
display: flex;
align-items: baseline;
margin-bottom: 8px;
font-size: 12px;
color: #328CAA ; // 1
&:hover {
color: #105A73 ; // 1
}
}
.kuiSideBarOptionsLink__caret {
width: 10px;
height: 10px;
}
.kuiSideBarOptionsLink__text {
margin-left: 2px;
}
@import "~dragula/dist/dragula.css";