github.com/lologarithm/mattermost-server@v5.3.2-0.20181002060438-c82a84ed765b+incompatible/templates/post_batched_post_full.html (about) 1 {{define "post_batched_post_full"}} 2 3 <style type="text/css"> 4 @media screen and (max-width: 480px){ 5 a[class="post_btn"] { 6 float: none !important; 7 } 8 } 9 </style> 10 11 <table style="border-top: 1px solid #ddd; padding: 20px 0; width: 100%"> 12 <tr> 13 <td style="text-align: left"> 14 <span style="font-size: 16px; font-weight: bold; color: #555; margin: 0 0 5px; display: inline-block;" > 15 {{.Props.ChannelName}} 16 </span> 17 <br/> 18 <div style="margin: 5px 0 0;"> 19 <span style="font-weight: bold; white-space: nowrap;"> 20 @{{.Props.SenderName}} 21 </span> 22 <span style="color: #AAA; font-size: 12px; margin-left: 2px;"> 23 {{.Props.Date}} 24 </span> 25 </div> 26 </td> 27 </tr> 28 <tr> 29 <td colspan=2> 30 <pre style="text-align:left; font-family: 'Lato', sans-serif; margin: 0px; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word; line-height: 20px;">{{.Props.PostMessage}}</pre> 31 <a class="post_btn" href="{{.Props.PostLink}}" style="font-size: 13px; background: #2389D7; display: inline-block; border-radius: 2px; color: #fff; padding: 6px 0; width: 120px; text-decoration: none; float:left; text-align: center; margin: 15px 0 5px;"> 32 {{.Props.Button}} 33 </a> 34 </td> 35 </tr> 36 </table> 37 38 {{end}}