Admin.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .App.Admin {
  2. background-color: white;
  3. color: black;
  4. }
  5. .App.Admin .container-fluid {
  6. background-color: white;
  7. }
  8. #vom-results {
  9. display: grid;
  10. grid-template-columns: 2fr 1fr;
  11. gap: 1rem 1rem;
  12. grid-template-areas: "vom-admin-canvas vom-results-panel"
  13. "vom-results-table vom-results-table";
  14. }
  15. #vom-admin-canvas {
  16. grid-area: vom-admin-canvas;
  17. border: 1px solid rgba(0, 0, 0, 0.1);
  18. }
  19. #vom-results-panel {
  20. grid-area: vom-results-panel;
  21. }
  22. #vom-results-table {
  23. grid-area: vom-results-table;
  24. }
  25. #vom-results-filters h6 {
  26. color: #6c757d;
  27. font-weight: 700;
  28. text-transform: uppercase;
  29. font-size: 0.9rem;
  30. margin-bottom: 0.1rem;
  31. }
  32. #vom-results-filters h4 {
  33. display: flex;
  34. justify-content: space-between;
  35. }
  36. .vom-filter-group {
  37. display: grid;
  38. grid-template-columns: 1fr 1fr;
  39. row-gap: 5px;
  40. margin-bottom: 0;
  41. }
  42. #vom-filter-actions button {
  43. margin-left: 10px;
  44. }
  45. .vom-results-data {
  46. display: flex;
  47. }
  48. .vom-results-data p {
  49. padding-right: 1rem;
  50. }
  51. .vom-table-results thead {
  52. text-transform: capitalize;
  53. }
  54. .vom-table-results tr {
  55. cursor: pointer;
  56. }
  57. .vom-table-results tr.main-row {
  58. border-top: 2px solid #a0a2a5;
  59. }
  60. .vom-table-results tr.data-focused {
  61. background-color: #17a2b845 !important;
  62. }
  63. .vom-table-results tr.data-focused th,
  64. .vom-table-results tr.data-focused td {
  65. border: 1px solid #a0a2a5;
  66. }