Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSS: AgentTicketZoom Article Row with misleading background-color for System E-Mails #803

Closed
hcamminadi opened this issue Feb 16, 2021 · 2 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@hcamminadi
Copy link

Situation:

  • System E-Mails are configured to be visible for customers
  • E-Mail is sent to the ticket system e.g. for an existing ticket
  • No custom postmaster filter manipulates Mail Headers
  • Article row E-Mail is displayed "red" as if it would not be visible for customers but database value for article.is_visible_for_customer=1 (which is correct with the above configuration)

Suggestion:
The reason is that article row is displayed with CSS class "system Outgoing VisibleForCustomer".
Core.TicketDetail.css has an element for "system" that sets the color to "red" but is missing an element for "VisibleForCustomer" that overwrites the color.

As a quick fix a custom css file under \thirdparty\ZZZCustom with the following content should help:

.UseArticleColors tr.VisibleForCustomer > td {
    background: #fff !important;
    border-bottom-color: #ccc;
    border-color: #ccc;
}
.UseArticleColors tr.VisibleForCustomer.Active > td,
.UseArticleColors tr.VisibleForCustomer:hover > td {
    background-color: #e5e5e5 !important;
    border-color: #e5e5e5;
    border-right-color: #ccc !important;
}
@svenoe
Copy link
Contributor

svenoe commented Feb 17, 2021

Hi hcamminadi,

thanks for pointing it out - the change to red system articles was not intended. I fixed this, but we will only implement it in 10.1, to not confuse people. You will have to use your fix for a bit, until it is released.

Best regards, Sven

@svenoe svenoe closed this as completed Feb 17, 2021
@bschmalhofer bschmalhofer added this to the OTOBO 10.1 milestone Aug 27, 2021
@bschmalhofer bschmalhofer added the enhancement New feature or request label Aug 27, 2021
@bschmalhofer
Copy link
Contributor

bschmalhofer commented Aug 27, 2021

Updated the tags of this issue. I wondered what that was when I looked at the diffs between rel-10_0 and rel-10_1 for #1033.

@bschmalhofer bschmalhofer modified the milestones: OTOBO 10.1, OTOBO 10.1.1 Nov 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants