Skip to content

Commit

Permalink
Issue #2886: use relative pathes for the font resources
Browse files Browse the repository at this point in the history
Because the hard coded path can be different in different installations.
  • Loading branch information
bschmalhofer committed Mar 9, 2024
1 parent 2e83827 commit 0808109
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions var/httpd/htdocs/skins/Agent/default/css/Core.Icons.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.

@font-face {
font-family: 'otobo';
src: url('/otobo-web/common/fonts/otobo.eot?8f3wlj');
src: url('/otobo-web/common/fonts/otobo.eot?8f3wlj#iefix') format('embedded-opentype'),
url('/otobo-web/common/fonts/otobo.ttf?8f3wlj') format('truetype'),
url('/otobo-web/common/fonts/otobo.woff?8f3wlj') format('woff'),
url('/otobo-web/common/fonts/otobo.svg?8f3wlj#otobo') format('svg');
src: url('../../../../common/fonts/otobo.eot?8f3wlj');
src: url('../../../../common/fonts/otobo.eot?8f3wlj#iefix') format('embedded-opentype'),
url('../../../../common/fonts/otobo.ttf?8f3wlj') format('truetype'),
url('../../../../common/fonts/otobo.woff?8f3wlj') format('woff'),
url('../../../../common/fonts/otobo.svg?8f3wlj#otobo') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
Expand Down
10 changes: 5 additions & 5 deletions var/httpd/htdocs/skins/Customer/default/css/Core.Icons.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.

@font-face {
font-family: 'otobo';
src: url('/otobo-web/common/fonts/otobo.eot?8f3wlj');
src: url('/otobo-web/common/fonts/otobo.eot?8f3wlj#iefix') format('embedded-opentype'),
url('/otobo-web/common/fonts/otobo.ttf?8f3wlj') format('truetype'),
url('/otobo-web/common/fonts/otobo.woff?8f3wlj') format('woff'),
url('/otobo-web/common/fonts/otobo.svg?8f3wlj#otobo') format('svg');
src: url('../../../../common/fonts/otobo.eot?8f3wlj');
src: url('../../../../common/fonts/otobo.eot?8f3wlj#iefix') format('embedded-opentype'),
url('../../../../common/fonts/otobo.ttf?8f3wlj') format('truetype'),
url('../../../../common/fonts/otobo.woff?8f3wlj') format('woff'),
url('../../../../common/fonts/otobo.svg?8f3wlj#otobo') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
Expand Down

0 comments on commit 0808109

Please sign in to comment.