Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How can I change the +/- icon to up and down arrow #73

Open
ravikajain opened this issue Oct 13, 2016 · 1 comment
Open

How can I change the +/- icon to up and down arrow #73

ravikajain opened this issue Oct 13, 2016 · 1 comment

Comments

@ravikajain
Copy link

Please suggest me. How can I change the +/- icon to up and down arrow in header

@AnirudhaGohokar
Copy link

You can add icons

vAccordion--default v-pane-header::after ,vAccordion--default v-pane-header::before{
    content:''; /*reset the content*/
    top: 35%;/*adjust the position of background image*/
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: inherit !important; /* remove any default colors*/
    right: auto;
    height: 20px;/*set height of image*/
    width: 20px;/*set width of image*/
    left: 10px; /*adjust the left alignment*/
}

/* set the collapse icon*/
vAccordion--default v-pane-header::after {
    background-image:url('../images/collapse.png');
}

/* set the expand icon*/
v-pane.is-expanded v-pane-header::before{
    background-image:url('../images/expand.png');
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants