Commit f14bd2cd authored by nkhan's avatar nkhan

*** empty log message ***


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104318 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 18c3b9a4
/* Font loaded - elegant icons*/
@font-face
{
/* declare fonts */
font-family: "MuseoLight-300";
src: url("/ibase/webitm/css/fonts/Museo300-Regular.eot");
src: local("Museo 300"), local("Museo-300"),
url("/ibase/webitm/css/fonts/Museo300-Regular.woff") format("woff"),
url("/ibase/webitm/css/fonts/Museo300-Regular.otf") format("opentype"),
url("/ibase/webitm/css/fonts/Museo300-Regular.svg#Museo-300") format("svg");
}
*
{
font-family: "MuseoLight-300", sans-serif !important;
}
.FrameFlowPanel
{
overflow-x: hidden !important;
overflow-y: auto !important;
}
body,div,form,td,table,a
{
margin: 0;
padding: 0;
}
.prev, .next
{
color: rgb(156, 135, 135);
font-size: 30px;
position: relative;
cursor: pointer;
}
.firstDiv
{
float: left;
white-space: nowrap;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
font-size: 19px;
background-color: gray;
color: white;
height: 30px;
text-align: left;
padding-top: 3px;
margin-top: 2px;
padding-left: 10px
}
body,div,form,td,table,a {
margin: 0;
padding: 0;
}
.itemtbl {
font-size: 12px;
width: 100%;
border: 1px solid rgb(219, 217, 208);
}
.rght {
text-align: right;
}
.highlight {
color: black;
}
.itemtbl td {
background-color: #FFF;
padding: 10px;
}
#next
{
margin-left: 6.2em;
}
#prev
{
/* margin-left: 61px; */
float: left;
}
.imtprnt
{
float: left;
margin: .1em 0;
white-space: nowrap;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
height: 25px;
padding-top: 3px;
color: #000;
font-size: 16px;
margin-top: 98px;
padding-left: 10px;
/* border: 1px solid rgb(219, 217, 208);
*/
}
#bkkdiv {
position: absolute;
z-index: 0;
display: block;
text-align: center;
display: none;
}
#bg-text {
color: red;
font-size: 45px;
opacity: 0.3;
margin-top: 154px;
transform: rotate(300deg);
-webkit-transform: rotate(300deg);
border-bottom: 1px solid red;
border-top: 1px solid red;
width:100%;
}
function trimSpace(doc_id)
{
return doc_id.replace(/^\s+|\s+$/gm,'');
}
$(document).ready(function()
{
$(".DBImage1 div:first").show();
$("#next").click(function() {
if ($(".DBImage1 div:visible").next().length != 0)
{
$(".DBImage1 div:visible").next().show().prev().hide();
}
return false;
});
$("#prev").click(function() {
if($(".DBImage1 div:visible").prev().length != 0)
{
$(".DBImage1 div:visible").prev().show().next().hide();
}
else
{
$(".DBImage1 div:visible").hide();
$(".DBImage1 div:first").show();
}
return false;
});
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment