Question

Does anyone know what css is needed to change the border color, width and radius of a WebOS Mojo palm-group?

Was it helpful?

Solution

for labeled group

.palm-group {
    background-color: white;
    -webkit-border-radius: 20px;                                         
    border-width: 40px 18px 18px 18px;                              
    -webkit-border-image: url(../images/palm-group.png) 40 18 18 18;
    }

for unlabeled groups :

.palm-group.unlabeled {
border-width: 18px 18px 18px 18px;
-webkit-border-image: url(../images/palm-group-unlabeled.png) 18 18 18 18;
}

I hope this helps someone.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top