app.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. Over all style
  3. */
  4. text {
  5. font: 12px sans-serif;
  6. }
  7. text.small {
  8. font: 8px sans-serif;
  9. }
  10. html, body
  11. {
  12. margin: 0px;
  13. padding: 0px;
  14. height: 100%;
  15. width: 100%;
  16. }
  17. /*
  18. queue's style (left banner of queues)
  19. */
  20. text.queue {
  21. font-family : sans-serif;
  22. font-size : 15px;
  23. fill : gray;
  24. }
  25. path.queue {
  26. stroke: gray;
  27. fill: none;
  28. }
  29. circle.queue {
  30. r: 10;
  31. fill: Steelblue;
  32. }
  33. /*
  34. background style
  35. */
  36. line.grid {
  37. stroke: WhiteSmoke;
  38. }
  39. line.chart {
  40. stroke: Gray;
  41. }
  42. /*
  43. charts styles
  44. */
  45. text.chart-title {
  46. font-size: 30px;
  47. font-family: sans-serif;
  48. text-anchor: middle;
  49. fill: Gray;
  50. }
  51. text.donut-highlight-text {
  52. font-size: 20px;
  53. font-family: sans-serif;
  54. text-anchor: middle;
  55. fill: Gray;
  56. vertical-align: middle;
  57. }
  58. rect.chart-frame {
  59. fill: none;
  60. stroke: gray;
  61. stroke-dasharray: 10,10;
  62. }
  63. line.chart-leftbanner {
  64. stroke-width: 2;
  65. stroke: gray;
  66. stroke-dasharray: 10,10;
  67. }
  68. text.bar-chart-text {
  69. font-size: 8px;
  70. font-family: sans-serif;
  71. vertical-align: middle;
  72. fill: Gray;;
  73. }
  74. div.tooltip {
  75. position: absolute;
  76. text-align: center;
  77. /*height: 28px;*/
  78. padding: 2px;
  79. font: 12px sans-serif;
  80. background: lightsteelblue;
  81. border: 0px;
  82. border-radius: 8px;
  83. pointer-events: none;
  84. }
  85. /*
  86. * Data table
  87. */
  88. table.dataTable thead .sorting {
  89. background-image: url("/assets/images/datatables/sort_both.png");
  90. }
  91. table.dataTable thead .sorting_asc {
  92. background-image: url("/assets/images/datatables/sort_asc.png");
  93. }
  94. table.dataTable thead .sorting_desc {
  95. background-image: url("/assets/images/datatables/sort_desc.png");
  96. }
  97. table.dataTable thead .sorting_asc_disabled {
  98. background-image: url("/assets/images/datatables/sort_asc_disabled.png");
  99. }
  100. table.dataTable thead .sorting_desc_disabled {
  101. background-image: url("/assets/images/datatables/sort_desc_disabled.png");
  102. }
  103. /*
  104. * Queue selector
  105. */
  106. .node {
  107. cursor: pointer;
  108. }
  109. .node circle {
  110. fill: #fff;
  111. stroke: steelblue;
  112. stroke-width: 3px;
  113. }
  114. .node text {
  115. font: 12px sans-serif;
  116. }
  117. .link {
  118. fill: none;
  119. stroke: #ccc;
  120. stroke-width: 2px;
  121. }