CSS to undo the special look of internal links?

Goal: I want internal links to just look like every other link. Does anyone know the CSS code for that?

Reason: I don’t get why it’s a feature in the first place. They’re in a framed button with infinity symbol and grey and smaller font. Why? I don’t care what’s on dynalist or google docs or what, I link to whatever’s best, but this inconsistent styling is all weird looking to me, especially when I do a row of links strung together and they’re internal/external.

Figured it out.

.node-inline-item {
    background-color: transparent;
    border: none;
    display: inline;
    vertical-align: middle;
    border-radius: 0px;
    text-decoration: underline;
    margin-top: 0px;
    font-size: 16px;
}

.node-link-internal.is-displayed:before {
    content: "";
}

.node-time{
    text-decoration: none;
}
6 Likes

Hi

I just wondered - does this still work? Copied the CSS to my preferences, and did not seem to take effect …

Yeah I think it still works

Try typing [[ and clicking something to make an internal link. They should look like a regular external link with this CSS.