mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
cmd/tailscale/cli: split out web.css file
CSS formatted with: npx prettier --use-tabs --write cmd/tailscale/cli/web.css Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
This commit is contained in:
parent
7f03c0f8fe
commit
ea714c6054
1337
cmd/tailscale/cli/web.css
Normal file
1337
cmd/tailscale/cli/web.css
Normal file
File diff suppressed because it is too large
Load Diff
@ -30,7 +30,15 @@
|
|||||||
//go:embed web.html
|
//go:embed web.html
|
||||||
var webHTML string
|
var webHTML string
|
||||||
|
|
||||||
var tmpl = template.Must(template.New("html").Parse(webHTML))
|
//go:embed web.css
|
||||||
|
var webCSS string
|
||||||
|
|
||||||
|
var tmpl *template.Template
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
tmpl = template.Must(template.New("web.html").Parse(webHTML))
|
||||||
|
template.Must(tmpl.New("web.css").Parse(webCSS))
|
||||||
|
}
|
||||||
|
|
||||||
type tmplData struct {
|
type tmplData struct {
|
||||||
Profile tailcfg.UserProfile
|
Profile tailcfg.UserProfile
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user