File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -923,7 +923,7 @@ function () {
923
923
key : "createPopover" ,
924
924
value : function createPopover ( buttonId ) {
925
925
var self = this ;
926
- var html = '<div id="myForm" class="hide"><label for="title">File Title:</label><input type="text" name="title" id=' + "title" + buttonId + ' class="form-control input-md"><label for="desc">File Description:</label><textarea rows="3" name="desc" id=' + "desc" + buttonId + ' class="form-control input-md"></textarea><button type="button" class="btn btn-primary" id="save"> Save</button></div>' ;
926
+ var html = '<div id="myForm" class="hide"><label for="title" class="popover_headings" >File Title:</label><input type="text" name="title" id=' + "title" + buttonId + ' class="form-control input-md"><label for="desc" class="popover_headings" >File Description:</label><textarea rows="3" name="desc" id=' + "desc" + buttonId + ' class="form-control input-md"></textarea><button type="button" class="btn btn-primary popover_headings " id="save"> Save</button></div>' ;
927
927
$ ( '#' + buttonId ) . popover ( {
928
928
placement : 'bottom' ,
929
929
title : 'Add Description' ,
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ function () {
176
176
key : "createPopover" ,
177
177
value : function createPopover ( buttonId ) {
178
178
var self = this ;
179
- var html = '<div id="myForm" class="hide"><label for="title">File Title:</label><input type="text" name="title" id=' + "title" + buttonId + ' class="form-control input-md"><label for="desc">File Description:</label><textarea rows="3" name="desc" id=' + "desc" + buttonId + ' class="form-control input-md"></textarea><button type="button" class="btn btn-primary" id="save"> Save</button></div>' ;
179
+ var html = '<div id="myForm" class="hide"><label for="title" class="popover_headings" >File Title:</label><input type="text" name="title" id=' + "title" + buttonId + ' class="form-control input-md"><label for="desc" class="popover_headings" >File Description:</label><textarea rows="3" name="desc" id=' + "desc" + buttonId + ' class="form-control input-md"></textarea><button type="button" class="btn btn-primary popover_headings " id="save"> Save</button></div>' ;
180
180
$ ( '#' + buttonId ) . popover ( {
181
181
placement : 'bottom' ,
182
182
title : 'Add Description' ,
Original file line number Diff line number Diff line change @@ -292,4 +292,7 @@ margin-left: 70px;
292
292
justify-content : center;
293
293
flex-direction : column;
294
294
295
+ }
296
+ .popover_headings {
297
+ font-family : 'Ubuntu Condensed' ;
295
298
}
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ class View{
171
171
// create a popover against each import method for adding a file title and description
172
172
createPopover ( buttonId ) {
173
173
let self = this ;
174
- var html = '<div id="myForm" class="hide"><label for="title">File Title:</label><input type="text" name="title" id=' + "title" + buttonId + ' class="form-control input-md"><label for="desc">File Description:</label><textarea rows="3" name="desc" id=' + "desc" + buttonId + ' class="form-control input-md"></textarea><button type="button" class="btn btn-primary" id="save"> Save</button></div>'
174
+ var html = '<div id="myForm" class="hide"><label for="title" class="popover_headings" >File Title:</label><input type="text" name="title" id=' + "title" + buttonId + ' class="form-control input-md"><label for="desc" class="popover_headings" >File Description:</label><textarea rows="3" name="desc" id=' + "desc" + buttonId + ' class="form-control input-md"></textarea><button type="button" class="btn btn-primary popover_headings " id="save"> Save</button></div>'
175
175
$ ( '#' + buttonId ) . popover ( {
176
176
177
177
placement : 'bottom' ,
You can’t perform that action at this time.
0 commit comments