You've already forked joomla_test
first commit
This commit is contained in:
1
modules/mod_sp_news_highlighter/assets/css/index.html
Normal file
1
modules/mod_sp_news_highlighter/assets/css/index.html
Normal file
@ -0,0 +1 @@
|
||||
<html><body bgcolor="#FFFFFF"></body></html>
|
19
modules/mod_sp_news_highlighter/assets/css/style.css
Normal file
19
modules/mod_sp_news_highlighter/assets/css/style.css
Normal file
@ -0,0 +1,19 @@
|
||||
/*
|
||||
# SP News Highlighter Module by JoomShaper.com
|
||||
# --------------------------------------------
|
||||
# Author JoomShaper http://www.joomshaper.com
|
||||
# Copyright (C) 2010 - 2012 JoomShaper.com. All Rights Reserved.
|
||||
# License - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
|
||||
# Websites: http://www.joomshaper.com
|
||||
*/
|
||||
.sp_news_higlighter{position:relative}
|
||||
.sp-nh-buttons{float:left;position:relative}
|
||||
.sp-nh-item{overflow:hidden;position:relative}
|
||||
span.sp-nh-text{margin:0 0 0 5px}
|
||||
span.sp-nh-title{margin-right:5px}
|
||||
span.sp-nh-date{font-size:70%;font-style:italic}
|
||||
.sp-nh-prev,.sp-nh-next{background-repeat:no-repeat;cursor:pointer;position:absolute;top:0;width:13px}
|
||||
.sp-nh-prev{background-position:0 50%;right:20px}
|
||||
.sp-nh-next{background-position:-26px 50%;right:5px}
|
||||
.sp-nh-prev:hover{background-position:-13px 50%}
|
||||
.sp-nh-next:hover{background-position:-39px 50%}
|
20
modules/mod_sp_news_highlighter/assets/css/style.php
Normal file
20
modules/mod_sp_news_highlighter/assets/css/style.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
header("Content-Type: text/css");
|
||||
$uniqid = $_GET['uniqid'];
|
||||
$width = $_GET['width'];
|
||||
$height = $_GET['height'];
|
||||
$linkcolor = $_GET['linkcolor'];
|
||||
$linkhover = $_GET['linkhover'];
|
||||
$arrows = $_GET['arrows'];
|
||||
?>
|
||||
.button_area {float:left;position:relative}
|
||||
span.text {margin:0 0 0 5px;}
|
||||
span.title{margin-right:5px;}
|
||||
span.date {font-size:70%;font-style:italic;}
|
||||
a.news_link {color:#<?php echo $linkcolor; ?>}
|
||||
a.news_link:hover {color:#<?php echo $linkhover; ?>}
|
||||
.sp-nh-prev,.sp-nh-next{width: 13px; height: <?php echo $height; ?>px; position: absolute; top:0;cursor:pointer;background-image: url(../images/<?php echo $arrows; ?>);background-repeat:no-repeat;}
|
||||
.sp-nh-prev{right:20px; background-position: 0 50%;}
|
||||
.sp-nh-next{right:5px; background-position: -26px 50%;}
|
||||
.sp-nh-prev:hover{background-position: -13px 50%;}
|
||||
.sp-nh-next:hover{background-position: -39px 50%;}
|
Reference in New Issue
Block a user