Revert "FEATURE: add tooltips to timeline start/end dates (#18294)" (#18346)

This reverts commit b98cd73ace.
This commit is contained in:
Kris 2022-09-23 14:20:33 -04:00 committed by GitHub
parent 9662ca7ee4
commit 61c5916b2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 8 deletions

View File

@ -579,9 +579,6 @@ export default createWidget("topic-timeline", {
className: "start-date", className: "start-date",
rawLabel: timelineDate(createdAt), rawLabel: timelineDate(createdAt),
action: "jumpTop", action: "jumpTop",
attributes: {
"data-tooltip": I18n.t("topic_entrance.sr_jump_top_button"),
},
}) })
), ),
this.attach("timeline-scrollarea", attrs), this.attach("timeline-scrollarea", attrs),
@ -591,9 +588,6 @@ export default createWidget("topic-timeline", {
className: "now-date", className: "now-date",
rawLabel: bottomAge, rawLabel: bottomAge,
action: "jumpBottom", action: "jumpBottom",
attributes: {
"data-tooltip": I18n.t("topic_entrance.sr_jump_bottom_button"),
},
}) })
), ),
]; ];

View File

@ -214,7 +214,6 @@
.start-date { .start-date {
@include unselectable; @include unselectable;
color: var(--primary-med-or-secondary-med); color: var(--primary-med-or-secondary-med);
cursor: pointer;
} }
.timeline-scrollarea { .timeline-scrollarea {
@ -301,7 +300,6 @@
display: inline-block; display: inline-block;
color: var(--primary-med-or-secondary-med); color: var(--primary-med-or-secondary-med);
margin-top: 0.5em; margin-top: 0.5em;
cursor: pointer;
} }
} }
} }