/**
 *  millepondo redmine extensions (MRE) - plugins_combined.css
 *  @files: [plugin:mre_base_extensions]mre_be.css, [plugin:mre_base_extensions]mre_be_4_1.css
 *  @build: 2021-03-29 07:29:36
 */

/**
 *  [plugin:mre_base_extensions]mre_be.css
 */
/* fix for buggy-default-css */
.nodata, .warning,
p.nodata, p.warning {
    min-height: auto;
    padding: 6px;
}

.formatted-text{
    white-space: pre-wrap;
}

/* basic text-colors */
.clr-red{
    color: #E23F36 !important;
}
.clr-brown{
    color: #A76C32 !important;
}
.clr-blue{
    color: #2A3F70 !important;
}
.clr-green{
    color: #288628 !important;
}
.clr-yellow{
    color: #E1DF43 !important;
}
.clr-white{
    color: #ffffff !important;
}
.clr-black{
    color: #000000 !important;
}
.clr-grey{
    color: #c4c4c4 !important;
}

/* basic background-colors */
.bg-red{
    background-color: #E23F36 !important;
}
.bg-brown{
    background-color: #A76C32 !important;
}
.bg-blue{
    background-color: #2A3F70 !important;
}
.bg-green{
    background-color: #288628 !important;
}
.bg-yellow{
    background-color: #E1DF43 !important;
}
.bg-white{
    background-color: #ffffff !important;
}
.bg-black{
    background-color: #000000 !important;
}
.bg-grey{
    background-color: #c4c4c4 !important;
}

/* additional icons */
.icon.icon-external {
    background-image: url(/images/external.png);
}

.icon.icon-reorder {
    background-image: url(/plugin_assets/mre_base_extensions/images/drag_reorder.png);
}

.icon.icon-info {
    background-image: url(/plugin_assets/mre_base_extensions/images/info.png);
    cursor: help;
}

.icon.icon-page {
    background-image: url(/plugin_assets/mre_base_extensions/images/page_white.png);
}

.icon.icon-page-code {
    background-image: url(/plugin_assets/mre_base_extensions/images/page_white_code.png);
}

.icon.icon-page-key {
    background-image: url(/plugin_assets/mre_base_extensions/images/page_white_key.png);
}

.icon.icon-page-lightning {
    background-image: url(/plugin_assets/mre_base_extensions/images/page_white_lightning.png);
}

.icon.icon-page-link {
    background-image: url(/plugin_assets/mre_base_extensions/images/page_white_link.png);
}

.icon.icon-page-magnify {
    background-image: url(/plugin_assets/mre_base_extensions/images/page_white_magnify.png);
}

.icon.icon-page-pdf {
    background-image: url(/plugin_assets/mre_base_extensions/images/page_white_pdf.png);
}

.icon.icon-page-ruby {
    background-image: url(/plugin_assets/mre_base_extensions/images/page_white_ruby.png);
}

.icon.icon-page-stack {
    background-image: url(/plugin_assets/mre_base_extensions/images/page_white_stack.png);
}

.icon.icon-loading{
    background-image: url(/images/loading.gif);
}

/* loading info container style */
.loading-info{
    background-image: url(/images/loading.gif);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    margin: 0 auto;
    top: calc(50% - 16px/2);
    left: calc(50% - 16px/2);
    position: absolute;
}

/* autocomplete locked field - shows locked symbol + greyscale */
input.autocomplete.locked{
    cursor: pointer;
    color: #888;
    background: #fff url(/images/locked.png) no-repeat 2px 50%;
}

/* SPECIALS FOR MRE plugin */
.mre-plugin-line.mre-plugin-disabled .name,
.mre-plugin-line.mre-plugin-disabled .version {
    font-style: italic;
    color: #B2B0B2;
}

.overflow-container {
    overflow: auto;
    position: relative;
}

/* non tabular labels */
.tabular label.non_tabular {
    font-weight: bold;
    float: none;
    text-align: left;
    margin: 0;
    width: auto;
}

.tabular label.non_tabular_plain {
    font-weight: normal;
    float: none;
    text-align: left;
    margin: 0;
    width: auto;
}

/* fix for no centered value texts*/
.tabular p span.value{
    display: inline-block;
}

/* additional table-sets */
table.no-border {
    border: 0 !important;
}

table.fixed {
    table-layout: fixed;
}

table.size-full {
    width: 100%;
}

table.left-aligned td,
table.left-aligned th {
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
}

table.center-aligned td,
table.center-aligned th {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}

table.right-aligned td,
table.right-aligned th {
    text-align: right;
    padding-left: 5px;
    padding-right: 5px;
}

table.top-aligned td,
table.top-aligned th {
    vertical-align: top;
}

table.bottom-aligned td,
table.bottom-aligned th {
    vertical-align: bottom;
}

table.middle-aligned td,
table.middle-aligned th {
    vertical-align: middle;
}

table td.left,
table th.left {
    text-align: left;
}

table td.center,
table th.center {
    text-align: center;
}

table td.right,
table th.right {
    text-align: right
}

table td.top,
table th.top {
    vertical-align: top;
}

table td.bottom,
table th.bottom {
    vertical-align: bottom;
}

table td.middle,
table th.middle {
    vertical-align: middle;
}

table td.space-right,
table th.space-right {
    padding-right: 20px;
}

table td.space-right-10,
table th.space-right-10 {
    padding-right: 10px;
}

table td.space-left,
table th.space-left {
    padding-left: 20px;
}

table td.space-left-10,
table th.space-left-10 {
    padding-left: 10px;
}

table td.col-1,
table th.col-1 {
    width: 100%;
}

table td.col-2,
table th.col-2 {
    width: 50%;
}

table td.col-3,
table th.col-3 {
    width: 33%;
}

table td.col-3-2,
table th.col-3-2 {
    width: 66%;
}

table td.col-4,
table th.col-4 {
    width: 25%;
}

table td.col-4-2,
table th.col-4-2 {
    width: 50%;
}

table td.col-4-3,
table th.col-4-3 {
    width: 75%;
}

table td.col-5,
table th.col-5 {
    width: 19.5%;
}

table td.col-5-4,
table th.col-5-4 {
    width: 80%;
}

table td.col-5-3,
table th.col-5-3 {
    width: 60%;
}

table td.col-5-2,
table th.col-5-2 {
    width: 40%;
}

table td.col-6,
table th.col-6 {
    width: 16%;
}

table td.col-7,
table th.col-7 {
    width: 14%;
}

table td.col-8,
table th.col-8 {
    width: 12.5%;
}

table td.col-fix-5,
table th.col-fix-5 {
    width: 5px;
}

table td.col-fix-10,
table th.col-fix-10 {
    width: 10px;
}

table td.col-fix-25,
table th.col-fix-25 {
    width: 25px;
}

table td.col-fix-30,
table th.col-fix-30 {
    width: 30px;
}

table td.col-fix-40,
table th.col-fix-40 {
    width: 40px;
}

table td.col-fix-50,
table th.col-fix-50 {
    width: 50px;
}

table td.col-fix-60,
table th.col-fix-60 {
    width: 60px;
}

table td.col-fix-70,
table th.col-fix-70 {
    width: 70px;
}

table td.col-fix-80,
table th.col-fix-80 {
    width: 80px;
}

table td.col-fix-100,
table th.col-fix-100 {
    width: 100px;
}

table td.col-fix-120,
table th.col-fix-120 {
    width: 120px;
}

table td.col-fix-150,
table th.col-fix-150 {
    width: 150px;
}

table td.col-fix-180,
table th.col-fix-180 {
    width: 180px;
}

table td.col-fix-200,
table th.col-fix-200 {
    width: 200px;
}

table td.col-fix-250,
table th.col-fix-250 {
    width: 250px;
}

table td.col-fix-300,
table th.col-fix-300 {
    width: 300px;
}

table td.col-fix-400,
table th.col-fix-400 {
    width: 400px;
}

table td.col-fix-500,
table th.col-fix-500 {
    width: 500px;
}

table th.no-content,
table td.no-content{
    overflow: hidden !important;
    white-space: nowrap;
    padding: 0 !important;
    font-size: 0 !important;
}

table td.col-fix,
table th.col-fix {
    overflow: hidden;
    white-space: nowrap;
}

table td.info,
table th.info{
    font-style: italic;
    color: #C7C7C7;
}

table.list td span.info,
table.list th span.info{
    font-style: italic;
    color: #C7C7C7;
}

table.list td span.note,
table.list th span.note{
    display: block;
    font-size: 0.9em;
}

/* additional table-color-sets */

table.list:not(.odd-even) tbody tr:nth-child(even) td.row-red,
table.list:not(.odd-even) tbody tr.row-red-light td {
    background-color: #fbe0e2;
    color: #333;
}

table.list:not(.odd-even) tbody tr:nth-child(odd) td.row-red,
table.list:not(.odd-even) tbody tr.row-red td {
    background-color: #f7c2c6;
    color: #333;
}

table.list th.row-red, .table-list-header.row-red {
    background-color: #f2949b;
}

table.list:not(.odd-even) tbody tr:nth-child(even) td.row-brown,
table.list:not(.odd-even) tbody tr.row-brown-light td {
    background-color: #FFDFC0;
    color: #333;
}

table.list:not(.odd-even) tbody tr:nth-child(odd) td.row-brown,
table.list:not(.odd-even) tbody tr.row-brown td {
    background-color: #D0975F;
    color: #333;
}

table.list:not(.odd-even) tbody tr:nth-child(odd) td.row-brown em,
table.list:not(.odd-even) tbody tr.row-brown td em {
    color: #f8f8f8;
}

table.list th.row-brown, .table-list-header.row-brown {
    background-color: #A76C32;
}


table.list:not(.odd-even) tbody tr:nth-child(even) td.row-blue,
table.list:not(.odd-even) tbody tr.row-blue-light td {
    background-color: #9BA9C7;
    color: #333;
}

table.list:not(.odd-even) tbody tr:nth-child(even) td.row-blue em,
table.list:not(.odd-even) tbody tr.row-blue-light td em {
    color: #333;
}

table.list:not(.odd-even) tbody tr:nth-child(odd) td.row-blue,
table.list:not(.odd-even) tbody tr.row-blue td {
    background-color: #475C8B;
    color: #f8f8f8;
}

table.list:not(.odd-even) tbody tr:nth-child(odd) td.row-blue em,
table.list:not(.odd-even) tbody tr.row-blue td em {
    color: #f8f8f8;
}

table.list th.row-blue, .table-list-header.row-blue {
    background-color: #2A3F70;
}

table.list:not(.odd-even) tbody tr:nth-child(even) td.row-green,
table.list:not(.odd-even) tbody tr.row-green-light td {
    background-color: #A7DDA7;
    color: #333;
}

table.list:not(.odd-even) tbody tr:nth-child(odd) td.row-green,
table.list:not(.odd-even) tbody tr.row-green td {
    background-color: #4CA74C;
    color: #f8f8f8;
}

table.list:not(.odd-even) tbody tr:nth-child(odd) td.row-green em,
table.list:not(.odd-even) tbody tr.row-green td em {
    color: #333;
}

table.list th.row-green, .table-list-header.row-green {
    background-color: #288628;
}

table.list:not(.odd-even) tbody tr:nth-child(even) td.row-yellow,
table.list:not(.odd-even) tbody tr.row-yellow-light td {
    background-color: #F7F6B3;
    color: #333;
}

table.list:not(.odd-even) tbody tr:nth-child(odd) td.row-yellow,
table.list:not(.odd-even) tbody tr.row-yellow td {
    background-color: #E6E564;
    color: #333;
}

table.list th.row-yellow, .table-list-header.row-yellow {
    background-color: #E1DF43;
}

/* additional input-sets */


.size-full {
    width: 95%;
}

.size-100{
    width: 100%;
}

.size-90{
    width: 90%;
}

.size-80{
    width: 80%;
}

.size-75{
    width: 75%;
}

.size-66{
    width: 66%;
}

.size-50,
.size-half{
    width: 50%;
}


.size-33{
    width: 33%;
}

.size-25{
    width: 25%;
}

.size-20{
    width: 20%;
}

.size-fixed-number{
    width: 50px;
}

.size-fixed-date{
    width: 130px;
}

.size-fixed-50{
    width: 50px;
}

.size-fixed-70{
    width: 70px;
}

.size-fixed-80{
    width: 80px;
}

.size-fixed-100{
    width: 100px;
}

.size-fixed-120{
    width: 120px;
}

.size-fixed-130{
    width: 130px;
}

.size-fixed-150{
    width: 150px;
}

.size-fixed-200{
    width: 200px;
}

.size-fixed-250{
    width: 250px;
}

.size-fixed-300{
    width: 300px;
}

.size-fixed-350{
    width: 350px;
}

.size-fixed-400{
    width: 400px;
}

.size-fixed-500{
    width: 500px;
}

/* additional splitcontent-sets */

.splitcontent-1 {
    width: 99%;
    float: left;
}

.splitcontent-2 {
    width: 49.5%;
    float: left;
}

.splitcontent-3 {
    width: 33%;
    float: left;
}

.splitcontent-3-2 {
    width: 66%;
    float: left;
}

.splitcontent-4 {
    width: 24.5%;
    float: left;
}

.splitcontent-4-3 {
    width: 75%;
    float: left;
}

.splitcontent-4-2 {
    width: 50%;
    float: left;
}

.splitcontent-4-1 {
    width: 25%;
    float: left;
}

.splitcontent-5 {
    width: 19.5%;
    float: left;
}

.splitcontent-5-4 {
    width: 80%;
    float: left;
}

.splitcontent-5-3 {
    width: 60%;
    float: left;
}

.splitcontent-5-2 {
    width: 40%;
    float: left;
}

.splitcontent-6 {
    width: 16%;
    float: left;
}

.splitcontent-6-5 {
    width: 83%;
    float: left;
}

.splitcontent-7 {
    width: 14%;
    float: left;
}

.splitcontent-7-6 {
    width: 85%;
    float: left;
}

.splitcontent-7-5 {
    width: 71%;
    float: left;
}

.splitcontent-8 {
    width: 12%;
    float: left;
}

.splitcontent-8-7 {
    width: 87%;
    float: left;
}

.splitcontent-8-6 {
    width: 75%;
    float: left;
}

.splitcontent-8-5 {
    width: 62.5%;
    float: left;
}

.splitcontent-right {
    float: right !important;
}

.splitcontent-left {
    float: left !important;
}

.splitcontent-content {
    margin: 0 10px;
    overflow: hidden;
}

.splitcontent-spacer {
    margin-bottom: 20px;
}

.splitcontent-spacer-med {
    margin-bottom: 10px;
}

.splitcontent-spacer-small {
    margin-bottom: 5px;
}

.splitcontent-static {
    position: absolute;
    width: 99%;
    overflow: hidden;
}

/* fix for broken icons in tabs */
.tabContainer .tabs ul > li > a span.icon {
    padding-bottom: 2px;
}

.hidden{
    display: none;
}
/**
 *  [plugin:mre_base_extensions]mre_be_4_1.css
 */
/* fix for no centered value texts*/
.tabular p span.value{
    display: inline-block;
    line-height: 24px;
}
