mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-31 18:18:02 +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;
|
||||
}
|
||||
|
||||
body code {
|
||||
font-family: @terminal-font;
|
||||
}
|
||||
|
||||
svg.icon {
|
||||
fill: @base-color;
|
||||
width: 100%;
|
||||
|
@ -339,7 +339,7 @@ class TosModal extends React.Component<{}, {}> {
|
||||
features).
|
||||
</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
|
||||
</a>
|
||||
</p>
|
||||
|
@ -91,6 +91,7 @@
|
||||
code {
|
||||
color: @prompt-green;
|
||||
background-color: transparent;
|
||||
font-family: @fixed-font;
|
||||
}
|
||||
|
||||
&.should-fade {
|
||||
|
@ -240,9 +240,7 @@ class ScreenWindowView extends React.Component<{ screen: Screen }, {}> {
|
||||
<If condition={lines.length == 0}>
|
||||
<div key="window-empty" className="window-empty">
|
||||
<div>
|
||||
<code>
|
||||
[workspace="{session.name.get()}" screen="{screen.name.get()}"]
|
||||
</code>
|
||||
<code>[workspace="{session.name.get()}" screen="{screen.name.get()}"]</code>
|
||||
</div>
|
||||
</div>
|
||||
</If>
|
||||
|
Loading…
Reference in New Issue
Block a user