dashboard.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. .container {
  2. width: 100%;
  3. height: 100%;
  4. padding: 10px 2px;
  5. }
  6. .grid-stack.reporting-dashboard {
  7. width: 100%;
  8. height: 100%;
  9. }
  10. .grid-stack-item-content.reporting-dashboard {
  11. display: flex;
  12. flex-direction: column;
  13. justify-content: center;
  14. /*padding: 1em;*/
  15. color:#1e88e5;
  16. border-bottom: 3px solid #1e88e5;
  17. /*background-color: #fff;*/
  18. overflow-y: hidden !important;
  19. }
  20. /*Green*/
  21. .grid-stack-item-content.reporting-dashboard.green {
  22. color: #43a047;
  23. border-bottom: 3px solid #43a047;
  24. /*border: 1px solid #43a047;*/
  25. /*border-radius: 6px;*/
  26. /*background: #43a047*/
  27. }
  28. .grid-stack-item-content.reporting-dashboard.green > .widget-content > .row > .col-xs-12.col-md-12.col-lg-8.text-right > a {
  29. color: #43a047;
  30. font-size: 15pt;
  31. }
  32. /*Yellow*/
  33. .grid-stack-item-content.reporting-dashboard.yellow {
  34. color: #f9a825;
  35. border-bottom: 3px solid #f9a825;
  36. /*border: 1px solid #f9a825;*/
  37. /*border-radius: 6px;*/
  38. }
  39. .grid-stack-item-content.reporting-dashboard.yellow > .widget-content > .row > .col-xs-12.col-md-12.col-lg-8.text-right > a {
  40. color: #f9a825;
  41. font-size: 15pt;
  42. }
  43. /*Orange*/
  44. .grid-stack-item-content.reporting-dashboard.orange {
  45. color: #ef6c00;
  46. border-bottom: 3px solid #ef6c00;
  47. /*border: 1px solid #ef6c00;*/
  48. /*border-radius: 6px;*/
  49. }
  50. .grid-stack-item-content.reporting-dashboard.orange > .widget-content > .row > .col-xs-12.col-md-12.col-lg-8.text-right > a {
  51. color: #ef6c00;
  52. font-size: 15pt;
  53. }
  54. /*blue*/
  55. .grid-stack-item-content.reporting-dashboard.blue {
  56. color:#0288d1;
  57. border-bottom: 3px solid #0288d1;
  58. /*border: 1px solid #0288d1;*/
  59. /*border-radius: 6px;*/
  60. }
  61. .grid-stack-item-content.reporting-dashboard.blue > .widget-content > .row > .col-xs-12.col-md-12.col-lg-8.text-right > a {
  62. color: #0288d1;
  63. font-size: 15pt;
  64. }
  65. .grid-stack-item-content.reporting-dashboard > .widget-title {
  66. font-size: 12pt;
  67. font-weight: bold;
  68. margin: 0 !important;
  69. }
  70. .grid-stack-item-content.reporting-dashboard > .widget-content {
  71. flex-grow: 1;
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. }
  76. .widget.widget-loading {
  77. position: absolute;
  78. width: 100%;
  79. height: 100%;
  80. color : #000;
  81. }
  82. .grid-stack-item-content.reporting-dashboard > .widget-content > a {
  83. font-size: 24pt;
  84. font-weight: bold;
  85. color: #0288d1;
  86. }
  87. /*chart*/
  88. canvas {
  89. -moz-user-select: none;
  90. -webkit-user-select: none;
  91. -ms-user-select: none;
  92. }
  93. .chart-container {
  94. width: 85%;
  95. /*margin: 40px auto;*/
  96. }