.#{$namespace}timePicker { /* Save root element context for easy access if nesting is needed */ $self: &; /* variables specific to current element */ $element-specific-variables: ""; /* 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 */ // timePicker TH TH { text-align: center; /* @TODO remove old styles overrides important start */ padding-left: map-deep-get($token-spacer-inset-map, "sm") !important; padding-right: map-deep-get($token-spacer-inset-map, "sm") !important; /* remove old styles overrides important end */ } TD { padding: 0 !important; } THEAD TH { /* @TODO remove old styles overrides start */ font-family: map-deep-get($token-font-family-map, "text"); /* remove old styles overrides end */ padding-top: 0 !important; padding-bottom: map-deep-get($token-spacer-inset-map, "lg") !important; } TFOOT TH { padding: map-deep-get($token-spacer-inset-map, "lg") 0 0 !important; } &__appointmentCell { display: flex; align-items: center; justify-content: center; } &__headDate { @include custom-prop-fallback("color", "sys-color-text-primary-muted"); } /* modifiers */ // timePicker -altStyle &[data-flickity] { padding: 0 map-deep-get($token-sizes-unit-map, "40"); } /* random parent element */ /* * * Syntax : .randomParentElt & {} * */ /* Pseudo Classes */ &:hover { @media (hover: hover) { } } &:focus { } &:active { } &:focus, &:active { } }