add a chill button "tpchild", to create on-the-fly thirdparty (kind=child)

This commit is contained in:
Mathieu Jaumotte 2022-01-13 16:15:49 +01:00
parent 650e0d79be
commit d7d7fb5693

View File

@ -22,6 +22,7 @@ $chill-theme-buttons: (
"choose": $gray-300,
"notify": $gray-300,
"unlink": $chill-red,
"tpchild": $chill-pink,
);
@each $button, $color in $chill-theme-buttons {
@ -50,6 +51,7 @@ $chill-theme-buttons: (
&.btn-unlink,
&.btn-action,
&.btn-edit,
&.btn-tpchild,
&.btn-update {
&, &:hover {
color: $light;
@ -75,6 +77,7 @@ $chill-theme-buttons: (
&.btn-remove::before,
&.btn-choose::before,
&.btn-notify::before,
&.btn-tpchild::before,
&.btn-cancel::before {
font: normal normal normal 14px/1 ForkAwesome;
margin-right: 0.5em;
@ -101,6 +104,7 @@ $chill-theme-buttons: (
&.btn-choose::before { content: "\f00c"; } // fa-check // f046 fa-check-square-o
&.btn-unlink::before { content: "\f127"; } // fa-chain-broken
&.btn-notify::before { content: "\f1d8"; } // fa-paper-plane
&.btn-tpchild::before { content: "\f007"; } // fa-user
}