-
Notifications
You must be signed in to change notification settings - Fork 2.3k
[feat] result types: add weather result answerer and template #4663
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
5d6d2d6
808bdb4
3905d95
ee1238c
ffaf7ad
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| #answers .weather { | ||
| summary { | ||
| display: block; | ||
| list-style: none; | ||
| } | ||
|
|
||
| div.summary { | ||
| margin: 0; | ||
| padding: 0.5rem 1rem; | ||
| background-color: var(--color-header-background); | ||
| .rounded-corners-tiny; | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, we can fix it by replacing the
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Your first suggestion "list-style: none" works better .. for now .. the |
||
| } | ||
|
|
||
| table { | ||
| font-size: 0.9rem; | ||
| table-layout: fixed; | ||
| margin-top: 0.5rem; | ||
| margin-bottom: 0.5rem; | ||
| } | ||
|
|
||
| td { | ||
| padding: 0; | ||
| } | ||
|
|
||
| img.symbol { | ||
| width: 5rem; | ||
| margin: auto; | ||
| display: block; | ||
| } | ||
|
|
||
| .title { | ||
| // background-color: var(--color-result-keyvalue-even); | ||
| } | ||
|
|
||
| .measured { | ||
| // background-color: var(--color-result-keyvalue-odd); | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| .. _weather: | ||
|
|
||
| ======= | ||
| Weather | ||
| ======= | ||
|
|
||
| .. automodule:: searx.weather | ||
| :members: |
Uh oh!
There was an error while loading. Please reload this page.