Modal: Gestion Acces Droits

When a modal is triggered, the modal-open class triggers
<div class="sds-modal modal fade" id="gestionAccesDroits" aria-hidden="true" tabindex="-1">
    <div class="sds-modal__dialog modal-dialog modal-sm-loading modal-dialog-centered modal-dialog-scrollable">
        <div class="sds-modal__content modal-content">

            <div class="sds-modal__header modal-header">

                <div class="sds-modal__title modal-title">
                    Assignation Entitée(s)
                </div>

                <button type="button" class="sds-btn -iconBtn -btnSecondary -ghost sds-modal__close" data-dismiss="modal" aria-label="Close">

                    <span class="sds-icon sds-icon-close"></span>

                </button>

            </div>

            <div class="sds-modal__body modal-body">

                <div class="sds-spotSelectList">
                    <div class="sds-spotSelect sds-showCustomIndicatorHover  -noPic">
                        <input type="radio" id="gestion-droits-spot-select-1" class="sds-spotSelect__radioInput sr-only" value="" name="radio-name">
                        <div data-scope-wrapper="box" data-scope="flat" class="sds-spotSelect__body">
                            <div class="sds-spotSelect__content">

                                <span class="sds-radioDot  sds-spotSelect__checkItem" aria-hidden="true"></span>

                                <div class="sds-spotSelect__inner sds-stackMd">
                                    <div class="sds-spotSelect__text">

                                        <div class="sds-spotSelect__title">
                                            <div class="sds-textSemiBold">
                                                <label class="sds-spotSelect__checkItemLabel" for="gestion-droits-spot-select-1">Manager</label>
                                            </div>

                                        </div>

                                        <p><label class="sds-spotSelect__checkItemLabel" for="gestion-droits-spot-select-1">Managers can access {more information about role}</label></p>

                                    </div>
                                </div>

                            </div>

                        </div>

                    </div>
                    <div class="sds-spotSelect sds-showCustomIndicatorHover  -noPic">
                        <input type="radio" id="gestion-droits-spot-select-2" class="sds-spotSelect__radioInput sr-only" value="" name="radio-name">
                        <div data-scope-wrapper="box" data-scope="flat" class="sds-spotSelect__body">
                            <div class="sds-spotSelect__content">

                                <span class="sds-radioDot  sds-spotSelect__checkItem" aria-hidden="true"></span>

                                <div class="sds-spotSelect__inner sds-stackMd">
                                    <div class="sds-spotSelect__text">

                                        <div class="sds-spotSelect__title">
                                            <div class="sds-textSemiBold">
                                                <label class="sds-spotSelect__checkItemLabel" for="gestion-droits-spot-select-2">Staff</label>
                                            </div>

                                        </div>

                                        <p><label class="sds-spotSelect__checkItemLabel" for="gestion-droits-spot-select-2">Staff can access {more information about role}</label></p>

                                    </div>
                                </div>

                            </div>

                        </div>

                    </div>
                </div>

            </div>

            <div class="sds-modal__footer modal-footer">

                <div class="sds-btnGroup">
                    <button type="button" class="sds-btn -btnSecondary -btnInverse" data-dismiss="modal">

                        <span class="sds-btn__text">Annuler</span>

                    </button>
                    <button type="button" class="sds-btn -btnPrimary">

                        <span class="sds-btn__text">Assigner</span>

                    </button>
                </div>

            </div>

        </div>
    </div>
</div>
{% extends "@snet-modal-base-frame" %}
{% block header %}
	<div class="{{ namespace }}modal__title modal-title">
		Assignation Entitée(s)
	</div>
{% endblock %}
{% block body %}
	<div class="{{ namespace }}spotSelectList">
		{% render "@spot-select--no-img",{
			title: "Manager",
			text: "Managers can access {more information about role}",
			spotSelectID: "gestion-droits-spot-select-1"
		},true %}
		{% render "@spot-select--no-img",{
			title: "Staff",
			text: "Staff can access {more information about role}",
			spotSelectID: "gestion-droits-spot-select-2"
		},true %}
	</div>
{% endblock %}
{% block footer %}
	<div class="{{ namespace }}btnGroup">
		{% render "@btn-secondary-inverse", {
			text: "Annuler",
			attrs: {
				"data-dismiss": "modal"
			}
		} ,true %}
		{% render "@btn-primary",{
			text: "Assigner"
		},true %}
	</div>
{% endblock %}
  • Content:
    /* variables specific to current element */
    
    $element-specific-variables: "";
    
    .#{$namespace}modal {
    
    	/* Save root element context for easy access if nesting is needed */
    
    	$self: &;
    
    	/* properties of current element  + media queries */
    
    
    	/* Pseudo Elements */
    
    	&::before {
    	}
    
    	&::after {
    	}
    
    	/*
    	Include elements that are linked to the current element but have to reside at the root level of the stylesheet
    	(e.g: keyframes)
    	*/
    	@at-root {
    	}
    
    
    	/* children - write selector in full in comments in order to facilitate search */
    
    	// modal__stickyBodyHeader
    	&__stickyBodyHeader {
    
    		// follows same logic as parent
    
    		top: -($modal-inner-padding-mobile);
    		z-index: z("low");
    		background-color: map-deep-get($token-color-grayscale-map, "0");
    		padding-top: map-deep-get($token-spacer-inset-map, "md");
    		padding-bottom: map-deep-get($token-spacer-inset-map, "md");
    		margin-top: -(map-deep-get($token-spacer-inset-map, "md"));
    
    		@include media-breakpoint-up(sm) {
    			top: -24px;
    		}
    
    		&.-inContentFlow {}
    
    	}
    
    	// modal__stickyBodyHeaderSearch
    	&__stickyBodyHeaderSearch {
    		margin-top: -(map-deep-get($token-spacer-stack-max-map, "md"));
    	}
    
    
    		/* modifiers */
    
    	// modal -altStyle
    	&.-altStyle {
    
    		// follows same logic as base element
    
    	}
    
    	/* random parent element */
    	/* 
    	*
    	*   Syntax : .randomParentElt & {}
    	*
    	*/
    
    	/* Pseudo Classes */
    
    	&:hover {
    		@media (hover: hover) {
    
    		}
    	}
    
    	&:focus {
    	}
    
    	&:active {
    	}
    
    	&:focus,
    	&:active {
    	}
    
    }
  • URL: /components/raw/cpb-modal/_modal.scss
  • Filesystem Path: components/corporate-bridge/organisms/modal/_modal.scss
  • Size: 1.5 KB