| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 | /* ========================================================================     Component: chart-flot ======================================================================== */ .flot-chart-delegasi {    display: block;    width: 150%;    height: 250px;    .legend {        >table tr td {            padding: 3px;            display: none;        }        >table tr td:first-child {            padding-left: 3px;            display: none;        }        >table tr td:last-child {            padding-right: 3px;            display: none;        }        >table tr+tr td {            padding-top: 0;        }        >div:first-child {            border-color: rgba(0, 0, 0, .1) !important;        }        .legendColorBox>div,        .legendColorBox>div>div {            border-radius: 400px;        }    }}.flot-chart {    // display: inline-block;   height: 150px;   width: 300px;   margin-right: -70px;    // font-size: 15px;    .legend {        font-size: 13px;        >table tr td {            padding: 3px;        }        >table tr td:first-child {            padding-left: 3px;        }        >table tr td:last-child {            padding-right: 3px;        }        >table tr+tr td {            padding-top: 0;        }        >div:first-child {            border-color: rgba(0, 0, 0, .1) !important;        }        .legendColorBox>div,        .legendColorBox>div>div {            // border-radius: 400px;        }    }}.flot-chart-content {    width: 100%;    height: 100%;}// Labels for PIE CHARTS.flot-pie-label {    padding: 3px 5px;    font-size: 10px;    text-align: center;    color: #fff;}.flot-base {    max-width: 100% !important;}// Tooltip style// --------------------------------------#flotTip {    position: relative;    padding: 5px;    font-size: 12px !important;    border-radius: 2px !important;    border-color: transparent !important;    background-color: rgba(0, 0, 0, .75) !important;    color: #f1f1f1;    z-index: 5;}
 |