diff --git a/src/Bundle/ChillMainBundle/Resources/public/modules/bootstrap/custom/_buttons.scss b/src/Bundle/ChillMainBundle/Resources/public/modules/bootstrap/custom/_buttons.scss index ab7ac9b77..a34381e7a 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/modules/bootstrap/custom/_buttons.scss +++ b/src/Bundle/ChillMainBundle/Resources/public/modules/bootstrap/custom/_buttons.scss @@ -1,7 +1,6 @@ /// buttons - .btn-success, .btn-success:hover, .btn-warning, @@ -45,3 +44,38 @@ color: $black; } } + +.btn { + &.btn-new::before, + &.btn-create::before, + &.btn-edit::before, + &.btn-update::before, + &.btn-show::before, + &.btn-view::before, + &.btn-save::before, + &.btn-duplicate::before, + &.btn-not-duplicate::before, + &.btn-submit::before, + &.btn-reset::before, + &.btn-action::before, + &.btn-delete::before, + &.btn-remove::before, + &.btn-cancel::before { + font: normal normal normal 14px/1 ForkAwesome; + margin-right: 0.5em; + } +} + +.btn { + &.btn-new::before, + &.btn-create::before { content: "\f067"; } // fa-plus + &.btn-edit::before, + &.btn-update::before { content: "\f040"; } // fa-pencil + &.btn-show::before, + &.btn-view::before { content: "\f06e"; } // fa-eye + &.btn-save::before { content: "\f0c7"; } // fa-floppy-o + &.btn-duplicate::before { content: "\f24d"; } // fa-clone // f0c5 fa-files-o + &.btn-delete::before { content: "\f1f8"; } // fa-trash + &.btn-remove::before { content: "\f00d"; } // fa-times + &.btn-cancel::before { content: "\f060"; } // fa-arrow-left +}