RT4 - Howto customize the width of the queue selection box in the top-right corner - rudder theme

Hi,

Can anyone give me some tips on how to make the queue selection box at the top-right corner slightly wider (using rudder theme) in RT 4.2.1

Tried playing around with the “topactions” class in the CSS files, but no luck.

Thank you.

Regards,

Carl

Hi,

Can anyone give me some tips on how to make the queue selection box at the top-right corner slightly wider (using rudder theme) in RT 4.2.1

Tried playing around with the “topactions” class in the CSS files, but no luck.

Thank you.

Regards,

Carl

Hi,

Can anyone give me some tips on how to make the queue selection box at the
top-right corner slightly wider (using rudder theme) in RT 4.2.1

create a file named:

local/static/css/my.css

with content:

#topactions .select-queue {
width: FIXME;
}
div#header h1 {
left: FIXME;
}

then edit etc/RT_SiteConfig.pm and add:

Set(@CSSFiles, qw/my.css/);

Adjusting “left” on “div#header h1” is needed as the ticket subject is
truncated based on this.

Easter-eggs Spécialiste GNU/Linux
44-46 rue de l’Ouest - 75014 Paris - France - Métro Gaité
Phone: +33 (0) 1 43 35 00 37 - Fax: +33 (0) 1 43 35 00 76
mailto:elacour@easter-eggs.com - http://www.easter-eggs.com

Can anyone give me some tips on how to make the queue selection box at the top-right corner
slightly wider (using rudder theme) in RT 4.2.1

Tried playing around with the “topactions” class in the CSS files, but no luck.

You didn’t show what you tried, you should always do that.
If you right click on the select in almost any modern browser, there
will be an ‘Inspect Element’ option which will tell you the class name
to use, you can then grep in share/static/css to see what we’re
already doing.

It’s easy to test in the Theme Editor using Try until you get it
right. You need to set a width on .queue-select but likely also need
a !important.

-kevin