0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

jQuery UI selectmenu にスタイルを適用する

Posted at

ポイント1
・jQuery UI selectmenu は「button」と「menu」に分かれている

以下赤枠が button で紫枠が menu

image.png

ポイント2
・button と menu のそれぞれにスタイルのクラスを適用することが可能

以下のようにクラスをそれぞれ設定する。

$("#myselectmenu").selectmenu();
$("#myselectmenu").data("ui-selectmenu").button.addClass("myselectmenu_button")
$("#myselectmenu").data("ui-selectmenu").menu.addClass("myselectmenu_menu");

CSSで以下のようにスタイルを設定する。

.myselectmenu_button{
   font-size:10px;
}
.myselectmenu_menu{
   font-size:10px;
}

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?