문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top