box border collapse on nested cells

This commit is contained in:
2023-02-02 11:16:50 +01:00
parent b09863b98f
commit cb9dc89ef6

View File

@@ -94,7 +94,7 @@ function subRpo(val,kz,i) {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} }
.m-2 { .m-2 {
margin: .5rem!important; margin: 0rem!important;
} }
.mx-2 { .mx-2 {
margin-right: .5rem!important; margin-right: .5rem!important;
@@ -113,10 +113,20 @@ function subRpo(val,kz,i) {
} }
.key { .key {
background: lightgray; background: lightgray;
box-shadow:
2px 0 0 0 #888,
0 2px 0 0 #888,
2px 2px 0 0 #888, /* Just to fix the corner */
2px 0 0 0 #888 inset,
0 2px 0 0 #888 inset;
} }
.table-main .row-data { .table-main .row-data {
border: 2px solid grey; box-shadow:
border-radius: 2px; 2px 0 0 0 #000,
0 2px 0 0 #000,
2px 2px 0 0 #000, /* Just to fix the corner */
2px 0 0 0 #000 inset,
0 2px 0 0 #000 inset;
} }
</style> </style>