From d7d7fb5693d7e24501fa524baf2fddd4a5609e60 Mon Sep 17 00:00:00 2001 From: Mathieu Jaumotte Date: Thu, 13 Jan 2022 16:15:49 +0100 Subject: [PATCH] add a chill button "tpchild", to create on-the-fly thirdparty (kind=child) --- .../ChillMainBundle/Resources/public/chill/scss/buttons.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Bundle/ChillMainBundle/Resources/public/chill/scss/buttons.scss b/src/Bundle/ChillMainBundle/Resources/public/chill/scss/buttons.scss index 86e2f2299..ad0584d74 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/chill/scss/buttons.scss +++ b/src/Bundle/ChillMainBundle/Resources/public/chill/scss/buttons.scss @@ -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 }