diff --git a/components.html b/components.html index 12fb7d7..89c0545 100644 --- a/components.html +++ b/components.html @@ -317,7 +317,10 @@ base_url: "../"
{% endhighlight %} diff --git a/dist/android-theme.css b/dist/android-theme.css index 97eb142..3b8c461 100644 --- a/dist/android-theme.css +++ b/dist/android-theme.css @@ -228,6 +228,10 @@ a:active { margin-top: 13px; } +.bar input[type="search"] { + height: 35px; +} + .badge.badge-inverted { color: #999999; background-color: transparent; diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index 58fe018..cefb7fb 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -1397,6 +1397,9 @@ hr { .platform-android .bar .icon { margin-top: 13px; } +.platform-android .bar input[type="search"] { + height: 35px; +} .platform-android .badge.badge-inverted { color: #999999; background-color: transparent; diff --git a/examples/app-default/index.html b/examples/app-default/index.html index 2e55848..3182af1 100644 --- a/examples/app-default/index.html +++ b/examples/app-default/index.html @@ -8,7 +8,7 @@ - + diff --git a/lib/sass/theme-android.scss b/lib/sass/theme-android.scss index 73f13f6..6ebe6ab 100644 --- a/lib/sass/theme-android.scss +++ b/lib/sass/theme-android.scss @@ -331,6 +331,13 @@ a { margin-top: 13px; } +// Standard bars with search forms +// +// Position/size search bar within the bar +.bar input[type="search"] { + height: 35px; +} + // Badges // --------------------------------------------------