help regarding activity dialog pop-up

Moderator: crythias

Locked
aph
Znuny superhero
Posts: 646
Joined: 20 Jun 2014, 12:11
Znuny Version: 3.3.9, 4.x, 5.x

help regarding activity dialog pop-up

Post by aph »

I feel that the activity dialog pop-up does not use the available space correctly.
Unbenannt_158.PNG
A lot of space is empty on the left side. How can I make the text appear left alligned, instead of centered? Which dtl do I need to edit?
You do not have the required permissions to view the files attached to this post.
OTRS 3.3.x (private/testing) on Windows Server 2008 with MSSQL database.
OTRS 3.3.x (private/testing) on CentOS with MySQL database and apache
RStraub
Znuny guru
Posts: 2210
Joined: 13 Mar 2014, 09:16
Znuny Version: 6.0.14
Real Name: Rolf Straub

Re: help regarding activity dialog pop-up

Post by RStraub »

That is not specific for ActivityDialog pop-ups. It's configured in the
~otrs/var/httpd/htdocs/skins/Agent/default/css/Core.Form.css

In this block, you see the width being set to 30% :

Code: Select all

fieldset.TableLike > .Row > label {
    display: block;
    float: left;
    line-height: 1.9em;
    width: 30%;
    [...]
Currently using: OTRS 6.0.14 -- MariaDB -- Ubuntu 16 LTS
aph
Znuny superhero
Posts: 646
Joined: 20 Jun 2014, 12:11
Znuny Version: 3.3.9, 4.x, 5.x

Re: help regarding activity dialog pop-up

Post by aph »

Thanks Rolf.
Reducing the width has the effect that there is a gap between the text and input fields.
Unbenannt_160.PNG
How can I move the input fields closer?
You do not have the required permissions to view the files attached to this post.
OTRS 3.3.x (private/testing) on Windows Server 2008 with MSSQL database.
OTRS 3.3.x (private/testing) on CentOS with MySQL database and apache
RStraub
Znuny guru
Posts: 2210
Joined: 13 Mar 2014, 09:16
Znuny Version: 6.0.14
Real Name: Rolf Straub

Re: help regarding activity dialog pop-up

Post by RStraub »

I'm not that into css... and I'd have to test that myself. I would guess it's the entries which have a margin-left of 30%, like this:

Code: Select all

fieldset.TableLike > .Row > .Field {
    line-height: 1.9em;
    margin-left: 30%;
    [...]
Currently using: OTRS 6.0.14 -- MariaDB -- Ubuntu 16 LTS
Locked