Skip to content

Commit d826f7b

Browse files
authored
Merge pull request #926 from ExpressionEngine/fixed-search-styles
Fixed search input border style
2 parents 9eaf64a + 8a91447 commit d826f7b

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

theme/doc-page-template.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@
3737
<meta name="msapplication-TileImage" content="{{root_dir}}_assets/images/favicons/ms-icon-144x144.png">
3838
<meta name="theme-color" content="#ffffff">
3939

40-
<style>.sidebar-toc { visibility: hidden; }</style>
40+
<style>
41+
.sidebar-toc { visibility: hidden; }
42+
.docsearch-modal-search-input { outline: none !important; }
43+
</style>
4144
<noscript><style>.sidebar-toc { visibility: visible; }</style></noscript>
4245
<!-- Global site tag (gtag.js) - Google Analytics -->
4346
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-12953034-3"></script>

theme/site-template.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,19 @@
1111
.sidebar-toc {
1212
visibility: hidden;
1313
}
14+
.docsearch-modal-search-input {
15+
outline: none !important;
16+
}
1417
</style>
1518
<noscript>
1619
<style>
1720
.sidebar-toc {
1821
visibility: visible;
1922
}
23+
24+
.docsearch-modal-search-input {
25+
outline: none !important;
26+
}
2027
</style>
2128
</noscript>
2229

0 commit comments

Comments
 (0)