Versions Compared

Key

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

Adjust snippets for your case and copy modified css snippet to:

  • Global Stylesheet under Administration → Administration → Look and Feel → Space Feel → Stylesheet
  • Space Stylesheet under Space Tools → Space Stylesheet

...

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 a unicode shining star.

Code Block
languagecss
.content-rating-icon.fas.fa-thumbs-up:before {  
    font-family: "Arial" !important;  
    content: "\1F31F" !important;
} 
HTML
<style>
.content-rating-icon.fas.fa-thumbs-up:before {  
    font-family:  "Arial"  !important; 
    content: "\1F31F" !important;
} 
</style>