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

Warning: Cannot modify header information - headers already sent by (output started at /home/nekyo/nekyo.wp.xdomain.jp/public_html/wp-content/plugins/feedwordpress/feedwordpie_item.class.php:0) in /home/nekyo/nekyo.wp.xdomain.jp/public_html/wp-includes/feed-rss2.php on line 8
JQueryMobile – 日々のできごと http://nekyo.wp.xdomain.jp きがついたこと、みたこと、やったこと、かんじたこと Sun, 11 May 2014 20:27:00 +0000 ja hourly 1 jQuery Mobile テキストを省略せずに表示 http://nekyo.wp.xdomain.jp/2014/05/12/jquery-mobile-%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%82%92%e7%9c%81%e7%95%a5%e3%81%9b%e3%81%9a%e3%81%ab%e8%a1%a8%e7%a4%ba/ http://nekyo.wp.xdomain.jp/2014/05/12/jquery-mobile-%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%82%92%e7%9c%81%e7%95%a5%e3%81%9b%e3%81%9a%e3%81%ab%e8%a1%a8%e7%a4%ba/#respond Sun, 11 May 2014 20:27:00 +0000 http://nekyo.wp.xdomain.jp/2014/05/12/jquery-mobile-%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%82%92%e7%9c%81%e7%95%a5%e3%81%9b%e3%81%9a%e3%81%ab%e8%a1%a8%e7%a4%ba/ 続きを読む 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 では効かないみたい。

]]>
http://nekyo.wp.xdomain.jp/2014/05/12/jquery-mobile-%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%82%92%e7%9c%81%e7%95%a5%e3%81%9b%e3%81%9a%e3%81%ab%e8%a1%a8%e7%a4%ba/feed/ 0