mirror of https://github.com/zulip/zulip.git
message_edit_form: Remove question mark icon after edit-timer-text.
Fixes: #26759
This commit is contained in:
parent
31daef7f79
commit
40a8ca2ced
|
@ -722,7 +722,6 @@
|
|||
.narrow_to_compose_recipients,
|
||||
.expand_composebox_button,
|
||||
.collapse_composebox_button,
|
||||
#message_edit_tooltip,
|
||||
.clear_search_button,
|
||||
.clear_search_button:focus,
|
||||
.clear_search_button:active,
|
||||
|
@ -732,7 +731,6 @@
|
|||
color: hsl(236deg 33% 80%);
|
||||
}
|
||||
|
||||
#message_edit_tooltip:hover,
|
||||
.clear_search_button:hover {
|
||||
color: hsl(0deg 0% 100%);
|
||||
}
|
||||
|
|
|
@ -1017,19 +1017,6 @@ strong {
|
|||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
#message_edit_tooltip {
|
||||
float: right;
|
||||
color: hsl(0deg 0% 0%);
|
||||
margin-top: 2px;
|
||||
margin-left: 6px;
|
||||
opacity: 0.5;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
#change_visibility_policy_button_tooltip {
|
||||
text-align: center;
|
||||
}
|
||||
|
@ -1805,11 +1792,6 @@ div.focused-message-list {
|
|||
}
|
||||
}
|
||||
|
||||
.message_edit_tooltip {
|
||||
display: inline;
|
||||
color: hsl(0deg 0% 63%);
|
||||
}
|
||||
|
||||
.message-edit-timer {
|
||||
float: right;
|
||||
display: none;
|
||||
|
|
|
@ -32,12 +32,8 @@
|
|||
{{/if}}
|
||||
{{#if is_editable}}
|
||||
<div class="message-edit-timer">
|
||||
<span class="message_edit_countdown_timer"></span>
|
||||
<span>
|
||||
<i id="message_edit_tooltip" class="tippy-zulip-tooltip message_edit_tooltip fa fa-question-circle" aria-hidden="true"
|
||||
data-tippy-content="{{t 'This organization is configured to restrict editing of message content to {minutes_to_edit} minutes after it is sent.' }}">
|
||||
</i>
|
||||
</span>
|
||||
<span class="message_edit_countdown_timer
|
||||
tippy-zulip-tooltip" data-tippy-content="{{t 'This organization is configured to restrict editing of message content to {minutes_to_edit} minutes after it is sent.' }}"></span>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue