The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Change size of reset button on table filter macro

Teleperfomance Agent
October 5, 2018
Hello, I have a table with info and use a table filter macro, to filter through the data. To reset it, there is a little reset button on the right-hand side. The question is whether it's possible to enlarge this icon, so it becomes easier for our users to click it. Thanks!

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Andrey Khaneev _StiltSoft_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 5, 2018

Hello,

You can use HTML macro with custom CSS to enlarge the button and remove other buttons:

<style>
div.tableFilterCbStyle .tf-btn-container button.filter-reset {
    background: none !important;
    height: 36px;
    width: 32px;
}


div.tableFilterCbStyle .tf-btn-container button.filter-reset:after {
    content: "\f1a7";
    font-size: 32px;
    margin-top: -16px;
    color: inherit;
    font-family: Atlassian Icons;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    left: 0;
    line-height: 1;
    position: absolute;
    text-indent: 0;
    speak: none;
    top: 50%;
}


div.tableFilterCbStyle button.disableLock,
.tf-settings-wrapper {
    display: none;
}
</style>

2018-10-05_14h28_26.png2018-10-05_14h29_10.png

Teleperfomance Agent
October 11, 2018

Thank you!

TAGS
AUG Leaders

Atlassian Community Events