Miguel Carrillo
Posts: 0
Joined: Mon Sep 29, 2014 7:46 pm

How can I make rounded corners on grid?

I need to make the border of this grid rounded to fit my app theme. I'm trying with this css class but It doesn't works, what I need is a rounded border or corners on that grid and show them in the same color that the grid background.

.roundbox {
border-collapse: separate !important;
border: 10px #f4f4f4 solid !important;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}

This is how appears in the app:
http://gyazo.com/fdc4aca6cdeab43b0d1c...

This is how is build:
http://gyazo.com/86d99ff1fc80b1efa77a...

Yurii Orishchuk
Posts: 0
Joined: Fri Feb 14, 2014 8:20 am

How can I make rounded corners on grid?

Hi Miguel,

Please use following CSS code:

pre

.roundbox {
border: solid #ccc 1px;
border-radius: 25px;
background: #eee;
overflow: hidden;
}

/pre

Also don't forget to add "roundbox" class to your table.component.

Regards.

Return to “Issues”