X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=ui%2Fweb%2Fsrc%2Fcomponents%2Fcharging-stations%2FCSTable.vue;h=3d9efbbf2471cb1239f3e64c51262923f8d45021;hb=a64b9a64f0cb3b2b9b07ec38ec4001dcc7024a60;hp=30f469d99ebc3ab24cec71de311187b24f14f2cd;hpb=9d76f5ec92a3f5865ef2cefd5a253cab3aa2e5fe;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 30f469d9..3d9efbbf 100644 --- a/ui/web/src/components/charging-stations/CSTable.vue +++ b/ui/web/src/components/charging-stations/CSTable.vue @@ -5,10 +5,6 @@ - Action - Connector - Status - Transaction Name Started Supervision Url @@ -17,7 +13,9 @@ Template Vendor Model - Firmware Version + Firmware + Actions + Connector(s) @@ -61,11 +59,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; @@ -80,16 +76,22 @@ const props = defineProps<{ } #cs-table__head .cs-table__row { - background-color: rgb(194, 188, 188); + background-color: lightgrey; } .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(65% / 10); + text-align: center; +} + +.cs-table__connectors-column { + height: fit-content; + width: 35%; text-align: center; }