MessageTemplate - Deprecate renderMessageTemplate(). Prefer renderTemplate() and...
[civicrm-core.git] / ext / greenwich / scss / _tweaks.scss
CommitLineData
a4c8614b
CW
1/* Fix some cms themes which add margin to lists */
2ul, ol {
3 margin-left: 0;
4 margin-right: 0;
5}
6
0e7a5135
CW
7/* Supports adding form-control class to the checkbox-inline class to achieve an outer border around the checkbox&label */
8.form-control.checkbox-inline > label {
9 margin-left: 9px;
10}
11/* Adds a nice effect if you place the checkbox label text inside a <span> it will only be bold if the checkbox is checked */
12label input[type=checkbox]:not(:checked) + * {
13 font-weight: normal;
14}
170b7f0b
CW
15/* Fix tagging-style select2 */
16.select2-choices {
17 margin-bottom: 0;
18}
cd4fec58
CW
19/* Fix for https://github.com/twbs/bootstrap/issues/5624 */
20input[type="search"]::-webkit-search-cancel-button {
21 -webkit-appearance: searchfield-cancel-button;
22}
1b620265
CW
23/* civicrm.css makes this too big */
24.select2-container .select2-choice > .select2-chosen {
25 font-size: inherit;
26 font-weight: normal;
27}