Overide a text-transform: uppercase to capitalize

Inherit comes from `app/webpacker/css/admin/components/buttons.scss`
This commit is contained in:
Jean-Baptiste Bellet
2023-06-08 14:24:20 +02:00
parent 91d24ba8ab
commit 7ce3c3f447
2 changed files with 4 additions and 3 deletions

View File

@@ -16,6 +16,7 @@
color: #fff;
max-width: 240px;
white-space: normal;
text-transform: capitalize;
}
.arrow {

View File

@@ -683,7 +683,7 @@ distributors: [distributor4, distributor5]) }
# mouse-hovers and finds tooltip
find(".icon-road").hover
expect(page).to have_content "SHIP"
expect(page).to have_content "Ship"
end
within "tr#order_#{order.id}" do
@@ -692,7 +692,7 @@ distributors: [distributor4, distributor5]) }
# mouse-hovers and finds tooltip
find(".icon-capture").hover
expect(page).to have_content "CAPTURE"
expect(page).to have_content "Capture"
end
end
@@ -703,7 +703,7 @@ distributors: [distributor4, distributor5]) }
# mouse-hovers and finds tooltip
find(".icon-edit").hover
expect(page).to have_content "EDIT"
expect(page).to have_content "Edit"
end
end
end