Skip to content

Commit

Permalink
webui: Update Bootstrap from version 3.3.7 to version 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MKleusberg committed Dec 21, 2023
1 parent 0f34415 commit d29b765
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 6,775 deletions.
6,757 changes: 0 additions & 6,757 deletions webui/css/bootstrap-3.3.7.css

This file was deleted.

1 change: 0 additions & 1 deletion webui/css/bootstrap-3.3.7.css.map

This file was deleted.

6 changes: 0 additions & 6 deletions webui/css/bootstrap-3.3.7.min.css

This file was deleted.

1 change: 0 additions & 1 deletion webui/css/bootstrap-3.3.7.min.css.map

This file was deleted.

6 changes: 6 additions & 0 deletions webui/css/bootstrap.min.css

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions webui/js/bootstrap.min.js

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions webui/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3302,11 +3302,8 @@ func main() {
}

// CSS
http.Handle("/css/bootstrap-3.3.7.min.css", gz.GzipHandler(logReq(func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, filepath.Join(com.Conf.Web.BaseDir, "webui", "css", "bootstrap-3.3.7.min.css"))
})))
http.Handle("/css/bootstrap.min.css.map", gz.GzipHandler(logReq(func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, filepath.Join(com.Conf.Web.BaseDir, "webui", "css", "bootstrap-3.3.7.min.css.map"))
http.Handle("/css/bootstrap.min.css", gz.GzipHandler(logReq(func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, filepath.Join(com.Conf.Web.BaseDir, "webui", "css", "bootstrap.min.css"))
})))
http.Handle("/css/font-awesome-4.7.0.min.css", gz.GzipHandler(logReq(func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, filepath.Join(com.Conf.Web.BaseDir, "webui", "css", "font-awesome-4.7.0.min.css"))
Expand Down
2 changes: 1 addition & 1 deletion webui/templates/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<script src="/js/angular-sanitize-1.8.2.min.js"></script>
<script src="/js/jquery-3.6.4.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<link href="/css/bootstrap-3.3.7.min.css" rel="stylesheet">
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/css/font-awesome-4.7.0.min.css" integrity="sha384-dNpIIXE8U05kAbPhy3G1cz+yZmTzA6CY8Vg/u2L9xRnHjJiAK76m2BIEaSEV+/aU" crossorigin="anonymous">
<link href="/css/local.css" rel="stylesheet">
<script src="//cdn.auth0.com/js/lock/11.35.0/lock.min.js"></script>
Expand Down

0 comments on commit d29b765

Please sign in to comment.