refactor(dashboard): font definition correction
This commit is contained in:
parent
39b035f0b0
commit
713c2e09a8
3 changed files with 6 additions and 6 deletions
|
@ -18,7 +18,7 @@ func (s *FileSuite) TestSimpleConfiguration(c *check.C) {
|
||||||
// TODO validate : run on 80
|
// TODO validate : run on 80
|
||||||
resp, err := http.Get("http://127.0.0.1/")
|
resp, err := http.Get("http://127.0.0.1/")
|
||||||
|
|
||||||
// Expected a 404 as we did not comfigure anything
|
// Expected a 404 as we did not configure anything
|
||||||
c.Assert(err, checker.IsNil)
|
c.Assert(err, checker.IsNil)
|
||||||
c.Assert(resp.StatusCode, checker.Equals, 404)
|
c.Assert(resp.StatusCode, checker.Equals, 404)
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
<nav class="navbar navbar-default">
|
<nav class="navbar navbar-default">
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
<a class="navbar-brand traefik-texttraefik-text" ui-sref="provider">/ˈTr<span class="traefik-blue">æ</span>fɪk/</a>
|
<a class="navbar-brand traefik-text" ui-sref="provider">/ˈTr<span class="traefik-blue">æ</span>fɪk/</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="collapse navbar-collapse">
|
<div class="collapse navbar-collapse">
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'charterregular';
|
font-family: 'charterregular';
|
||||||
src: url('fontss/charter_regular-webfont.eot');
|
src: url('fonts/charter_regular-webfont.eot');
|
||||||
src: url('fontss/charter_regular-webfont.eot?#iefix') format('embedded-opentype'),
|
src: url('fonts/charter_regular-webfont.eot?#iefix') format('embedded-opentype'),
|
||||||
url('fontss/charter_regular-webfont.woff') format('woff');
|
url('fonts/charter_regular-webfont.woff') format('woff');
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.traefik-text {
|
.traefik-text {
|
||||||
font-family: 'WebFont', Arial, sans-serif;
|
font-family: 'charterregular', Arial, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-body .panel-table__servers,
|
.panel-body .panel-table__servers,
|
||||||
|
|
Loading…
Reference in a new issue