more calendar popup styling
This commit is contained in:
@@ -244,7 +244,7 @@ Colors: Use the following - https://www.google.com/design/spec/style/color.html#
|
|||||||
#classname {
|
#classname {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-bottom: -10px;
|
margin-bottom: -10px;
|
||||||
font-size: 15px;
|
font-size: medium;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-content {
|
.modal-content {
|
||||||
@@ -258,7 +258,8 @@ Colors: Use the following - https://www.google.com/design/spec/style/color.html#
|
|||||||
}
|
}
|
||||||
|
|
||||||
#prof {
|
#prof {
|
||||||
font-size: 15px;
|
font-size: medium;
|
||||||
|
margin-bottom: -5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#info {
|
#info {
|
||||||
@@ -269,6 +270,7 @@ Colors: Use the following - https://www.google.com/design/spec/style/color.html#
|
|||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
font-size: medium;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The Close Button */
|
/* The Close Button */
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ $(function () {
|
|||||||
},
|
},
|
||||||
eventClick: function (data, event, view) {
|
eventClick: function (data, event, view) {
|
||||||
$("#myModal").fadeIn(fadetime);
|
$("#myModal").fadeIn(fadetime);
|
||||||
currLink = savedCourses[data.index].courseLink;
|
currLink = savedCourses[data.index].link;
|
||||||
var currunique = savedCourses[data.index].unique;
|
var currunique = savedCourses[data.index].unique;
|
||||||
$("#classname").html(`${savedCourses[data.index].coursename} <span style='font-size:small'>(${savedCourses[data.index].unique})</span>`);
|
$("#classname").html(`${savedCourses[data.index].coursename} <span style='font-size:small'>(${savedCourses[data.index].unique})</span>`);
|
||||||
$("#timelines").append(makeLine(savedCourses[data.index].datetimearr));
|
$("#timelines").append(makeLine(savedCourses[data.index].datetimearr));
|
||||||
@@ -85,7 +85,7 @@ $(function () {
|
|||||||
console.log(dayarr);
|
console.log(dayarr);
|
||||||
var building = "";
|
var building = "";
|
||||||
for (var i = 0; i < dayarr.length; i++) {
|
for (var i = 0; i < dayarr.length; i++) {
|
||||||
output += "<p class='time'><span style='font-size:medium'>" + dayarr[i] + "</span>: " + timearr[i].split(",")[0] + " to " + timearr[i].split(",")[1] + "<span style='float:right'; font-size: medium;>" + "</span></p>";
|
output += `<p class='time'><span>${dayarr[i]}</span>: ${timearr[i].split(",")[0]} to ${timearr[i].split(",")[1]}<span style='float:right';>GDC</span></p>`;
|
||||||
}
|
}
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user