Skip to content
Merged
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
72 changes: 33 additions & 39 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -1310,12 +1310,13 @@ function replaceNewUpdater()
margin-bottom: 9px;
}

li.migrate {
li.migrate a {
color: #253746;
font-family: Montserrat, SemiBold;
font-size: 18px;
letter-spacing: 0.3px;
margin-bottom: 20px;
text-decoration: none;
}

#success-message {
Expand Down Expand Up @@ -1390,36 +1391,6 @@ function replaceNewUpdater()
padding: 1px 10px;
}

.rotate {
-moz-transition: all 1.5s ease-out;
-webkit-transition: all 1.5s ease-out;
transition: all 1.5s ease-out;

}

.rotate.down {
-moz-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
transition: all 1.5s ease-out;
}

.arrow-up {
width: 21px;
height: 12px;
background-image: url(images/arrow_up.png);
background-repeat: no-repeat;
margin: 0 auto;
}

.arrow-down {
width: 21px;
height: 12px;
background-image: url(images/arrow_down.png);
background-repeat: no-repeat;
margin: 0 auto;
}

.listItems {
background-image: url('images/check.svg');
background-repeat: no-repeat;
Expand Down Expand Up @@ -1506,6 +1477,17 @@ function replaceNewUpdater()
padding-left: 28%;
}

#arrowdown {
width: 21px;
height: 12px;
background-image: url(images/arrow_down.png);
background-repeat: no-repeat;
margin: 0 auto;
-moz-transition: all 1.5s ease-out;
-webkit-transition: all 1.5s ease-out;
-o-transition: all 1.5s ease-out;
transition: all 1.5s ease-out;
}
</style>
</head>
<body>
Expand Down Expand Up @@ -1720,10 +1702,9 @@ function replaceNewUpdater()

<!-- Info updater section -->
<div class="outer">
<button class="info-footer">
<div class="arrow-down rotate"></div>
<button class="info-footer" id="button">
<div id="arrowdown"></div>
</button>

<div class="inner">
<div id="wrap">
<div id="left">
Expand Down Expand Up @@ -1796,6 +1777,24 @@ class="book"/>
<!-- Load jquery-3.3.1.min.js file -->
<script type="text/javascript" src="../admin/js/jquery-3.3.1.min.js"></script>

<!-- script for arrow animation -->
<script type="text/javascript">
var rotated = false;

document.getElementById('button').onclick = function() {
var div = document.getElementById('arrowdown'),
deg = rotated ? 0 : 180;

div.style.webkitTransform = 'rotate('+deg+'deg)';
div.style.mozTransform = 'rotate('+deg+'deg)';
div.style.msTransform = 'rotate('+deg+'deg)';
div.style.oTransform = 'rotate('+deg+'deg)';
div.style.transform = 'preserve-3d('+deg+'deg)';

rotated = !rotated;
}
</script>

<!-- script for slideToggle -->
<script type="text/javascript">
$('.outer button').on("click", function () {
Expand All @@ -1805,11 +1804,6 @@ class="book"/>
});
</script>
<!-- Arrow transition -->
<script type="text/javascript">
$(".rotate").click(function () {
$(this).toggleClass("down");
})
</script>
<script type="text/javascript">
$("#center").addClass("cutomMinHeight");
$(".fixed").addClass("cutomMinHeight");
Expand Down