mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-20 21:21:44 +01:00
fix TOS modal link, correct fixed-font for new tab. code blocks default to terminal font.
This commit is contained in:
parent
ce63a03528
commit
393629cc2f
@ -36,6 +36,10 @@ textarea {
|
|||||||
color: @base-color;
|
color: @base-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body code {
|
||||||
|
font-family: @terminal-font;
|
||||||
|
}
|
||||||
|
|
||||||
svg.icon {
|
svg.icon {
|
||||||
fill: @base-color;
|
fill: @base-color;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -339,7 +339,7 @@ class TosModal extends React.Component<{}, {}> {
|
|||||||
features).
|
features).
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<a target="_blank" href={util.makeExternLink("https://www.commandline.dev/tos.html")}>
|
<a target="_blank" href={util.makeExternLink("https://www.commandline.dev/tos")}>
|
||||||
Full Terms of Service
|
Full Terms of Service
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -91,6 +91,7 @@
|
|||||||
code {
|
code {
|
||||||
color: @prompt-green;
|
color: @prompt-green;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
font-family: @fixed-font;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.should-fade {
|
&.should-fade {
|
||||||
|
@ -240,9 +240,7 @@ class ScreenWindowView extends React.Component<{ screen: Screen }, {}> {
|
|||||||
<If condition={lines.length == 0}>
|
<If condition={lines.length == 0}>
|
||||||
<div key="window-empty" className="window-empty">
|
<div key="window-empty" className="window-empty">
|
||||||
<div>
|
<div>
|
||||||
<code>
|
<code>[workspace="{session.name.get()}" screen="{screen.name.get()}"]</code>
|
||||||
[workspace="{session.name.get()}" screen="{screen.name.get()}"]
|
|
||||||
</code>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</If>
|
</If>
|
||||||
|
Loading…
Reference in New Issue
Block a user