CC-6072: Wrapper has weird positioning during page load

This commit is contained in:
drigato 2015-08-19 10:56:41 -04:00
parent 11652da40b
commit 59a9862ba3
5 changed files with 5 additions and 21 deletions

View file

@ -91,7 +91,7 @@ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
</div> </div>
<?php $hint = Application_Common_UsabilityHints::getUsabilityHint(); ?> <?php $hint = Application_Common_UsabilityHints::getUsabilityHint(); ?>
<div class="usability_hint" <?php if ($hint == "") { echo "style='display:none'"; } ?>><?php echo $hint; ?></div> <div class="usability_hint <?php if ($hint == "") { echo "hidden"; } ?>"><?php echo $hint; ?></div>
<div class="wrapper" id="content"> <div class="wrapper" id="content">
<?php echo $this->layout()->content ?> <?php echo $this->layout()->content ?>

View file

@ -115,7 +115,7 @@
</div> </div>
<?php $hint = Application_Common_UsabilityHints::getUsabilityHint(); ?> <?php $hint = Application_Common_UsabilityHints::getUsabilityHint(); ?>
<div class="usability_hint" <?php if ($hint == "") { echo "style='display:none'"; } ?>><?php echo $hint; ?></div> <div class="usability_hint <?php if ($hint == "") { echo "hidden"; } ?>"><?php echo $hint; ?></div>
<div class="wrapper" id="content"> <div class="wrapper" id="content">

View file

@ -108,11 +108,6 @@ div.ColVis_collectionBackground {
} }
@media screen and (max-width: 1475px) { @media screen and (max-width: 1475px) {
.wrapper {
-webkit-flex-flow: column !important;
flex-flow: column !important;
padding-top: 10px !important;
}
.content-pane { .content-pane {
height: auto !important; height: auto !important;
width: 100% !important; width: 100% !important;
@ -121,13 +116,6 @@ div.ColVis_collectionBackground {
flex: 8 100%; flex: 8 100%;
min-height: 50%; min-height: 50%;
} }
.usability_hint {
left: 0;
top: auto;
bottom: 0;
width: 100%;
z-index: 100;
}
.spl_sortable { .spl_sortable {
max-height: 50%; max-height: 50%;
} }

View file

@ -3434,6 +3434,7 @@ dd .stream-status {
-moz-transition: top 0.2s linear; -moz-transition: top 0.2s linear;
-o-transition: top 0.2s linear; -o-transition: top 0.2s linear;
transition: top 0.2s linear; transition: top 0.2s linear;
padding-top: 40px;
} }
.usability_hint a { .usability_hint a {
@ -3547,7 +3548,7 @@ button.btn-icon-text > i.icon-white {
left: 130px; left: 130px;
right: 0; right: 0;
bottom: 0; bottom: 0;
padding: 5px 10px 40px; padding: 10px 10px 40px;
border: none; border: none;
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;

View file

@ -13,9 +13,6 @@ $(document).ready(function() {
//this statement tells the browser to fade out any success message after 5 seconds //this statement tells the browser to fade out any success message after 5 seconds
setTimeout(function(){$(".success").fadeOut("slow", function(){$(this).empty()});}, 5000); setTimeout(function(){$(".success").fadeOut("slow", function(){$(this).empty()});}, 5000);
if ($('.usability_hint').is(':visible')) {
$(".wrapper").css("padding-top", USABILITY_HINT_PADDING); // Account for usability hint
}
}); });
/* /*
@ -197,11 +194,9 @@ function removeSuccessMsg() {
function hideHint(h) { function hideHint(h) {
h.hide("slow").addClass("hidden"); h.hide("slow").addClass("hidden");
$(".wrapper").css("padding-top", 10);
} }
function showHint(h) { function showHint(h) {
console.log("test");
h.show("slow").removeClass("hidden"); h.show("slow").removeClass("hidden");
$(".wrapper").css("padding-top", USABILITY_HINT_PADDING); // Account for usability hint $(".wrapper").css("padding-top", USABILITY_HINT_PADDING); // Account for usability hint
} }