small step on features
This commit is contained in:
parent
e68188b1a8
commit
fd302f5901
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
BIN
app/assets/images/merged/card_preview/card_feature_small.png
Normal file
BIN
app/assets/images/merged/card_preview/card_feature_small.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
8
app/views/merged/view/cards/_card_feature_normal.haml
Normal file
8
app/views/merged/view/cards/_card_feature_normal.haml
Normal file
@ -0,0 +1,8 @@
|
||||
.max-w-md.sm:mx-auto.sm:text-center
|
||||
.flex.items-center.justify-center.mb-4.rounded-full.mx-auto.w-40.h-40{options(card,:background )}
|
||||
= image_for( card , "h-20 w-20")
|
||||
%h6.mb-3.text-xl.font-bold.leading-5{options(card, :color)}= card.header
|
||||
.mb-3.text-sm.text-gray-900{ prose_classes }
|
||||
= markdown(card)
|
||||
- if card.has_option?("button_link")
|
||||
%a.inline-flex.items-center.font-semibold.transition-colors.duration-200.text-deep-purple-accent-400.hover:text-deep-purple-800{"aria-label" => "", :href => "/"} Learn more
|
@ -63,6 +63,20 @@
|
||||
- text_align
|
||||
- button_link
|
||||
- button_text
|
||||
- template: card_feature_small
|
||||
header: Card looking feature, smaller version
|
||||
text: For things where no image is available or apropriate.
|
||||
Making lists a little more interesting to look at.
|
||||
May use svg as image.
|
||||
fields:
|
||||
- header
|
||||
- text
|
||||
options:
|
||||
- background
|
||||
- color
|
||||
- text_align
|
||||
- button_link
|
||||
- button_text
|
||||
- template: card_normal_round
|
||||
header: Standard card with rounded look
|
||||
text: Otherwise quite similar to standard. But there is gap under the image.
|
||||
|
@ -6,7 +6,7 @@
|
||||
:id: 1
|
||||
- :name: columns
|
||||
:description: Number of columns in a layout that supports cards
|
||||
:values: 2 3 4
|
||||
:values: 2 3 4 5 6
|
||||
:default: 3
|
||||
:id: 2
|
||||
- :name: background
|
||||
|
@ -37,7 +37,8 @@ class CardsTest < ActionDispatch::IntegrationTest
|
||||
end
|
||||
|
||||
def test_remove_image_force
|
||||
visit "merged/cards/6/set_image?image=''"
|
||||
first = Merged::Card.first.id
|
||||
visit "merged/cards/#{first}/set_image?image=''"
|
||||
assert_text page , "No image"
|
||||
end
|
||||
end
|
||||
|
@ -7,7 +7,7 @@ module Merged
|
||||
end
|
||||
|
||||
def test_has_all
|
||||
assert_equal CardStyle.all.length , 6
|
||||
assert CardStyle.all.length > 5
|
||||
end
|
||||
|
||||
def test_has_fields
|
||||
|
Loading…
Reference in New Issue
Block a user