Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
0e47e72c
Commit
0e47e72c
authored
May 22, 2015
by
JC Brand
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #407 from thierrytiti/CSS-font-path
CSS: Fonts Path: editable $font-path via sass/variables.scss
parents
fc1768d1
05cc4d71
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
docs/CHANGES.rst
docs/CHANGES.rst
+1
-0
sass/converse.scss
sass/converse.scss
+4
-2
sass/variables.scss
sass/variables.scss
+1
-0
No files found.
docs/CHANGES.rst
View file @
0e47e72c
...
...
@@ -14,6 +14,7 @@ Changelog
* CSS fix: position and width of the div #conversejs [thierrytiti]
* CSS fix: room-info bug on hover after room description loaded [thierrytiti]
* I18N: Autodetection of User Locale if no i18n setting is set. [thierrytiti]
* CSS: Fonts Path: editabable $font-path via sass/variables.scss [thierrytiti]
0.9.3 (2015-05-01)
------------------
...
...
sass/converse.scss
View file @
0e47e72c
...
...
@@ -8,10 +8,12 @@
@import
"../ruby/1.9.1/gems/bourbon-4.2.1/app/assets/stylesheets/_bourbon"
;
@import
"variables"
;
@font-face
{
font-family
:
'Converse-js'
;
src
:
url(
'../fonticons/fonts/
icomoon.eot?-mnoxh0')
;
src
:
url(
'../fonticons/fonts/icomoon.eot?#iefix-mnoxh0')
format
(
"embedded-opentype"
)
,
url('../fonticons/fonts/icomoon.woff?-mnoxh0')
format
(
"woff"
)
,
url('../fonticons/fonts/icomoon.ttf?-mnoxh0')
format
(
"truetype"
)
,
url('../fonticons/fonts/
icomoon.svg?-mnoxh0#icomoon')
format
(
"svg"
);
src
:
url(
$font-path + '
icomoon.eot?-mnoxh0')
;
src
:
url(
$font-path + 'icomoon.eot?#iefix-mnoxh0')
format
(
"embedded-opentype"
)
,
url($font-path + 'icomoon.woff?-mnoxh0')
format
(
"woff"
)
,
url($font-path + 'icomoon.ttf?-mnoxh0')
format
(
"truetype"
)
,
url($font-path + '
icomoon.svg?-mnoxh0#icomoon')
format
(
"svg"
);
font-weight
:
normal
;
font-style
:
normal
;
}
...
...
sass/variables.scss
View file @
0e47e72c
...
...
@@ -37,3 +37,4 @@
$mobile-chat-width
:
100%
;
$mobile-chat-height
:
400px
;
$font-path
:
"../fonticons/fonts/"
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment