This commit is contained in:
@ -140,12 +140,28 @@ tr:hover:not(.selected) {
|
||||
|
||||
|
||||
#nutrition-input-table {
|
||||
width: 100%; /* Tabelle nimmt die volle Breite ein */
|
||||
border-collapse: separate; /* Entfernt doppelte Ränder */
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
border-collapse: separate; /* Erlaubt die Anwendung von border-radius */
|
||||
border-spacing: 0; /* Entfernt den Abstand zwischen den Zellen */
|
||||
}
|
||||
|
||||
#nutrition-input-table th:first-child {
|
||||
border-top-left-radius: 10px;
|
||||
}
|
||||
|
||||
#nutrition-input-table th:last-child {
|
||||
border-top-right-radius: 10px;
|
||||
}
|
||||
|
||||
#nutrition-input-table tr:last-child td:first-child {
|
||||
border-bottom-left-radius: 10px;
|
||||
}
|
||||
|
||||
#nutrition-input-table tr:last-child td:last-child {
|
||||
border-bottom-right-radius: 10px;
|
||||
}
|
||||
|
||||
|
||||
#nutrition-input-table th, #nutrition-input-table td {
|
||||
border: 1px solid #ddd; /* Fügt Ränder hinzu */
|
||||
padding: 8px; /* Fügt Innenabstand hinzu */
|
||||
|
Reference in New Issue
Block a user