Loading...
 
Architecture / Installation

Architecture / Installation


Found bug in tecti.css

posts: 8633 Israel

I'm not sure it is the right place but...

I found a small bug in tceti.css(distributed on 1.8.3)

The .linkbut is invisible if shown on a white background (white on white) i have changed this.

Old :

/* Links in buttons */

.linkbut {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #f5f5f5;
text-decoration: none;
}

.linkbut:hover {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10px;
color: white;
text-decoration: none;

}


Corrected :

/* Links in buttons */

.linkbut,.linkbut:visited{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #044873;
text-decoration: none;
}

.linkbut:hover {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #8F8F8F;
text-decoration: none;

}


Should be changed in the next release version.

There are no comments at this time.