Admin.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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-table-actions .badge {
  34. margin-left: 0.5rem;
  35. }
  36. #vom-results-filters h6 {
  37. color: #6c757d;
  38. font-weight: 700;
  39. text-transform: uppercase;
  40. font-size: 0.9rem;
  41. margin-bottom: 0.1rem;
  42. }
  43. #vom-results-filters h4 {
  44. display: flex;
  45. justify-content: space-between;
  46. }
  47. .vom-filter-group {
  48. display: grid;
  49. grid-template-columns: 1fr 1fr;
  50. row-gap: 5px;
  51. margin-bottom: 0;
  52. }
  53. #vom-filter-actions button {
  54. margin-left: 10px;
  55. }
  56. .vom-results-data {
  57. display: flex;
  58. }
  59. .vom-results-data p {
  60. padding-right: 1rem;
  61. }
  62. .vom-table-results thead {
  63. text-transform: capitalize;
  64. }
  65. .vom-table-results tr {
  66. cursor: pointer;
  67. }
  68. .vom-table-results tr.main-row {
  69. border-top: 2px solid #a0a2a5;
  70. }
  71. .vom-table-results tr.data-focused,
  72. #vom-results-table tr.data-focused {
  73. background-color: #17a2b845 !important;
  74. }
  75. .vom-table-results tr.data-focused th,
  76. .vom-table-results tr.data-focused td {
  77. border: 1px solid #a0a2a5;
  78. }
  79. .vom-filter-switch-group {
  80. display: flex;
  81. justify-content: space-between;
  82. }
  83. .vom-filter-switch {
  84. width: 25%;
  85. }
  86. .vom-selected-data {
  87. margin-top: 1rem;
  88. display: flex;
  89. }
  90. .vom-wordcloud-repetition {
  91. width: 50%;
  92. margin-right: 1rem;
  93. }
  94. .vom-selected-table {
  95. width: 50%;
  96. }