Bug 1623901 Comment 7 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Hi Mariana,

(In reply to Mariana Pícolo from comment #3)
> I think this color property defined on the `url` class should be removed:
> https://searchfox.org/mozilla-central/source/devtools/client/themes/webconsole.css#740
Good analysis! This line is the issue.

Lets probably add something like this
```
.webconsole-app .message.network .selected .url {
  color: var(--theme-selection-color)
}
```
as we only need the change when the url is selected.
Hi Mariana,

(In reply to Mariana Pícolo from comment #3)
> I think this color property defined on the `url` class should be removed:
> https://searchfox.org/mozilla-central/source/devtools/client/themes/webconsole.css#740

Great analysis! This line is the issue.
Lets probably add something like this instead
```
.webconsole-app .message.network .selected .url {
  color: var(--theme-selection-color)
}
```
as we only need the change when the url is selected.

Back to Bug 1623901 Comment 7