Merge pull request #664 from leonklingele/css-fix-jumpy-page-on-search-field-focus

Fix jumpy page on search field focus
このコミットが含まれているのは:
Omar Roth 2019-08-01 12:50:08 -05:00 committed by GitHub
コミット 004246124b
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更3行の追加1行の削除

ファイルの表示

@ -159,6 +159,8 @@ img.thumbnail {
}
.navbar > .searchbar .pure-form input[type="search"] {
margin-bottom: 1px;
border-top: 0;
border-left: 0;
border-right: 0;
@ -169,7 +171,6 @@ img.thumbnail {
box-shadow: none;
transition: 0.1s border-bottom;
-webkit-appearance: none;
}
@ -188,6 +189,7 @@ input[type="search"]::-webkit-search-cancel-button {
/* attract focus to the searchbar by adding a subtle transition */
.navbar > .searchbar .pure-form input[type="search"]:focus {
margin-bottom: 0px;
border-bottom: 2px solid #aaa;
}