/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
@import "../style/index";

@mixin uicore-expandable-blocks-list {

    > div {

        transition:                 margin 0.15s ease-in-out;

        > .header {

            border-color:           $uicore-gray-a transparent transparent;
        }

        &:first-child {

            > .header {

                border-top-color:   transparent;
            }
        }
    }

    > .is-expanded + div {

        > .header {

            border-top-color:       transparent;
        }

        &.is-expanded  > .header {

            border-top-color:       $uicore-blue;
        }
    }

    > .is-expanded + .is-expanded {

        margin-top:                 0; // $uicore-unbordered-padding;
    }
}
