Files
zulip/static/styles/widgets.scss
Steve Howell 1b57e568ff Add "zform" functionality to the web client.
A "zform" knows how to render data that follows our
schema for widget messages with form elements like
buttons and choices.

This code won't be triggered until a subsequent
server-side commit takes widget_content from
API callers such as the trivial chat bot and
creates submessages for us.
2018-05-24 09:30:22 -07:00

18 lines
223 B
SCSS

.widget-choices ul {
padding: 3px;
}
.widget-choices li {
padding: 2px;
list-style: none;
}
.widget-choices button {
font-weight: 700;
color: blue;
}
.widget-choices-heading {
font-weight: 600;
}