سؤال

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