Ace 编辑器搜索框 prev/next 按钮高度缩小?

Ace editor searchbox prev/next buttons height shrank?

当我在编辑器中点击 ctrl + F 时,它会在右上角显示一个搜索框,但是 prev/next 按钮的高度似乎缩小了。我想知道我是否错过了什么。任何帮助将不胜感激。谢谢。

https://jsbin.com/mopoxod/2/edit?html,output

<html>
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        html,
        body {
            margin: 0;
            padding: 0;
        }
        div#ed {
            height: 100%;
            width: 100%;
        }
    </style>
</head>
<body>
    <div id="ed"></div>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.2/ace.js"></script>
    <script>
        const ed = document.querySelector('div#ed');
        const editor = ace.edit(ed, {
            mode: "ace/mode/html",
        });
    </script>
</body>
</html>

通过在 html 的顶部添加 <!DOCTYPE html> 解决了问题。