Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mathiasmoeller
Last active June 26, 2018 10:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mathiasmoeller/943a5259cdf71779aae02b30a62bc6f3 to your computer and use it in GitHub Desktop.
Save mathiasmoeller/943a5259cdf71779aae02b30a62bc6f3 to your computer and use it in GitHub Desktop.
How to customize the Feed Widget
<style stomt-widget>
/* customize wish/like bubble color */
/* NOTE: please adjust the font color when changing the background-color */
.stomt-create-bubble--wish {
background-color: blue !important;
border-color: blue !important;
color: white !important;
}
.stomt-create-bubble--like {
background-color: green !important;
border-color: green !important;
color: white !important;
}
/* customize target bubble */
/* NOTE: please adjust the font color when changing the background-color */
.stomt-create-target-bubble {
background-color: darkgray !important;
border-color: darkgray !important;
color: white !important;
}
/* customize widget background color*/
/* NOTE: when changing the background color you might have to adjust header and footer colors*/
.stomtApp body {
background: white !important;
}
.widget-footer {
background: white !important;
}
/* customize footer color */
.widget-footer a {
color: black !important;
}
/* customize submit button color */
/* NOTE: please adjust the font color when changing the background-color */
.stomt-form-submit {
background-color: green !important;
color: white !important;
}
.stomt-form-submit--disabled {
background-color: darkgray !important;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment