Marked as work-in-progress (WIP). The content of this post may be unreliable or incomplete. Please check back later.
Open comments page
How to make your web app installable.
trueStart by styling the default appearance of elements, such as buttons and input fields, to set a consistent base for any additional customization.
default-skin.css
.wg-body {
button:not(.skin){
background: #979797;
color: white;
border:0;
padding: 0.3rem 1rem;
}
dialog button:not(.skin){
background: #e4e4e4;
color: #272727;
border:0;
padding: 0.3rem 1rem;
}
}
For every button that will be customized later, add the skin
class. This allows the button to use the default styling unless a custom skin is specified.
<button data-onclick="add-activity" class="wg-btn-new-activity skin">
<span class="icon-mate-o">add</span>
</button>
https://www.blogger.com/comment/fullpage/post/8166404610182826392/2006482956518953115
true