added font Neeon
This commit is contained in:
parent
f14014b091
commit
62bde4531f
|
@ -44,6 +44,7 @@ MIME_TYPES = (
|
|||
)
|
||||
|
||||
TYPE_CHOICES = (
|
||||
('', '---'),
|
||||
('image', 'Image'),
|
||||
('audio', 'Audio'),
|
||||
('text', 'Text'),
|
||||
|
|
|
@ -16,7 +16,7 @@ CKEDITOR.editorConfig = function( config )
|
|||
];
|
||||
|
||||
config.contentsCss = '/static/css/fonts.css';
|
||||
config.font_names = "Edgware Road;Berlin Safari;SG Grotesque;Tallys;GraublauWeb;Fontin;Tagesschrift;";
|
||||
config.font_names = "Edgware Road;Berlin Safari;SG Grotesque;Tallys;GraublauWeb;Fontin;Tagesschrift;Neeon;";
|
||||
|
||||
|
||||
// Define changes to default configuration here. For example:
|
||||
|
|
|
@ -9,6 +9,11 @@
|
|||
src: url(/static/fonts/Tallys_15.otf) format("opentype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Neeon;
|
||||
src: url(/static/fonts/Neeon.otf) format("opentype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Fontin;
|
||||
src: url(/static/fonts/Fontin-Regular.otf) format("opentype");
|
||||
|
|
BIN
edgware/static/fonts/Neeon.otf
Normal file
BIN
edgware/static/fonts/Neeon.otf
Normal file
Binary file not shown.
|
@ -3,6 +3,7 @@ $(function() {
|
|||
e.preventDefault();
|
||||
var formData = $(this).serializeArray();
|
||||
$('#submitFilter').val("Loading...").attr("disabled", "disabled");
|
||||
$('#previewPane').empty();
|
||||
$.post("files/json_list", formData, function(data) {
|
||||
$('#submitFilter').val("Submit").removeAttr("disabled");
|
||||
// MAAKICHUT = response;
|
||||
|
|
Loading…
Reference in New Issue
Block a user