| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /* ========================================================================
- 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: block;
- width: 150%;
- height: 250px;
- .legend {
- >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;
- }
- // .w-400{
- // // width: 300px;
- // margin: -5px;
- // // height: 200px;
- // }
- // .w-401{
- // margin-right: -50px;
- // }
|