diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-09-28 12:36:34 -0400 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-09-28 16:03:51 -0400 | 
| commit | e5f24b8f12760d17bf663e45a415ca4205e153fd (patch) | |
| tree | 655603d36d35dc372e8a6745f4afc007b870e5de | |
| parent | 64eed33e8890df33e3c4acb47c96f0e3c674bd3b (diff) | |
Fix paragraph tags
| -rw-r--r-- | ext/bg/context.html | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/ext/bg/context.html b/ext/bg/context.html index 198ccd42..a42faa7a 100644 --- a/ext/bg/context.html +++ b/ext/bg/context.html @@ -14,20 +14,20 @@              .btn-group {                  display: flex; +                margin-top: 10px; +                white-space: nowrap;              }          </style>      </head>      <body> -        <p> +        <div>              <input type="checkbox" id="enable-search"> -        </p> -        <p> -            <div class="btn-group" style="white-space: nowrap"> -                <button type="button" id="open-search" title="Search (Alt + Insert)" class="btn btn-default btn-xs glyphicon glyphicon-search"></button> -                <button type="button" id="open-options" title="Options" class="btn btn-default btn-xs glyphicon glyphicon-wrench"></button> -                <button type="button" id="open-help" title="Help" class="btn btn-default btn-xs glyphicon glyphicon-question-sign"></button> -            </div> -        </p> +        </div> +        <div class="btn-group"> +            <button type="button" id="open-search" title="Search (Alt + Insert)" class="btn btn-default btn-xs glyphicon glyphicon-search"></button> +            <button type="button" id="open-options" title="Options" class="btn btn-default btn-xs glyphicon glyphicon-wrench"></button> +            <button type="button" id="open-help" title="Help" class="btn btn-default btn-xs glyphicon glyphicon-question-sign"></button> +        </div>          <script src="/mixed/lib/jquery.min.js"></script>          <script src="/mixed/lib/bootstrap-toggle/bootstrap-toggle.min.js"></script> |