Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecss
.content-rating.content-rating-toggle {  
    text-align: left;  
} 


Change icon

It is not possible to add other icons to the app, but you may upload your icon font somewhere else and then use CSS to replace the icons.

In the example the FontAwesome "thumbs-up" is replaced with the star from Atlassian icons:

Code Block
languagecss
.content-rating-icon.fas.fa-thumbs-up {  
    font-family: var(--aui-icon-font) !important; 
    content: "\f1aa" !important;
}