Changeset 3266403
- Timestamp:
- 04/03/2025 01:26:48 PM (12 months ago)
- Location:
- caseyak/trunk/public
- Files:
-
- 2 edited
-
css/caseyak-public.css (modified) (1 diff)
-
js/mva.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
caseyak/trunk/public/css/caseyak-public.css
r3265927 r3266403 67 67 68 68 #yakContainer-111 { 69 position: fixed;69 position: sticky; 70 70 bottom: 10px; 71 71 z-index: 2147483648; -
caseyak/trunk/public/js/mva.js
r3265927 r3266403 1479 1479 1480 1480 if (slidePosition == 'left') { 1481 yakContainer.setAttribute('style', 'width: 340px; transition: left 0.6s;left:-700px');1481 yakContainer.setAttribute('style', 'width: 340px; transition: margin-left 0.6s;margin-left:-700px'); 1482 1482 } else { 1483 yakContainer.setAttribute('style', 'width: 340px; transition: right 0.6s;right:-700px');1483 yakContainer.setAttribute('style', 'width: 340px; transition: margin-right 0.6s;margin-right:-700px'); 1484 1484 } 1485 1485 … … 1605 1605 1606 1606 if (slidePosition == 'left') { 1607 document.getElementById('yakContainer-111').style. left = isCondensed ? '0px' : '10px';1607 document.getElementById('yakContainer-111').style.marginLeft = isCondensed ? '0px' : '10px'; 1608 1608 } else { 1609 document.getElementById('yakContainer-111').style. right = isCondensed ? '0px' : '10px';1609 document.getElementById('yakContainer-111').style.marginRight = isCondensed ? '0px' : '10px'; 1610 1610 } 1611 1611 … … 1616 1616 1617 1617 document.getElementById('yakFormHeaderClose-111').addEventListener('click', function () { 1618 if (slidePosition == 'left') { 1619 document.getElementById('yakContainer-111').style.left = '-500px'; 1620 } else { 1621 document.getElementById('yakContainer-111').style.right = '-500px'; 1622 } 1618 document.getElementById('yakContainer-111').remove() 1623 1619 }); 1624 1620 };
Note: See TracChangeset
for help on using the changeset viewer.