help regarding activity dialog pop-up
Moderator: crythias
help regarding activity dialog pop-up
I feel that the activity dialog pop-up does not use the available space correctly.
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
OTRS 3.3.x (private/testing) on CentOS with MySQL database and apache
-
- 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
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% :
~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
Re: help regarding activity dialog pop-up
Thanks Rolf.
Reducing the width has the effect that there is a gap between the text and input fields. How can I move the input fields closer?
Reducing the width has the effect that there is a gap between the text and input fields. 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
OTRS 3.3.x (private/testing) on CentOS with MySQL database and apache
-
- 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
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