Skip to content
Snippets Groups Projects
Commit a619282d authored by Alec Scott's avatar Alec Scott
Browse files

Fixed more buttons in server details

parent 80d10bba
No related branches found
No related tags found
1 merge request!540Fix Icon Overflow and Left Aligned Containers
......@@ -421,7 +421,7 @@ interactionDetails interaction context =
, ". Pro tip, press Ctrl+Alt+Shift inside the terminal window to show a graphical file upload/download tool!"
]
)
(\_ _ -> FeatherIcons.terminal |> FeatherIcons.toHtml [] |> Element.html)
(\_ _ -> FeatherIcons.terminal |> FeatherIcons.withSize 18 |> FeatherIcons.toHtml [] |> Element.html)
ITypes.UrlInteraction
ITypes.GuacDesktop ->
......@@ -433,14 +433,14 @@ interactionDetails interaction context =
, "'s desktop environment"
]
)
(\_ _ -> FeatherIcons.monitor |> FeatherIcons.toHtml [] |> Element.html)
(\_ _ -> FeatherIcons.monitor |> FeatherIcons.withSize 18 |> FeatherIcons.toHtml [] |> Element.html)
ITypes.UrlInteraction
ITypes.NativeSSH ->
ITypes.InteractionDetails
"Native SSH"
"Advanced feature: use your computer's native SSH client to get a command-line session with extra capabilities"
(\_ _ -> FeatherIcons.terminal |> FeatherIcons.toHtml [] |> Element.html)
(\_ _ -> FeatherIcons.terminal |> FeatherIcons.withSize 18 |> FeatherIcons.toHtml [] |> Element.html)
ITypes.TextInteraction
ITypes.Console ->
......@@ -463,7 +463,7 @@ interactionDetails interaction context =
, context.localization.virtualComputer
]
)
(\_ _ -> FeatherIcons.codesandbox |> FeatherIcons.toHtml [] |> Element.html)
(\_ _ -> FeatherIcons.codesandbox |> FeatherIcons.withSize 18 |> FeatherIcons.toHtml [] |> Element.html)
ITypes.UrlInteraction
......
......@@ -383,6 +383,7 @@ ipsAssignedToResourcesExpander context model ipsAssignedToResources =
Element.row [ Element.spacing 5 ]
[ Element.text changeActionVerb
, changeActionIcon
|> FeatherIcons.withSize 18
|> FeatherIcons.toHtml []
|> Element.html
|> Element.el []
......
......@@ -728,7 +728,7 @@ interactions context project server currentTime tlsReverseProxyHostname model =
, bottom = 0
}
]
(interactionDetails.icon (SH.toElementColor context.palette.primary) 22)
(interactionDetails.icon (SH.toElementColor context.palette.primary) 18)
, onPress =
case interactionStatus of
ITypes.Ready url ->
......
......@@ -507,6 +507,7 @@ onlyOwnExpander context model otherUsersServers =
Element.row [ Element.spacing 5 ]
[ Element.text changeActionVerb
, changeActionIcon
|> FeatherIcons.withSize 18
|> FeatherIcons.toHtml []
|> Element.html
|> Element.el []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment