「カスタムコーナーテーマ」の版間の差分

提供:MoodleDocs
移動先:案内検索
編集の要約なし
 
(done.)
 
(同じ利用者による、間の4版が非表示)
2行目: 2行目:
{{Moodle 1.9}}
{{Moodle 1.9}}


作成中です - [[利用者:Mitsuhiro Yoshida|Mitsuhiro Yoshida]] 2008年6月20日 (金) 12:34 (CDT)
カスタムコーナーテーマには、コーナーおよび境界線をカスタマイズすることのできる、グラフィックを含んだテーマです。Roger Johansson氏によって記述されたテクニックを利用することができます - http://www.456bereastreet.com/archive/200506/customising_custom_corners_and_borders/ をご覧ください。しかし、カスタムコーナーテーマでは、Roger Johansson氏が指摘するJavaスクリプトすべてを使用するわけではありません。config.phpで「$THEME->customcorners = true;」が設定された場合、代わりに「div」が使用されます。


The custom corners theme contains graphics for customising corners and borders. It makes use of a technique described by Roger Johansson - see http://www.456bereastreet.com/archive/200506/customising_custom_corners_and_borders/ However, the custom corners theme doesn't use all the JavaScript mentioned by Roger Johansson. Instead, divs are added when "$THEME->customcorners = true;" is set in config.php.
カスタムコーナーテーマは、あなた自身のカスタムテーマを作成するための、親テーマとして使用することができます。


Custom corners may be used as a parent theme for creating your own custom themes.
メモ: Moodle 1.9では、カスタムコーナーは、実験機能として同梱されます。


Note: Custom corners is included in Moodle 1.9 as an experimental feature.
カスタムコーナーテーマは、Urs Hunklerによって開発されました: http://www.unodo.de/
 
Custom corners was created by Urs Hunkler http://www.unodo.de/.


==補足情報==
==補足情報==


Custom corners uses the Chameleon theme engine. Hooks should NOT be written as comma separated lists of elements, for example
カスタムコーナーでは、Chameleonテーマエンジンを使用しています。カンマ区切りのリストを使って、フックを書くべきではありません。例えば、


  td#middle-column div.bt,
  td#middle-column div.bt,
21行目: 19行目:
  }
  }


Instead two separate statements should be used, for example
の代わりに、2つの分離された命令文を下記のように使っています:


  td#middle-column div.bt {
  td#middle-column div.bt {
34行目: 32行目:
*[[Chameleonテーマ]]
*[[Chameleonテーマ]]
*[[カスタムテーマを作成する]]
*[[カスタムテーマを作成する]]
* MDL-13648 Reword custom_corners README.html tracker report
* MDL-13648 custom_corners README.htmlの書き換え - Trackerレポート - 英語




[[en: Custom_corners_theme]]
[[en: Custom_corners_theme]]

2009年8月31日 (月) 20:45時点における最新版

Moodle 1.9


カスタムコーナーテーマには、コーナーおよび境界線をカスタマイズすることのできる、グラフィックを含んだテーマです。Roger Johansson氏によって記述されたテクニックを利用することができます - http://www.456bereastreet.com/archive/200506/customising_custom_corners_and_borders/ をご覧ください。しかし、カスタムコーナーテーマでは、Roger Johansson氏が指摘するJavaスクリプトすべてを使用するわけではありません。config.phpで「$THEME->customcorners = true;」が設定された場合、代わりに「div」が使用されます。

カスタムコーナーテーマは、あなた自身のカスタムテーマを作成するための、親テーマとして使用することができます。

メモ: Moodle 1.9では、カスタムコーナーは、実験機能として同梱されます。

カスタムコーナーテーマは、Urs Hunklerによって開発されました: http://www.unodo.de/

補足情報

カスタムコーナーでは、Chameleonテーマエンジンを使用しています。カンマ区切りのリストを使って、フックを書くべきではありません。例えば、

td#middle-column div.bt,
div#middle-column div.bt {
   ...
}

の代わりに、2つの分離された命令文を下記のように使っています:

td#middle-column div.bt {
   ...
}
div#middle-column div.bt {
   ...
}

関連情報