From c413166866f692ac944a8890ff3f876271561166 Mon Sep 17 00:00:00 2001 From: Mathieu Jaumotte Date: Mon, 12 Jul 2021 17:14:20 +0200 Subject: [PATCH] batch replace .bt- in task scss --- .../Resources/public/sass/_task.scss | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/Bundle/ChillTaskBundle/Resources/public/sass/_task.scss b/src/Bundle/ChillTaskBundle/Resources/public/sass/_task.scss index ba42f1fb2..0945f7125 100644 --- a/src/Bundle/ChillTaskBundle/Resources/public/sass/_task.scss +++ b/src/Bundle/ChillTaskBundle/Resources/public/sass/_task.scss @@ -24,55 +24,55 @@ div#single_task_warningInterval { } } -.bt-task-label { +.btn-task-label { display: inline-flex; margin-bottom: 0.2em; font-size: 0.8em; text-transform: capitalize; } -.bt-task { +.btn-task { display: inline-block; height: 0; width: 8px; } -.bt-task-exchange { +.btn-task-exchange { background: $chill-green; color: #fff; } -.bt-task-exchange:hover { +.btn-task-exchange:hover { background: $chill-green-dark; color: #fff; } -.bt-task-exchange::before { - @extend .bt-task; +.btn-task-exchange::before { + @extend .btn-task; width: 10px; content: url(../svg/exchange-alt.svg); } -.bt-task-start::before { - @extend .bt-task; +.btn-task-start::before { + @extend .btn-task; content: url(../svg/play.svg); } -.bt-task-cancel::before { - @extend .bt-task; +.btn-task-cancel::before { + @extend .btn-task; content: url(../svg/archive.svg); } -.bt-task-close::before { - @extend .bt-task; +.btn-task-close::before { + @extend .btn-task; content: url(../svg/check.svg); } -.bt-dropdown { +.btn-dropdown { position: relative; display: inline-block; } -.bt-dropdown-content { +.btn-dropdown-content { display: none; position: absolute; background-color: #f9f9f9; @@ -83,7 +83,7 @@ div#single_task_warningInterval { } } -.bt-dropdown:hover .bt-dropdown-content { +.btn-dropdown:hover .btn-dropdown-content { display: inline-block; width: min-content; }