Warning: Declaration of FeedWordPie_Item::get_id($hash = false) should be compatible with SimplePie_Item::get_id($hash = false, $fn = 'md5') in /home/nekyo/nekyo.wp.xdomain.jp/public_html/wp-content/plugins/feedwordpress/feedwordpie_item.class.php on line 0

Warning: Declaration of FeedWordPress_Parser::parse(&$data, $encoding) should be compatible with SimplePie_Parser::parse(&$data, $encoding, $url = '') in /home/nekyo/nekyo.wp.xdomain.jp/public_html/wp-content/plugins/feedwordpress/feedwordpress_parser.class.php on line 0
jQuery Mobile テキストを省略せずに表示 | 日々のできごと

jQuery Mobile テキストを省略せずに表示

jQuery Mobileは、モバイルに最適化したウェブを開発するための JavaScript & CSS フレームワーク。

なかなかにイイ感じになるのだが、初期状態のままでは、ボタンタイトルなどの長い文字列が「…」と省略されてしまう。

省略させたくない場合は、以下のスタイルを上書き。
[code lang=”css”]
<style>
.ui-header .ui-title, /* header */
.ui-footer .ui-title, /* footer */
.ui-btn-inner, /* button */
.ui-li-heading, /* listview heading */
.ui-li .ui-btn-text a.ui-link-inherit, /* listview link */
.ui-li-desc /* listview description */
{
overflow: visible;
white-space: normal;
}
</style>
[/code]
ちなみに JQuery Mobile 1.4 では効かないみたい。


コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

CAPTCHA