Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
Tz Tools
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
4cefae94
authored
2011-01-24 16:56:29 +0000
by
Kevin Burton
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
tz-tools update; updated branding file; updated wp_function to include _enqeue_style
1 parent
c25bc9b6
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
com/Branding/css/tenzing.css
tz-tools.php
wp_functions.php
com/Branding/css/tenzing.css
View file @
4cefae9
...
...
@@ -445,3 +445,12 @@ input.dp-applied {
.TzPaginateResults
a
.active
{
color
:
#000
;
font-weight
:
bold
;
border
:
1px
solid
#ccc
;
padding
:
1px
3px
;
}
.my-profile-table
{
margin-bottom
:
20px
;}
.attendance-admin-table
{
border
:
none
;
border-collapse
:
collapse
;}
.attendance-admin-table
thead
td
{
font-weight
:
bold
;
border-bottom
:
2px
solid
#e8e8e8
;
padding
:
0
0
8px
0
;
}
.attendance-admin-table
tbody
td
{
border-bottom
:
1px
solid
#e8e8e8
;
padding
:
4px
0
;
}
...
...
tz-tools.php
View file @
4cefae9
...
...
@@ -29,6 +29,8 @@ use Exception;
_register_script
(
'xmlhttpHandler'
,
url
(
'scripts/xmlhttpHandler.js'
,
FILE
));
_register_script
(
'fireEvent'
,
url
(
'scripts/fireEvent.js'
,
FILE
));
_register_script
(
'Cookie'
,
url
(
'scripts/Cookie/Cookie.js'
,
FILE
));
_register_script
(
'Uploadify'
,
url
(
'scripts/uploadify/jquery.uploadify.v2.1.4.js'
,
FILE
));
_register_style
(
'UploadifyCSS'
,
url
(
'scripts/uploadify/uploadify.css'
,
FILE
));
import
(
'ShortCodes'
);
if
(
defined
(
'Tz\DEBUG'
)
&&
Tz\DEBUG
===
true
)
{
...
...
wp_functions.php
View file @
4cefae9
...
...
@@ -29,6 +29,11 @@ function _enqueue_script() {
return
call_user_func_array
(
'wp_enqueue_script'
,
$params
);
}
function
_register_style
()
{
$params
=
func_get_args
();
return
call_user_func_array
(
'wp_register_style'
,
$params
);
}
function
_enqueue_style
()
{
$params
=
func_get_args
();
return
call_user_func_array
(
'wp_enqueue_style'
,
$params
);
...
...
Please
register
or
sign in
to post a comment