Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/templates/components/public/ticket-list.hbs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{{!-- Removed `Currency Symbol` helper from the `paymentCurrency` since some currency are not getting rendered. Hotfix until a permanent solution found --}}
<form class="ui form" {{action on='submit' preventDefault=true}}>
<table class="ui unstackable very basic compact table" style="margin-bottom: 0">
<table class="ui unstackable {{if device.isMobile 'small'}} very basic compact table" style="margin-bottom: 0">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Screenshot 2019-10-30 at 7 25 53 PM

Solve CSS Overflow

Copy link
Contributor Author

@maze-runnar maze-runnar Oct 30, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sir it due to "ui segment" class and it is also exist before my implementation, in actual website.
Screenshot from 2019-10-30 20-16-02
It is visible fine in galaxy5, and pixel2 devices, but showing this overflow in very small devices .

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please help me with this issue if there is any thing else

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will pull and check on local tonight.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok

<thead class="full-width">
<tr>
<th>{{t 'Type'}}</th>
<th class="four wide">{{t 'Sales Ends'}}</th>
<th class="ui three wide">{{t 'Price'}}</th>
<th class="ui three wide single line">{{#if device.isMobile}}<i class="money bill alternate outline icon"></i>{{/if}}{{t 'Price'}}</th>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

icon is not requires

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added icon only in mobile view to give price column some more width to show donation ticket price input box correctly .

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks odd

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can increase width if thats the issue

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried many ways but the table is under a segment so nothing is working for giving more width to that price column . that icon remove the requirement of an extra div may be. 🙂

Copy link
Contributor Author

@maze-runnar maze-runnar Oct 30, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks odd

please suggest me any other way to fix it sir.

<th class="one wide">{{t 'Quantity'}}</th>
<th class="ui right aligned two wide">{{t 'Subtotal'}}</th>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion app/templates/public/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{{/if}}
{{#if (or model.event.ticketUrl model.tickets)}}
<div class="tickets" id="tickets">
<div class="ui segments ticket-list">
<div class="ui {{if device.isMobile 'compact'}} segments ticket-list">
<div class="ui segment">
<h3 class="ui header">{{t 'Tickets'}}</h3>
</div>
Expand Down