Grey line with collections

Hello
How to remove grey line come with collections please. I cant remove it with CSS:(

Screenshot 2024-09-08 081742

What components are you using? Data Grid or New Table?

Thank you @Himaladin
I solved right now :slight_smile:
with this code…btw the line come with table and list data
.liMoYR {
border-color: white
}

You should not use this selector “.liMoYR”. It is unstable because it is automatically generated by the browser.
Use the class name newTable and the following code:

.newTable table > tbody > tr {
border-color: white;
}

or

.newTable table > tbody > tr {
border: none;
}
3 Likes

Thank you!

1 Like

is there a code to remove the custom collection border containing a switch?

Looks like you’ve got it covered ….

Strange… Then why does it show up here? :thinking:

Can you show your code?

that’s the stranger part. I’m not using a code for either of those custom collections so I don’t know why the borders behave differently.

Maybe it’s a problem on my computer, 3x freeze. I’ll check again after it’s normal.

I don’t think it’s a problem on your computer. I double-checked what you’re seeing and I see it too. On the home tab, the border is invisible but on the Gallery tab the border is visible.

It seems that now you don’t need css anymore if you choose background none in the custom collection configuration. This is the cause of your strangeness.

1 Like

oh, that’s great! A result of today’s maintenance?

1 Like

I’m not sure what the previous situation was.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.