Issue with Newbury theme and hidden items

Issue with Newbury theme and hidden items

Kent Villard發表於
Number of replies: 10
I'm using a heavily modified version of the newbury theme (awesome theme to work with) but I've just noticed that "hidden" items in a course are not "greyed" out like in the Standard Moodle theme. This is something that my professors really miss but I don't see how to "fix" it in this theme. I can't seem to find the styles that control that - can anyone offer any guidance?

thanks
評比平均分數: -
In reply to Kent Villard

Re: Issue with Newbury theme and hidden items

Kent Villard發表於
If someone can just point me to where in the standard theme css the hidden item color is controlled that would probably do the trick!
In reply to Kent Villard

Re: Issue with Newbury theme and hidden items

Nadav Kavalerchik發表於
Core developers的相片 Plugin developers的相片 Testers的相片 Translators的相片
we had the same issue today 微笑
i used firebug (an addon to firefox) to pin point the specific element in the page that needs to be changed. ( it even shows you the exact file name and line number on the server)

and i think it is a combination of several elements so i added (at the end of the file styles_color.css)

#course-view .section.hidden .content, #course-view .section.hidden .side {
border-color:#C6BDA8;
}

change #C6BDA8 to any color you like:
http://www.free-webmaster-tools.com/colorpicker.htm
In reply to Nadav Kavalerchik

Re: Issue with Newbury theme and hidden items

Kent Villard發表於
This makes sense but when I tried it there was no change. I can't see to find the mentioned item in Firebug either ;(
In reply to Kent Villard

Re: Issue with Newbury theme and hidden items

Nadav Kavalerchik發表於
Core developers的相片 Plugin developers的相片 Testers的相片 Translators的相片
can you give a link ? (maybe as guest)
In reply to Nadav Kavalerchik

Re: Issue with Newbury theme and hidden items

Kent Villard發表於
Please email direct and I'll send you login info so you can have a look - just check my profile for the address!
In reply to Kent Villard

Re: Issue with Newbury theme and hidden items

Kent Villard發表於
Thanks very much, that did it - for the life of me I could not find what I needed with Firebug and the Web Developers tools.
In reply to Kent Villard

Re: Issue with Newbury theme and hidden items

Nadav Kavalerchik發表於
Core developers的相片 Plugin developers的相片 Testers的相片 Translators的相片
just found out that on another theme (formal-white) that makes the border of a disabled (gray) section display in dashed border line which works fine on firefox does not show on any IE
see reference to that : http://reference.sitepoint.com/css/border-style

making CSS work seems like an art.

i use firefox' addon for firebug called CodeBurner to find out which CSS or HTML element works
for which browser and browser's version. by right clicking it. i recommend you try it too 微笑
In reply to Nadav Kavalerchik

Re: Issue with Newbury theme and hidden items

Kent Villard發表於
They is also an issue with the gradebook in the Newbury theme, some sort of tooltip type text is overwriting the grades ;)(
In reply to Kent Villard

Re: Issue with Newbury theme and hidden items

Geof Duncan發表於
Kent,

Try adding and/or modifying the following to your css and see if that doesn't fix it...

a.dimmed:link,
a.dimmed:visited {
color:#AAAAAA;
}

The Firebug or Web Developer extension for Firefox really makes a huge difference.

From: http://moodle.org/mod/forum/discuss.php?d=101535#p459348