Re: Problem: calibre seems to force color of links
@Kovid: as mentioned in OP, extra css was tried to override link colors " a {color: aqua !important;} " , but it didn't work.
This morning I again converted with the extra css " a {color: aqua !important;} " and used debug. Here are the results:
- Note: 1st removed all color entries from input EPUB css files & checked that the the html files didn't have any.
- For both book examples, the Structure stage's css file had no color entries.
- For the very short book, the Processed stage's css file had 2 color entries:
.calibre4 {
color: blue;
cursor: pointer;
text-decoration: underline
}
.calibre5 {
color: blue;
cursor: pointer;
font-style: italic;
text-decoration: underline
}
- For the longer book, the Processed stage's css file had 3 color entries:
.calibre3 {
color: aqua;
cursor: default;
text-decoration: inherit
}
.calibre5 {
color: blue;
cursor: pointer;
text-decoration: underline
}
.western6 {
color: blue;
cursor: pointer;
font-weight: bold;
text-decoration: underline
}
|