Fix #111 - Remove reference to background.png. Use just CSS colour and opacity now for the background to a collection

Dev: Update make script to built jQuery UI CSS file in place since it is held in the repo as well
pull/112/head
Allan Jardine 10 years ago
parent fbc05c74e8
commit f99d15aa1d

@ -343,7 +343,7 @@ div.DTTT_container {
padding: 3px 10px;
border: 1px solid #d0d0d0;
background-color: #fff;
color: #333 !important;
color: #333;
cursor: pointer;
}
@ -353,7 +353,7 @@ div.DTTT_container {
}
.DTTT_disabled {
color: #999 !important;
color: #999;
}
table.DTTT_selectable tbody tr {
@ -378,7 +378,7 @@ div.DTTT_collection a.DTTT_button {
}
div.DTTT_collection_background {
background: url(../images/background.png) repeat top left;
background: black;
z-index: 2001;
}

@ -479,7 +479,7 @@ div.DTTT_collection {
}
div.DTTT_collection_background {
background: url(../images/background.png) repeat top left;
background: black;
z-index: 2001;
}

@ -10,8 +10,8 @@ DT_SRC=$(dirname $(dirname $(pwd)))
DT_BUILT="${DT_SRC}/built/DataTables"
. $DT_SRC/build/include.sh
scss_compile $DT_SRC/extensions/Plugins/integration/jqueryui/dataTables.jqueryui.scss
# Only copying the integration files
rsync -r integration $OUT_DIR
scss_compile $OUT_DIR/integration/jqueryui/dataTables.jqueryui.scss

Loading…
Cancel
Save