Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
width: 100%;
padding-top: 10px;
font-size: 11px;
color: #aeaeaf;
color: #747476;
text-align: center;
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`ActivityText component renders clean dangerous text properly 1`] = `
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand All @@ -13,7 +13,7 @@ exports[`ActivityText component renders clean dangerous text properly 1`] = `
`;

exports[`ActivityText component renders clean email links properly 1`] = `
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand All @@ -25,7 +25,7 @@ exports[`ActivityText component renders clean email links properly 1`] = `
`;

exports[`ActivityText component renders clean links properly 1`] = `
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand All @@ -37,7 +37,7 @@ exports[`ActivityText component renders clean links properly 1`] = `
`;

exports[`ActivityText component renders clean links with target _blank properly 1`] = `
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand All @@ -49,7 +49,7 @@ exports[`ActivityText component renders clean links with target _blank properly
`;

exports[`ActivityText component renders clean tel links properly 1`] = `
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand All @@ -70,7 +70,7 @@ exports[`ActivityText component renders clean text properly 1`] = `
`;

exports[`ActivityText component renders dirty dangerous text properly 1`] = `
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function ActivityText({content, displayName, renderedComponent}) {
htmlContent.__html = htmlContent.__html.replace(/<a(?![^>]*target="_blank"|\s*href\s*=\s*["'](?:mailto:|tel:))([^>]*)>/gi, '<a target="_blank"$1>');

return (
<a
<span
className={classNames('webex-activity-text', styles.activityText)}
// eslint-disable-reason content is considered safe from server
// eslint-disable-next-line react/no-danger
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
}

.activityText a {
color: #07c1e4;
color: #068098;
text-decoration: none;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ exports[`ActivityList renders properly 1`] = `
<div
className="webex-activity-content content"
>
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand Down Expand Up @@ -224,7 +224,7 @@ exports[`ActivityList renders properly 1`] = `
<div
className="webex-activity-content content"
>
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand Down Expand Up @@ -353,7 +353,7 @@ exports[`ActivityList renders threads properly 1`] = `
<div
className="webex-activity-content content"
>
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand Down Expand Up @@ -517,7 +517,7 @@ exports[`ActivityList renders threads properly 1`] = `
<div
className="webex-activity-content content"
>
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand Down Expand Up @@ -631,7 +631,7 @@ exports[`ActivityList renders threads properly 1`] = `
<div
className="webex-activity-content content"
>
<a
<span
className="webex-activity-text activityText"
dangerouslySetInnerHTML={
Object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
margin: 8px;
font-size: 10px;
font-weight: 200;
color: #FFB400;
color: #996B00;
line-height: 1.2;
}

Expand Down