Skip to content

Commit

Permalink
* add theme/base.css for basic styles.
Browse files Browse the repository at this point in the history
	* footer.rhtml: move footer_proc before div.footer.


git-svn-id: https://tdiary.svn.sourceforge.net/svnroot/tdiary/trunk/core@934 7f22e88f-374d-0410-998f-c91420d97ba2
  • Loading branch information
tadatadashi committed Dec 2, 2002
1 parent 6e51ce5 commit b71af5b
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 19 deletions.
3 changes: 2 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
2002.12.02 TADA Tadashi <sho@spc.gr.jp>
* default.css: add span.nyear.
* tdiary1.css: convert for 1.5 or later.
* misc/i18n/00lang.en.rb: add nyear labels.
* update English documents. thanks Mizuho <gha@intrastore.cdc.com>.
* add theme/base.css for basic styles.
* footer.rhtml: move footer_proc before div.footer.

2002.12.02 Junichiro Kita <kita@kitaj.no-ip.com>
* skel/diary.rhtml: let nyear into <span>.
Expand Down
4 changes: 2 additions & 2 deletions skel/footer.rhtml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<%# footer.rhtml $Revision: 1.4 $ %>
<%# footer.rhtml $Revision: 1.5 $ %>
<%%=footer_proc%%>
<div class="footer">
Generated by <a href="http://www.tdiary.org/">tDiary</a> version <%= TDIARY_VERSION %><br>
Powered by <a href="http://www.ruby-lang.org/">Ruby</a> version <%= RUBY_VERSION %><% if /ruby/i =~ ENV['GATEWAY_INTERFACE'] %> with <a href="http://www.modruby.net/">mod_ruby</a><% end %>
</div>
<%%=footer_proc%%>
</body>
</html>
13 changes: 13 additions & 0 deletions theme/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
shared style sheet for tDiary.
usage:
@import url(../base.css);
*/

/*
nyear
*/
h2 span.nyear {
font-size: small;
}
14 changes: 6 additions & 8 deletions theme/default/default.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Title: tDiary2 default
Revision: $Revision: 1.10 $
Revision: $Revision: 1.11 $
Author: TADA Tadashi
Access: sho@spc.gr.jp
License: GPL
Expand All @@ -9,6 +9,11 @@ Comment: default theme for tDiary 1.5 or later.
validated by W3C.
*/

/*
共通設定の読み込み
*/
@import url(../base.css);

/*
ページ全体の基本的な設定。背景色や文字色など
*/
Expand Down Expand Up @@ -102,13 +107,6 @@ h2 {
margin: 0.1em 1em 0.1em 0.5em;
}

/*
長年日記ラベルの設定
*/
h2 span.nyear {
font-size: small;
}

/*
日付の設定
*/
Expand Down
14 changes: 6 additions & 8 deletions theme/tdiary1/tdiary1.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Title: tDiary1 Default
Revision: $Revision: 1.3 $
Revision: $Revision: 1.4 $
Author: TADA Tadashi
Access: sho@spc.gr.jp
License: GPL
Expand All @@ -9,6 +9,11 @@ Comment: default theme for tDiart 1.x
validated by W3C.
*/

/*
共通設定の読み込み
*/
@import url(../base.css);

/*
ページ全体の基本的な設定。背景色や文字色など
*/
Expand Down Expand Up @@ -103,13 +108,6 @@ span.date {
span.title {
}

/*
長年日記
*/
span.nyear {
font-size: small;
}

/*
タイトルを除いた1日の日記本文全体の設定
*/
Expand Down

0 comments on commit b71af5b

Please sign in to comment.