Actions List: Domiciliations

Refer to actions list frame found in view tab for complete structure without content.
<!-- Error rendering component -->
<!-- (unknown path)
  Template render error: (unknown path)
  Error: Could not render component '@amount--positive-lg' - component not found. -->
<!-- Template render error: (unknown path)
  Template render error: (unknown path)
  Error: Could not render component '@amount--positive-lg' - component not found.
    at Object._prettifyError (/home/apart/fractal_projects/spuerkeess-design-system-improvement-radio-modal/node_modules/nunjucks/src/lib.js:32:11)
    at /home/apart/fractal_projects/spuerkeess-design-system-improvement-radio-modal/node_modules/nunjucks/src/environment.js:464:19
    at eval (eval at _compile (/home/apart/fractal_projects/spuerkeess-design-system-improvement-radio-modal/node_modules/nunjucks/src/environment.js:527:18), <anonymous>:62:12)
    at /home/apart/fractal_projects/spuerkeess-design-system-improvement-radio-modal/node_modules/@frctl/nunjucks/src/extensions/render.js:47:25
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5) -->
<div class="{{ namespace }}actionsList {{ namespace }}box -insetLg {{ namespace }}stackMd{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}">
	<div class="{{ namespace }}actionsList__heading">
		<div class="{{ namespace }}actionsList__bodyItem">
			{% render '@snet-list-item--dom-header',{
				text: "Compte Epicerie Fournisseurs",
				helperText: "LU06 2034 9384 3049 6000"
			}, true %}
		</div>
	</div>
	<div id="actionsListDom" class="{{ namespace }}stackMd">
		<div class="{{ namespace }}actionsList__bodyItem">
			{% render '@snet-list-item--operation',{
				text : "Salaires pension CCSS",
				helperItems: helperItems,
				positive: true,
				attrs: {
					"data-target": "#test1",
					"data-toggle": "collapse",
					"aria-expanded": "false"
				},
				collapseID: "test1",
				parentCollapse: "actionsListDom",
				sectionItemDetailOptions: {
					textBtn: "Salaires pension CCSS",
					detailToggleOptions: {
						"data-target": "#test1",
						"data-toggle": "collapse",
						"aria-expanded": "true"
					}
				}
			}, true %}
		</div>
		<div class="{{ namespace }}actionsList__bodyItem">
			{% render '@snet-list-item--operation',{
				text : "Salaires pension CCSS",
				helperItems: helperItems,
				positive: true,
				attrs: {
					"data-target": "#test2",
					"data-toggle": "collapse",
					"aria-expanded": "false"
				},
				collapseID: "test2",
				parentCollapse: "actionsListDom",
				sectionItemDetailOptions: {
					textBtn: "Salaires pension CCSS 2",
					detailToggleOptions: {
						"data-target": "#test2",
						"data-toggle": "collapse",
						"aria-expanded": "true"
					}
				}
			}, true %}
		</div>
		<div class="{{ namespace }}actionsList__bodyItem">
			{% render '@snet-list-item--operation',{
				neg: true,
				status: "Bloqué",
				text : "Salaires pension CCSS",
				helperItems: helperItems
			}, true %}
		</div>
		<div class="{{ namespace }}actionsList__bodyItem">
			{% render '@snet-list-item--operation',{
				text : "Salaires pension CCSS",
				positive: true,
				helperItems: helperItems
			}, true %}
		</div>
		<div class="{{ namespace }}actionsList__bodyItem">
			{% render '@snet-list-item--operation',{
				text : "Salaires pension CCSS",
				positive: true,
				helperItems: helperItems
			}, true %}
		</div>
	</div>
</div>
  • Content:
    /* variables specific to current element */
    
    $element-specific-variables: "";
    
    .#{$namespace}actionsList {
    
    	/* Save root element context for easy access if nesting is needed */
    
    	$self: &;
    
    	/* properties of current element  + media queries */
    	display: flex;
    	flex-direction: column;
    
    	/* 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 */
    
    	// actionsList__childElement
    	&__heading {
    
    		// follows same logic as parent
    		
    		padding-bottom: map-deep-get($token-spacer-unit-map, "16");
    		//margin-bottom: map-deep-get($token-spacer-unit-map, "16");
    		display: flex;
    		align-items: center;
    		justify-content: space-between;
    		@include custom-prop-fallback("background-color", "sys-color-elevation-surface-flat")
    
    	}
    
    	&__title {
    
    		@extend %headingBase;
    		@extend %h3;
    
    	}
    
    	&__body {
    
    		@include spacer-component-stack("sm");
    		display: flex;
    		flex-direction: column;
    		flex-grow: 1;
    
    	}
    
    	&__bodyItem {
    
    		margin-left: -(map-deep-get($token-spacer-unit-map, "8"));
    		margin-right: -(map-deep-get($token-spacer-unit-map, "8"));
    		flex-grow: 1;
    
    	}
    
    	&__bodyEmpty {
    
    		text-align: center;
    		padding: map-deep-get($token-spacer-unit-map, "40") 0;
    
    	}
    
    	&__footer {
    
    		border-top: $border-width solid;
    		@include custom-prop-fallback("border-top-color","sys-color-border-primary-moderate");
    		padding-top: map-deep-get($token-spacer-unit-map, "16");
    		margin-top: map-deep-get($token-spacer-unit-map, "16");
    
    	}
    
    	&__meta {
    
    		@include custom-prop-fallback("color", "sys-color-text-primary-muted")
    
    	}
    
    	/* modifiers */
    
    	// actionsList -isListItem
    	&.-isListItem {
    
    		// follows same logic as base element
    
    		& + & {
    
    			margin-top: map-deep-get($token-spacer-stack-max-map, "lg");
    
    		}
    
    		#{$self}__heading {
    
    			padding-bottom: map-deep-get($token-spacer-unit-map, "8");
    			//margin-bottom: map-deep-get($token-spacer-unit-map, "8");
    
    		}
    
    		#{$self}__title {
    
    			@extend %h4;
    
    		}
    
    	}
    	
    	&.-stickyHeading {
    		
    		#{$self}__heading {
    
    			position: sticky;
    			top: $nav-topbar-height-global;
    			z-index: z("low");
    			@extend .#{$namespace}outOfBounds;
    			padding-left: map-deep-get($token-spacer-inline-map, "sm");
    			padding-right: map-deep-get($token-spacer-inline-map, "sm");
    			padding-top: map-deep-get($token-spacer-inline-map, "sm");
    
    		}
    
    	}
    
    	&.-stickyHeadingTop {
    
    		#{$self}__heading {
    
    			top: 0;
    
    		}
    
    	}
    
    	/* random parent element */
    	/* 
    	*
    	*   Syntax : .randomParentElt & {}
    	*
    	*/
    
    	/* Pseudo Classes */
    
    	&:hover {
    		@media (hover: hover) {
    
    		}
    	}
    
    	&:focus {
    	}
    
    	&:active {
    	}
    
    	&:focus,
    	&:active {
    	}
    
    }
  • URL: /components/raw/snet-actions-list/_actions-list.scss
  • Filesystem Path: components/snet/organisms/actions-list/_actions-list.scss
  • Size: 2.8 KB