Make tooltip buttons have consistent appearance

Change class of `expandlink` from `ui-corner-all` to `ui-button` to be consistent with `morelink` and `closelink`
pull/4623/head
mtd91429 7 years ago committed by GitHub
parent 01b084381c
commit cf1a76441c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -37,8 +37,8 @@ define([
// build the buttons menu on the upper right
// expand the tooltip to see more
var expandlink = $('<a/>').attr('href', "#").addClass("ui-corner-all") //rounded corner
.attr('role', "button").attr('id', 'expanbutton').attr('title', i18n.msg._('Grow the tooltip vertically (press shift-tab twice)')).click(function () {
var expandlink = $('<a/>').attr('href', "#").attr('role', "button").addClass('ui-button')
.attr('id', 'expanbutton').attr('title', i18n.msg._('Grow the tooltip vertically (press shift-tab twice)')).click(function () {
that.expand();
event.preventDefault();
}).append(

Loading…
Cancel
Save