Skip to content
Snippets Groups Projects
Commit b224dc93 authored by Tim Steiner's avatar Tim Steiner
Browse files

Merge branch 'master' into improved-chain-gui

Conflicts:
	application/layouts/scripts/unl_wdn.phtml
parents d6c70cde fbaa861b
No related branches found
No related tags found
No related merge requests found
...@@ -2,10 +2,7 @@ ...@@ -2,10 +2,7 @@
$this->headLink()->appendStylesheet($this->baseUrl() . '/css/index.css', 'all'); $this->headLink()->appendStylesheet($this->baseUrl() . '/css/index.css', 'all');
$this->headLink()->appendStylesheet($this->baseUrl() . '/css/print.css', 'print'); $this->headLink()->appendStylesheet($this->baseUrl() . '/css/print.css', 'print');
$this->headLink()->appendStylesheet('https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/themes/base/jquery.ui.all.css', 'all');
$this->headScript()->prependFile($this->baseUrl() . '/javascript/index.js'); $this->headScript()->prependFile($this->baseUrl() . '/javascript/index.js');
$this->headScript()->prependFile('https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js');
$this->headScript()->prependFile('https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js');
// Put this in a try block because unknown browsers throw exceptions // Put this in a try block because unknown browsers throw exceptions
try { try {
......
<?php <?php
$this->headScript()->prependFile('https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js');
$this->headScript()->prependFile('https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js');
$this->headLink()->appendStylesheet($this->baseUrl() . '/css/bulletin/edit.css', 'all'); $this->headLink()->appendStylesheet($this->baseUrl() . '/css/bulletin/edit.css', 'all');
$this->headScript()->appendFile($this->baseUrl() . '/ice/lib/rangy-1.2/rangy-core.js'); $this->headScript()->appendFile($this->baseUrl() . '/ice/lib/rangy-1.2/rangy-core.js');
$this->headScript()->appendFile($this->baseUrl() . '/ice/lib/rangy-1.2/rangy-cssclassapplier.js'); $this->headScript()->appendFile($this->baseUrl() . '/ice/lib/rangy-1.2/rangy-cssclassapplier.js');
......
...@@ -2,8 +2,9 @@ ...@@ -2,8 +2,9 @@
.current del, .current del,
.current del a { .current del a {
color: #880000 !important; box-shadow: 0 0 0.5em #c80, inset 0 0 2em #fc8;
text-decoration: line-through; background-color: #fec;
text-decoration: none;
} }
.current ins { .current ins {
display: none; display: none;
...@@ -13,14 +14,11 @@ ...@@ -13,14 +14,11 @@
} }
.proposed ins, .proposed ins,
.proposed ins a { .proposed ins a {
color: #008800 !important; box-shadow: 0 0 0.5em #08c, inset 0 0 2em #8cf;
background-color: #cef;
text-decoration: none; text-decoration: none;
} }
.bulletinEntry a {
color: #0000cc !important;
}
#otherInfo caption { #otherInfo caption {
margin-top: 1em; margin-top: 1em;
text-align: left; text-align: left;
......
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
.courseInfo .deleted, .courseInfo .deleted,
.courseInfo .current del { .courseInfo .current del {
color:#880000; box-shadow: 0 0 0.5em #c80, inset 0 0 2em #fc8;
background-color: #fec;
text-decoration: none; text-decoration: none;
} }
.courseInfo .current ins { .courseInfo .current ins {
...@@ -13,7 +14,8 @@ ...@@ -13,7 +14,8 @@
} }
.courseInfo .new, .courseInfo .new,
.courseInfo .proposed ins { .courseInfo .proposed ins {
color:#008800; box-shadow: 0 0 0.5em #08c, inset 0 0 2em #8cf;
background-color: #cef;
text-decoration: none; text-decoration: none;
} }
.courseInfo div#justification { .courseInfo div#justification {
...@@ -43,8 +45,9 @@ ...@@ -43,8 +45,9 @@
margin-bottom:2px; margin-bottom:2px;
padding-left:5px; padding-left:5px;
} }
.courseInfo div.removed { .courseInfo div.removed del {
color:#880000; box-shadow: 0 0 0.2em #c80, inset 0 0 2em #fc8;
background-color: #fec;
text-decoration:line-through; text-decoration:line-through;
} }
......
.change-removed { .change-removed td {
color: #c00; box-shadow: 0 0 0.5em #c80, inset 0 0 2em #fc8;
background-color: #fec !important;
text-decoration: line-through; text-decoration: line-through;
} }
.change-added { .change-added td {
color: #0c0; box-shadow: 0 0 0.5em #08c, inset 0 0 2em #8cf;
background-color: #cef !important;
} }
#otherInfo caption { #otherInfo caption {
margin-top: 1em; margin-top: 1em;
......
This diff is collapsed.
...@@ -934,7 +934,7 @@ ...@@ -934,7 +934,7 @@
is: function (s) { is: function (s) {
return /^(https?|ftp|file):\/\/$/.test(s); return /^(https?|ftp|file):\/\/$/.test(s);
}, format: function (s) { }, format: function (s) {
return jQuery.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//), '')); return $.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//), ''));
}, type: "text" }, type: "text"
}); });
......
var queueManager = {}; var queueManager = {};
$().ready(function() { WDN.jQuery().ready(function() {
$('#period').change(queueManager.handleChangePeriod); WDN.jQuery('#period').change(queueManager.handleChangePeriod);
}); });
queueManager.handleChangePeriod = function() queueManager.handleChangePeriod = function()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment