v. 2.30.00 first impression

Hi,
Just updated my previous version of FOP2 to the new 2.30.00 and it looks great, but I'd like to make some suggestions.

The new style is a little too small for my setup (and my eyes :D ) maybe is made for big companies that has a lot of buttons, but for small offices with few extension is quite different, I have a 27" monitor and the text is very very small. I can increase font size, but that causes the buttons to overlaps everywhere. Is it possible to edit the css templates?
The new phonebook style is more up-to-date but it's a little bit harder to read the fields. The css style are not perfectly represented on screen, cause there is a scroll bar on the right that overlap on the text (see image).
I use firefox 41.0.1 on windows xp. The sip server is a freepbx latest version.

Suggestion: could be possible to add a couple of button on the call history?
1) to manually update the call history, showing new entries whenever new calls are placed
2) to automatically add the number (called or caller) to the phonebook.

Thanks.
Great product btw (just buyed license cause good products needs to be supported).

Best regards
Marco Giannini

Comments

  • edited October 2015
    Thanks for the feedback. You can change styles at will, by copying the file /var/www/html/fop2/css/theme/theme.css to /var/www/html/fop2/css/custom_theme/theme.css

    Then you can hack that file to your liking. In order to change button width and font, copy the .extenbutton class that is found in operator.css and modify to whatever you like:

    [fixed].extenbutton {
    -moz-border-radius: 5px;
    -moz-box-shadow: 2px 2px 3px #999;
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 2px 2px 3px #999;
    border: 2px solid #AAA;
    border-radius: 5px;
    box-shadow: 2px 2px 3px #999;
    color: #000;
    float: left;
    font-size: 85%;
    margin: 3px;
    padding: 2px;
    width: 18.2em;
    }
    [/fixed]
    Increase width to 25em; and font-size to 110% for example.

    The call history plugin should reload automatically whenever a call is finished, that is built into the plugin.

    Interaction between the call history plugin and the phonebook could be added, but not everyone uses one or the other, so it is kind of troublesome to implement, but I will consider it.

    Best regards,

  • What do you mean when you say copy the .extenbutton class that is found in operator.css?
    Copy into /var/www/html/fop2/css/custom_theme/theme.css?

    Thanks.
  • Yes, I meant that... I also posted the actual class in my post for convenience.
Sign In or Register to comment.