Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge master #518

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions css/symb/custom/images/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?php
include_once('../../../config/symbini.php');
header('Content-Type: text/html; charset='.$CHARSET);
header('Location: '.$CLIENT_ROOT.'/index.php');
?>
<html>
<head>
<title>Forbidden</title>
<?php
$activateJQuery = false;
include_once($SERVER_ROOT.'/includes/head.php');
?>
</head>
<body>
<?php
$displayLeftMenu = true;
include($SERVER_ROOT.'/includes/header.php');
?>
<!-- This is inner text! -->
<div id="innertext">
<h1>Forbidden</h1>
<div style="font-weight:bold;">
You don't have permission to access this page.
</div>
<div style="font-weight:bold;margin:10px;">
<a href="<?php echo $CLIENT_ROOT; ?>/index.php">Return to index page</a>
</div>
</div>
<?php
include($SERVER_ROOT.'/includes/footer.php');
?>
</body>
</html>
Binary file added css/symb/custom/images/menu-item_divider.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added css/symb/custom/images/menu_pri_background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
70 changes: 70 additions & 0 deletions css/symb/custom/lbcc.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* Adding portal defined styles will override default styling defined within css/base.css
*/
body{
width: 1200px;
margin-top:0px;
}

/*Main table framework*/
#maintable{
width: 100%;
background-color:#FFFFFF;
border:1px solid #333333;
}

#maintable td{
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}

#middleleft{
}

#middleleftnomenu{
}

#middlecenter{
padding:0px;
}

#middleright{
}

#footer{
}

#footer p{
text-align: justify;
margin: 0px 100px;
}

#footer p img{
display:inline-block;
width: 100px;
margin-top: auto;
margin-bottom: auto;
vertical-align: middle;
}

#footer p:after{
display: inline-block;
width: 100%;
height: 0;
}

/*Central div in the middle center table div */
div.navpath {
}

#innertext{
}

#innertext a {
color: #337ab7;
}

#innertext a:hover {
color: #309bba;
text-decoration: underline
}
147 changes: 147 additions & 0 deletions css/symb/custom/lbcc_header.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
#header{
color:#FFFFFF;
background-color:black;
text-align:left;
padding:0px;
}

#top_header{
height:110px;
}

#header1 {
font-family: 'EB Garamond', serif;
font-size: 30px;
font-style: italic;
margin: 10px 10px 0px 70px;
}

#header2 {
font-family: 'Playfair Display SC', serif;
font-size: 18px;
margin: 0px 10px 3px 30px;
}

#header3 {
font-family: 'EB Garamond', serif;
font-size: 15px;
font-style: italic;
margin: 0px 10px 10px 30px;
}

#top_navbar{
clear:both;
height:33px;
background-image:url(images/menu_pri_background.jpg);
background-repeat:repeat-x;
background-position:top;
background-color:#c2c2c2;
}
#right_navbarlinks{
clear:both;
font-size:11px;
float:right;
color:#000000;
margin-top:9px;
}
#hor_dropdown{
list-style:none;
float:left;
position:relative;
font-size:12px;
width:auto;
height:31px;
margin-top: 0px;
margin-bottom: 0px;
padding-left:0px;
background-image:url(images/menu_pri_background.jpg);
background-repeat:repeat-x;
background-position:top;
background-color:#c2c2c2;
}
#hor_dropdown li{
float:left;
position:relative;
padding:0;
margin:0;
}
#hor_dropdown a{
display:block;
color:#000000;
text-decoration:none;
padding-top:8px;
padding-bottom:10px;
padding-left:10px;
padding-right:10px;
background-image: url(images/menu-item_divider.jpg);
background-repeat: no-repeat;
background-position: right bottom;
}
#hor_dropdown a:hover{
background-color:#999999;
color:#FFFFFF;
padding-top:9px;
padding-bottom:10px;
padding-left:10px;
padding-right:10px;
background-image:none;
}

/* Submenu */
#hor_dropdown ul {
list-style:none;
position:absolute;
left:-9999px;
top:-9999px;
background-color:#dcdcdc;
z-index:1000;
}
#hor_dropdown ul li{
float:none;
}
#hor_dropdown ul a{
white-space:nowrap;
}
#hor_dropdown li:hover ul {
left:0;
top:33px;
padding:0px;
z-index:1000;
}
#hor_dropdown li:hover ul a {
padding:5px;
text-decoration:none;
text-indent:8px;
padding-right:8px;
background-image: none;
background-color:#dcdcdc;
z-index:1000;
}
#hor_dropdown li:hover ul li a:hover {
background:#999999;
}

/* Sub-submenu */
#hor_dropdown li ul li ul {
display: none;
}
#hor_dropdown li ul li:hover ul {
left:100%;
top:0;
display: block;
padding:0px;
z-index:1000;
}
#hor_dropdown li ul li:hover ul a {
padding:5px;
text-decoration:none;
text-indent:8px;
padding-right:8px;
background-image: none;
background-color:#dcdcdc;
z-index:1000;
}
#hor_dropdown li ul li:hover ul li a:hover {
background:#999999;
}