@bigfishtv/cockpit
Version:
114 lines (82 loc) • 1.22 kB
text/less
// Z-Index
@z-index-xlarge: 10000;
@z-index-large: 1000;
@z-index-medium: 100;
@z-index-small: 10;
@z-index-xsmall: 1;
/*
* Tree
*/
.tree-overlay {
z-index: @z-index-small;
}
/*
* Template
*/
.sidebar {
z-index: @z-index-small * 2;
}
.header {
z-index: @z-index-small * 3;
}
.bulkhead {
z-index: @z-index-small * 3;
}
/*
* Modal
*/
.modal {
z-index: @z-index-large * 4;
}
.modal-background {
z-index: @z-index-large * 3.5;
}
.modal-inner {
z-index: @z-index-large * 3;
&:last-of-type {
z-index: @z-index-large * 4;
}
}
/*
* Redactor
*/
.redactor-editor,
.redactor-box,
.redactor-box textarea {
z-index: auto;
}
.redactor-link-tooltip {
z-index: @z-index-large * 9;
}
.redactor-box-fullscreen {
z-index: @z-index-large + 10;
}
.redactor-toolbar {
z-index: @z-index-medium;
}
.redactor-air {
z-index: @z-index-large * 6;
}
.redactor-dropdown {
z-index: @z-index-large * 6;
}
#redactor-modal-overlay,
#redactor-modal-box,
#redactor-modal {
z-index: @z-index-large * 8;
}
#redactor-progress {
z-index: @z-index-xlarge * 2;
}
/*
* Dropdown
*/
.dropdown-menu {
z-index: @z-index-xlarge;
}
/*
* Flash message
*/
.flash-message {
z-index: @z-index-xlarge * 4;
}