Αναρτήσεις που έγιναν από τον/την Urs Hunkler

Moodle in English -> Themes -> Good 1.9 themes -> Re: Good 1.9 themes

από Urs Hunkler -
Φωτογραφία Core developers
Thanks Patrick.

In this theme I haven't altered the Moodle code - Moodle did it and any theme designer can change the settings: http://docs.moodle.org/en/Theme_settings

Moodle in English -> Themes -> Good 1.9 themes -> Re: Good 1.9 themes

από Urs Hunkler -
Φωτογραφία Core developers
May be the screendesign of http://elkone.de/ (Drupal) and http://training.elkone.de/ (Moodle) which belong together may show you some possibilities.

Moodle in English -> Themes -> Trouble understanding Themes -> Re: Trouble understanding Themes

από Urs Hunkler -
Φωτογραφία Core developers
Kelly, I fear it's like that. When you want to carve you need wood, knives and training. The same is true for any web page customisation. You need CSS, XHTML, tools and training.

How do you think it "has to be"?

Moodle in English -> Themes -> Trouble understanding Themes -> Re: Trouble understanding Themes

από Urs Hunkler -
Φωτογραφία Core developers
Kelly if you haven't done already you may read the short Chameleon documentation on http://docs.moodle.org/en/Chameleon.

http://docs.moodle.org/en/Theme_scrapbook may also answer some of your questions.

Moodle in English -> Themes -> chameleon theme button -> Re: chameleon theme button

από Urs Hunkler -
Φωτογραφία Core developers
div.sideblock div.content * {
  text-align: left;
}

The * has not been forgotten but is a usual CSS way to apply styles to all elements within a range - in this case to replace all Moodle centred text with left-aligned text in the sideblocks. This way you don't need to add "text-align: left" to several CSS definitions but only use one for al.

When you remove the asterix several texts in the sideblocks may be centred again.

I have checked the browser rendering case. The main issue was that the button had the same wide width as the input fields attached. Now one noticed that Firefox renders the buttons with some padding and IE doesn't. Therefor it looked strange.

I had a long and hard struggle to convince my enemy IE6. The struggle took some hours and this time I won using some hacks to force it to play nice with the buttons.

After creating the tracker issue MDL-13329 I updated the CSS to optimise padding and centring of the button text for IE and now the buttons look similar in the different browsers for 1.8.4, 1.9 and 2.0.