Admin.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. .App.Admin {
  2. background-color: white;
  3. color: black;
  4. }
  5. .App.Admin .container-fluid {
  6. background-color: white;
  7. }
  8. .vom-canvii {
  9. display: flex;
  10. align-items: flex-start;
  11. }
  12. .vom-admin-canvas-container {
  13. width: 40%!important;
  14. position: relative;
  15. }
  16. #vom-admin-canvas {
  17. justify-self: center;
  18. grid-area: vom-admin-canvas;
  19. border: 1px solid rgba(0, 0, 0, 0.1);
  20. }
  21. #vom-results-panel {
  22. width: 100%;
  23. }
  24. #vom-results {
  25. overflow-x: scroll;
  26. width: 100%;
  27. margin-left: 1rem;
  28. }
  29. #vom-results-table {
  30. width: 100%;
  31. overflow-y: scroll;
  32. }
  33. #vom-results-filters h6 {
  34. color: #6c757d;
  35. font-weight: 700;
  36. text-transform: uppercase;
  37. font-size: 0.9rem;
  38. margin-bottom: 0.1rem;
  39. }
  40. #vom-results-filters h4 {
  41. display: flex;
  42. justify-content: space-between;
  43. }
  44. .vom-filter-group {
  45. display: grid;
  46. grid-template-columns: 1fr 1fr;
  47. row-gap: 5px;
  48. margin-bottom: 0;
  49. }
  50. #vom-filter-actions button {
  51. margin-left: 10px;
  52. }
  53. .vom-results-data {
  54. display: flex;
  55. }
  56. .vom-results-data p {
  57. padding-right: 1rem;
  58. }
  59. .vom-table-results thead {
  60. text-transform: capitalize;
  61. }
  62. .vom-table-results tr {
  63. cursor: pointer;
  64. }
  65. .vom-table-results tr.main-row {
  66. border-top: 2px solid #a0a2a5;
  67. }
  68. .vom-table-results tr.data-focused,
  69. #vom-results-table tr.data-focused {
  70. background-color: #17a2b845 !important;
  71. }
  72. .vom-table-results tr.data-focused th,
  73. .vom-table-results tr.data-focused td {
  74. border: 1px solid #a0a2a5;
  75. }
  76. .vom-filter-switch-group {
  77. display: flex;
  78. justify-content: space-between;
  79. }
  80. .vom-filter-switch {
  81. width: 25%;
  82. }
  83. .vom-selected-data {
  84. padding-left: 1rem;
  85. }