Files
zulip/web/templates/user_topic_ui_row.hbs
Sahil Batra 91cf69f6a1 settings: Set min-width of table columns for narrow screens.
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.
2024-07-12 10:35:22 -07:00

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}}