X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Fsrc%2Fcomponents%2Fcharging-stations%2FCSTable.vue;h=49d576e51d0bb510b52c0741b87e165e9872cf95;hb=6dba76a51714e00deefea659141f7119d7f5263f;hp=3b500b405357efb1013e1b342f1a9bc7b7789759;hpb=7e649b037d3a7dee1f84eda8d59fa32e34760c67;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/src/components/charging-stations/CSTable.vue b/ui/web/src/components/charging-stations/CSTable.vue index 3b500b40..49d576e5 100644 --- a/ui/web/src/components/charging-stations/CSTable.vue +++ b/ui/web/src/components/charging-stations/CSTable.vue @@ -1,14 +1,10 @@ @@ -53,7 +50,6 @@ const props = defineProps<{ empty-cells: show; } -#cs-table__head, #cs-table__body { height: fit-content; width: 100%; @@ -61,11 +57,9 @@ const props = defineProps<{ flex-direction: column; } -#cs-table__body { - overflow: visible overlay; -} - #cs-table__caption { + color: white; + background-color: black; font-size: 1.5rem; font-weight: bold; padding: 0.5rem; @@ -75,21 +69,28 @@ const props = defineProps<{ height: fit-content; width: 100%; display: flex; + flex-direction: row; justify-content: center; align-items: center; -} - -#cs-table__head .cs-table__row { - background-color: rgb(194, 188, 188); + border: solid 0.5px black; } .cs-table__row:nth-of-type(even) { - background-color: rgb(223, 217, 217); + background-color: whitesmoke; } .cs-table__column { height: fit-content; - width: calc(100% / 13); + width: calc(60% / 10); text-align: center; } + +#cs-table__head .cs-table__row { + background-color: lightgrey; +} + +.cs-table__connectors-column { + height: fit-content; + width: 40%; +}