This repository was archived by the owner on Sep 5, 2019. It is now read-only.
File tree 3 files changed +11
-8
lines changed
3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 763
763
764
764
<div class =" calendar-day-date" >
765
765
<div class =" weekday" >${layout.format_date(date, 'weekday_short').rstrip('.')}</div >
766
- <div class =" day" >${date.day}.</div >
767
- <div class =" month" >${layout.format_date(date, 'month_long')}</div >
766
+ <div class =" date" >${date.day}. ${layout.format_date(date, 'month_long')}</div >
768
767
</div >
769
768
</metal : calendar_day_box >
770
769
771
770
<metal : occurrences define-macro =" occurrences" i18n : domain =" onegov.org" >
772
771
<tal : b repeat =" occurrence occurrences" >
773
772
<div class =" row" >
774
773
<div class =" occurrence" >
775
- <div class =" medium-3 small-12 columns" >
774
+ <div class =" large-3 medium-4 small-12 columns" >
776
775
<metal : b
777
776
tal : define ="
778
777
date occurrence.localized_start;
782
781
use-macro =" layout.macros['calendar-day']"
783
782
/>
784
783
</div >
785
- <div class =" medium-9 small-12 columns" >
784
+ <div class =" large-9 medium-8 small-12 columns" >
786
785
<h3 ><a href =" ${request.link(occurrence)}" >${occurrence.title}</a ></h3 >
787
786
<div class =" occurrence-date show-for-sr" >${layout.format_date(occurrence.localized_start, 'date')}</div >
788
787
<div class =" occurrence-location" >${occurrence.location}</div >
Original file line number Diff line number Diff line change 16
16
<div class =" small-12 medium-8 columns" >
17
17
<div class =" row occupancy-block" tal : repeat =" date occupancy" >
18
18
<tal : b define =" entries occupancy[date]" >
19
- <div class =" columns small-12 medium-12 large-3" >
19
+ <div class =" columns medium-12 large-3" >
20
20
<metal : b use-macro =" layout.macros['calendar-day']" />
21
21
</div >
22
- <div class =" columns small-12 medium-12 large-9" >
22
+ <div class =" columns medium-12 large-9" >
23
23
<ul class =" occupancy-entry" >
24
24
<li tal : repeat =" entry entries" >
25
25
<tal : b tal : define =" whole_day entry.start.time() != entry.end.time()" >
Original file line number Diff line number Diff line change @@ -2861,8 +2861,12 @@ button {
2861
2861
text-transform : uppercase ;
2862
2862
}
2863
2863
2864
- .day {
2865
- padding : 0 0 0 .4rem ;
2864
+ .date {
2865
+ padding : 0 0 0 .3rem ;
2866
+ max-width : 65% ;
2867
+ overflow : hidden ;
2868
+ text-overflow : ellipsis ;
2869
+ white-space : nowrap ;
2866
2870
}
2867
2871
}
2868
2872
}
You can’t perform that action at this time.
0 commit comments