2
main.go
@@ -94,7 +94,7 @@ func startDashboardServer(c conf.Configuration, k *kube.ResourceProvider, port i
|
||||
dashboard.EndpointHandler(w, r, c, k)
|
||||
})
|
||||
router.HandleFunc("/favicon.ico", func(w http.ResponseWriter, r *http.Request) {
|
||||
http.ServeFile(w, r, "public/favicon.ico")
|
||||
http.ServeFile(w, r, "pkg/dashboard/assets/favicon-32x32.png")
|
||||
})
|
||||
router.HandleFunc("/details/{category}", func(w http.ResponseWriter, r *http.Request) {
|
||||
vars := mux.Vars(r)
|
||||
|
||||
@@ -6,28 +6,30 @@ body {
|
||||
}
|
||||
|
||||
.navbar {
|
||||
padding: 20px 20px 0;
|
||||
padding-top: 20px;
|
||||
}
|
||||
.navbar, .main-content {
|
||||
width: 960px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.navbar .navbar-content {
|
||||
margin: 0 auto;
|
||||
width: 900px;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
|
||||
.navbar .navbar-right {
|
||||
padding: 15px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.navbar .logo {
|
||||
width: 280px;
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.navbar span.oss-text {
|
||||
color: #23103A;
|
||||
display: block;
|
||||
font-size: 11px;
|
||||
margin: 3px 0;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.navbar a {
|
||||
@@ -35,12 +37,7 @@ body {
|
||||
}
|
||||
|
||||
.navbar .ro-logo {
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
width: 960px;
|
||||
margin: 0 auto;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.card {
|
||||
|
||||
|
Before Width: | Height: | Size: 705 B After Width: | Height: | Size: 701 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 24 KiB |
@@ -6,7 +6,7 @@
|
||||
</a>
|
||||
<div class="navbar-right">
|
||||
<a href="https://reactiveops.com?source=polaris" target="_blank">
|
||||
<span class="oss-text">Open Source Project By</span>
|
||||
<span class="oss-text">An Open Source Project By</span>
|
||||
<img class="ro-logo" src="/static/images/ro-logo.png" alt="ReactiveOps" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||