So I am modifying the template.css in the bootstrap template to match my Joomla! template. No big deal there. What I have done is changed a couple of colors and functions nothing major. Here is the bulk of what effects what I am doing.
Approximately row 33:
Code:
.cb_template_bootstrap a,
#myCon a,
#overDiv a {
/*color: #0088cc !important; RDH changed to match template*/
color: #60676f !important;
text-decoration: none !important;
}
.cb_template_bootstrap a:hover,
#myCon a:hover,
#overDiv a:hover {
/*color: #005580 !important; RDH changed to match template*/
color: #75a700 !important;
background-color: transparent !important;
/*text-decoration: underline !important; RDH */
}
.cb_template_bootstrap a:active,
#myCon a:active,
#overDiv a:active {
background-color: transparent !important;
color: #FFFFFF !important; /*RDH Added to keep active font white*/
}
.cb_template_bootstrap a:focus,
#myCon a:focus,
#overDiv a:focus {
/*outline: thin dotted #333 !important; RDH*/
outline: 5px auto -webkit-focus-ring-color !important;
/*outline-offset: -2px !important; RDH*/
background-color: transparent !important;
}
Starting around row 1269 (will be off because I have added lines)
Code:
.tab-pane > .tab-row > .tab > a {
display: block !important;
margin: 8px 12px 8px 12px !important;
line-height: 14px !important;
/*font: 13px arial, helvetica, sans-serif !important; RDH change to adapt to template font style */
font-family: 'OxygenRegular', helvetica, arial, sans-serif;
font-weight: normal;
font-size: medium !important;
}
.tab-pane > .tab-row > .tab a:hover {
text-decoration: none !important;
}
.tab-pane > .tab-row > .selected,
.tab-pane > .tab-row > .selected:hover {
cursor: default !important;
/*background-color: #ffffff !important; RDH chaning to match template*/
background-image: url(images/overlays/mosaic-overlay-cbtab.png);
background-color: #75a700 !important;
/*border: 1px solid #ddd !important; RDH chaning to match template*/
border: 1.5px solid #6c9a00 !important;
border-bottom-color: transparent !important;
}
.tab-pane > .tab-row > .selected a,
.tab-pane > .tab-row > .selected a:hover {
/*color: #555555 !important; RDH changing to match template*/
color: #FFFFFF !important;
background-color: transparent !important;
text-shadow: 0 0 4px rgba(0, 0, 0, 0.7); /*RDH Added to match "title1" module class suffix font shadowing */
}
If you are more of a visual person, here is what it is supposed to look like, this is in the Profile Viewer. The active tab should have white font, a gradient green background, a font shadow and a green similar to the selected tab when hovering over another tab name. The "non-selected" tab names have a greyish font.
Looks good.
Now, if you go into the manage connections, you get this:
What is happening here, is somehow the code is not recognizing the selected tab as far as the font color is concerned, and it is grey like the "non-selected" font. It recognizes the tab as selected as far as the background color...??
EDIT: Take a look at that "Manage" word. After some reviewing of the code, I can say that it is kind of adhering to this code, the font does have a shadow, it is just the wrong color.