File tree 3 files changed +17
-1
lines changed
src/scanpydoc/theme/static/styles
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 42
42
run : coverage-rich report
43
43
- name : upload coverage
44
44
uses : codecov/codecov-action@v3
45
+ with :
46
+ fail_ci_if_error : true
47
+ token : c66a2830-d3c7-4ae7-a230-21aef89dcf65
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ test = [
29
29
' pytest' ,
30
30
' coverage' ,
31
31
' coverage-rich' ,
32
- ' toml' , # coverage-rich’s dep anyconfig 0.13 needs this
32
+ ' anyconfig[ toml] >=0.14 ' , # coverage-rich uses anyconfig
33
33
' legacy-api-wrap' ,
34
34
]
35
35
doc = [
Original file line number Diff line number Diff line change @@ -55,9 +55,22 @@ html[data-theme] .rtd__search__credits {
55
55
html [data-theme ] .rtd__search__credits a {
56
56
color : var (--pst-color-link );
57
57
}
58
+ /*icons*/
59
+ html [data-theme ] .search__outer ::before {
60
+ /* this can’t be put on .search__outer__input, as <input/> supports no ::before */
61
+ position : absolute;
62
+ padding : 0.4em 0.3em ;
63
+ content : "\f002" ; /* fa-magnifying-glass */
64
+ font : var (--fa-font-solid );
65
+ color : var (--pst-color-text-muted );
66
+ }
67
+ html [data-theme ] .search__cross__img polygon {
68
+ fill : currentcolor;
69
+ }
58
70
/*input*/
59
71
html [data-theme ] .search__outer__input {
60
72
color : var (--pst-color-text-base );
73
+ background-image : none; /* hide the default search icon */
61
74
background-color : transparent;
62
75
border-bottom-color : var (--pst-color-border );
63
76
}
You can’t perform that action at this time.
0 commit comments