mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
This commit adds minimum width property for different columns such that the columns do not get too small for narrow screens and the tables can be scrolled horizontally to view the content.
15 lines
774 B
Handlebars
15 lines
774 B
Handlebars
{{#with user_topic}}
|
|
<tr data-stream-id="{{stream_id}}" data-stream="{{stream}}" data-topic="{{topic}}" data-date-updated="{{date_updated_str}}" data-visibility-policy="{{visibility_policy}}">
|
|
<td class="user-topic-stream">{{stream}}</td>
|
|
<td class="white-space-preserve-wrap user-topic">{{topic}}</td>
|
|
<td>
|
|
<select class="settings_user_topic_visibility_policy list_select bootstrap-focus-style" data-setting-widget-type="number">
|
|
{{#each ../user_topic_visibility_policy_values}}
|
|
<option value='{{this.code}}' {{#if (eq this.code ../visibility_policy)}}selected{{/if}}>{{this.description}}</option>
|
|
{{/each}}
|
|
</select>
|
|
</td>
|
|
<td class="topic_date_updated">{{date_updated_str}}</td>
|
|
</tr>
|
|
{{/with}}
|