Skip to content

Commit

Permalink
[BACKLOG-18719] Fixes file-open-save loading page font style issues a…
Browse files Browse the repository at this point in the history
…nd cleans up CSS
  • Loading branch information
pentaho-mracine committed Dec 27, 2017
1 parent 8a76a83 commit aac8114
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ define([
*/
function activate() {
angular.module(module.name, [resizeModule.name, "ui.router"])
.component(loadingComponent.name, loadingComponent.options)
.component(appComponent.name, appComponent.options)
.component(cardComponent.name, cardComponent.options)
.component(folderComponent.name, folderComponent.options)
.component(errorComponent.name, errorComponent.options)
.component(loadingComponent.name, loadingComponent.options)
.component(breadcrumbComponent.name, breadcrumbComponent.options)
.component(filesComponent.name, filesComponent.options)
.component(searchComponent.name, searchComponent.options)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<!-- Requesting webcontext.js one level above to workaround the filter on PDI issue (BACKLOG-17885) -->
<!-- Remove '../' when not needed -->
<script type="text/javascript" src="../webcontext.js?requireJsOnly=true"></script>
<link rel="stylesheet" href="css/fonts/opensans/style.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/fonts/opensans/style.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<script>
(function () {
"use strict";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
@font-face {
font-family: 'OpenSansRegular';
src: url('opensans-regular.eot');
src: url('opensans-regular.eot') format('embedded-opentype'),
url('opensans-regular.woff') format('woff'),
url('opensans-regular.ttf') format('truetype'),
Expand All @@ -9,7 +8,6 @@

@font-face {
font-family: 'OpenSansLight';
src: url('opensans-light.eot');
src: url('opensans-light.eot') format('embedded-opentype'),
url('opensans-light.woff') format('woff'), url('opensans-light.ttf')
format('truetype'), url('opensans-light.svg#OpenSansLight')
Expand Down

0 comments on commit aac8114

Please sign in to comment.