mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
Fix default/notebook tabs css
This commit is contained in:
parent
fae8062d39
commit
39f16ff83d
@ -1,4 +1,4 @@
|
||||
.container {
|
||||
.readable-container {
|
||||
max-width: 600px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
@ -9,25 +9,25 @@
|
||||
color: #efefef !important;
|
||||
}
|
||||
|
||||
.container p, .container li {
|
||||
.readable-container p, .readable-container li {
|
||||
font-size: 16px !important;
|
||||
color: #efefef !important;
|
||||
margin-bottom: 22px;
|
||||
line-height: 1.4 !important;
|
||||
}
|
||||
|
||||
.container li > p {
|
||||
.readable-container li > p {
|
||||
display: inline !important;
|
||||
}
|
||||
|
||||
.container code {
|
||||
.readable-container code {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.container :not(pre) > code {
|
||||
.readable-container :not(pre) > code {
|
||||
white-space: normal !important;
|
||||
}
|
||||
|
||||
.container .hoverable {
|
||||
.readable-container .hoverable {
|
||||
font-size: 14px;
|
||||
}
|
@ -100,7 +100,7 @@ def convert_to_markdown(string):
|
||||
|
||||
def generate_basic_html(string):
|
||||
string = convert_to_markdown(string)
|
||||
string = f'<style>{readable_css}</style><div class="container">{string}</div>'
|
||||
string = f'<style>{readable_css}</style><div class="readable-container">{string}</div>'
|
||||
return string
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user