Women's Ridge Rise Stripe Uprisal Sweatpants (2024)

  1. Bottoms
  2. Pants

Patagonia® Worn Wear

Women's Ridge Rise Stripe Uprisal Sweatpants

Style # 26062

$41 $89

Skip to product information
  • Women's Ridge Rise Stripe Uprisal Sweatpants (1)

    Image is for representation only and not of the actual item. Refer to the item's condition notes for details.

1 / of 1

Image is for representation only and not of the actual item. Refer to the item's condition notes for details.

Patagonia® Worn Wear

Women's Ridge Rise Stripe Uprisal Sweatpants

Style # 26062

$41 $89

`; } function renderVariantList(optionType, currentVariant) { const isParent = optionType === 'parent_options'; return Object.keys(allVariants[optionType]).map((option, i) => { let radios = Object.keys(allVariants[optionType][option]).sort(sortRadios(option)).map((variation, j) => { if (option === 'size' && 'radio' === 'dropdown') { return renderVariantOption({ type: option, value: variation, disabled: !availableVariants?.[optionType]?.[option]?.[variation], selected: variation == currentVariant?.[optionType]?.[option], id: isParent ? `template--18888614478120__main-${option}-${j}` : `template--18888614478120__main-${i + 1}-${j}`, }) } return renderVariantSelector({ type: option, value: variation, disabled: !availableVariants?.[optionType]?.[option]?.[variation], handle: isParent ? availableVariants?.[optionType]?.[option]?.[variation] || allVariants[optionType]?.[option]?.[variation] : null, selected: variation == currentVariant?.[optionType]?.[option], id: isParent ? `template--18888614478120__main-${option}-${j}` : `template--18888614478120__main-${i + 1}-${j}`, }) }); const shouldShowSizeGuide = option === 'size'; const sizeGuideLink = '' ? `

` : ''; const sizeGuideModalOpener = `

`; const sizeGuideModal = shouldShowSizeGuide && false ? `

` : ''; const sizeGuide = shouldShowSizeGuide ? (false ? sizeGuideModalOpener : sizeGuideLink ): ''; const optionTitle = getTranslatedOption(option); const shouldDisplayPopupOpenerIcon = `false`; let variantFormElements = radios.join(''); const productInfoContainer = document.querySelector('.product__info-wrapper.grid__item.left .product__info-container'); if (option === 'colorDisplay' && 'carousel' === 'carousel' && productInfoContainer) { const productInfoContainerWidth = productInfoContainer.offsetWidth * 2; const pillMargin = 5; const pillWidth = 60 + pillMargin; const pillsWidth = pillWidth * radios.length; if (pillsWidth >= productInfoContainerWidth) { variantFormElements = renderColorVariantCarousel(radios); } } if (option === 'condition') { const modalOpener = `

`; return `

${optionTitle}: ${currentVariant[optionType][option]} ${ shouldDisplayPopupOpenerIcon == 'true' ? modalOpener : '' } ${variantFormElements}

${sizeGuide} ${sizeGuideModal}`; } if (option === 'size' && 'radio' === 'dropdown') { const id = "product-form__input-dropdown" variantFormElements = `

`; } return `

${optionTitle}: ${currentVariant[optionType][option]} ${variantFormElements}

${sizeGuide} ${sizeGuideModal}`; }).join('') } function updateAvailability(currentVariant) { getVariantPrice(currentVariant); optionTypes.forEach(optionType => { const isParent = optionType === 'parent_options'; Object.keys(allVariants[optionType]).forEach((option, i) => { Object.keys(allVariants[optionType][option]).sort(sortRadios(option)).forEach((variation, j) => { const el = document.getElementById(isParent ? `template--18888614478120__main-${option}-${j}` : `template--18888614478120__main-${ i + 1 }-${j}`); const isTagOption = el.tagName === 'OPTION'; if(!availableVariants[optionType]?.[option]?.[variation]) { el.classList.add('disabled'); el.removeAttribute('checked'); el.removeAttribute('selected'); el.setAttribute('aria-disabled', true); if (isTagOption) { el.setAttribute('disabled', true) } } else { el.classList.remove('disabled'); el.removeAttribute('aria-disabled'); if (isTagOption) { el.removeAttribute('disabled') } } if (variation == currentVariant[optionType][option]) { el.setAttribute('checked', true); el.setAttribute('selected', true); } else { el.removeAttribute('checked'); el.removeAttribute('selected'); } }); }); }); } function updateFieldsetAvailability(currentVariant) { const productFormInputs = document.querySelectorAll('.product-form__input'); productFormInputs.forEach(variantField => { const currentSelectedVariant = variantField.querySelector('input:checked, option:checked'); if (currentSelectedVariant && currentSelectedVariant.getAttribute('aria-disabled') === "true") { variantField.classList.add('variant-disabled'); } else { variantField.classList.remove('variant-disabled'); } }); } function renderAllVariants(update = false) { const currentVariant = {...getCurrentVariant(), cloned: true}; if (update) { optionTypes.forEach(optionType => { Object.keys(currentVariant[optionType]).forEach(option => { const optionTitle = getTranslatedOption(option); const variantLabel = document.querySelector(`legend[option=${option}] .form-label__current-variant`); variantLabel.classList.remove('form-label__current-variant--unselected'); variantLabel.textContent = currentVariant[optionType][option] || UNSELECTED_VARIANT_TEXT[option]; if (!currentVariant[optionType][option]) { variantLabel.classList.add('form-label__current-variant--unselected'); } const dropdown = document.querySelector(`select[option=${option}]`) if (dropdown) dropdown.setAttribute('data-acsb-tooltip', `${currentVariant[optionType][option]}`); const label = document.querySelector(`label[option=${option}]`) if (label) label.textContent = `${optionTitle}: ${currentVariant[optionType][option]}`; }) }) } allVariants.parent_options = {}; allVariants.variant_options = {}; availableVariants.parent_options = {}; availableVariants.variant_options = {}; const newVariants = getVariants(); newVariants.forEach(variant => { optionTypes.forEach(optionType => { Object.keys(variant[optionType]).forEach(option => { if(!allVariants[optionType][option]) allVariants[optionType][option] = {}; if(!allVariants[optionType][option][variant[optionType][option]]) { allVariants[optionType][option][variant[optionType][option]] = variant.handle } if (checkAvailable(variant, option, currentVariant)) { if(!availableVariants[optionType][option]) availableVariants[optionType][option] = {}; if(!availableVariants[optionType][option][variant[optionType][option]]) { availableVariants[optionType][option][variant[optionType][option]] = variant.handle } } }) }); }); if (update) { updateAvailability(currentVariant); } else { // initial render const sections = {}; optionTypes.forEach(optionType => { sections[optionType] = renderVariantList(optionType, currentVariant) }); document.querySelector('.trove-parents-container').innerHTML += sections.parent_options; document.querySelector('.trove-variants-container').innerHTML += sections.variant_options; } updateFieldsetAvailability(); } const preventAddToNavigationHistory = (url) => history.replaceState({}, '', url); renderAllVariants(); window.addEventListener('load', function(event) { renderAllVariants(true); });

Scars tell the story.

All items are functionally perfect, but may show signs of wear and repair.

Excellent Condition

Looks & feels like it never left the closet.


Great Condition

Small signs of visible wear.


Good Condition

Visible scars from repairs, normal wear & adventures.

Visit Patagonia.com for new gear in all sizes and colors.

Iconclad Guarantee

We guarantee everything we make. If you are not satisfied with one of our products at the time you receive it, or if one of our products does not perform to your satisfaction, send us an email at info@wornwear.com. Damage due to wear and tear will be repaired at a reasonable charge.

View full details

Product Details

Expand

Collapse

  • Made of 100% recycled knit fleece with a brushed interior and natural stretch; soft, durable fabric is a blend of 55% postconsumer recycled polyester and 45% recycled cotton
  • Simple pull-on sweatpants with an elasticized waistband, an adjustable drawstring and side-entry front pockets
  • Classic tapered legs with elasticized cuffs hold in warmth
  • Inseam is 28"
  • Made in a Fair Trade Certified™ factory, which means the people who made this product earned a premium for their labor

Material

Expand

Collapse

11.5-oz 55% postconsumer recycled polyester/45% recycled cotton fleece with a brushed back. Made in a Fair Trade Certified™ factory

Weight

Expand

Collapse

16.4 ounces

Women's Ridge Rise Stripe Uprisal Sweatpants (2)

Women's Ridge Rise Stripe Uprisal Sweatpants (2024)

References

Top Articles
Latest Posts
Article information

Author: Msgr. Refugio Daniel

Last Updated:

Views: 5967

Rating: 4.3 / 5 (74 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Msgr. Refugio Daniel

Birthday: 1999-09-15

Address: 8416 Beatty Center, Derekfort, VA 72092-0500

Phone: +6838967160603

Job: Mining Executive

Hobby: Woodworking, Knitting, Fishing, Coffee roasting, Kayaking, Horseback riding, Kite flying

Introduction: My name is Msgr. Refugio Daniel, I am a fine, precious, encouraging, calm, glamorous, vivacious, friendly person who loves writing and wants to share my knowledge and understanding with you.