namespace.scss 3.31 KB
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at

//     http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.


/* namespace */
.namespace-tree-parent {
    padding: 0px;

    >li:first-child {
        font-weight: 600;
    }

    .namespace-tree-child {
        padding-left: 20px;
        margin-top: 10px;
    }
}

.namespace-options.dropdown {
    .dropdown-menu {
        min-width: 100px;

        .dropdown-item {
            display: block;
            width: 100%;
            padding: .25rem 1.5rem;
            clear: both;
            font-weight: 400;
            color: $color_jungle_green_approx;
            text-align: inherit;
            white-space: nowrap;
            background-color: transparent;
            border: 0;
        }
    }
}

.namespace-options.dropdown.open {
    .btn-action {
        background-color: $color_jungle_green_approx;
        border: 1px solid $color_jungle_green_approx;
        color: #fff !important;
    }
}

.namespace-details {

    .expandable .attr-details {
        max-height: 300px;
        overflow: auto;
        margin-left: 100px;
        width: calc(100% - 100px);
    }
}

.tab-pane {
    .namespace-attr-page {
        position: absolute;
        top: 0px;
        left: 0px;
        padding: 20px;
        background-color: $white;
        width: 100%;
        height: inherit;
    }
}

.namespace-attr-page {
    .form-horizontal {
        padding: 10px 22px;
        // border: 1px solid #DEDEDE;

        .control-label-sm {
            padding-top: 3px;
        }

        .control-label-sm-pl {
            @extend .control-label-sm;
            padding-left: 10px;
        }

        .control-label-sm-pr {
            @extend .control-label-sm;
            padding-right: 10px;
        }

        .namespace-attr {
            border: 1px solid #DEDEDE;
            padding: 10px 20px
        }
    }
}

.namespace-attr-fontLoader {
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
}

.namespace-attr-tableOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #808080;
    z-index: 99;
    display: none;
    opacity: 0.2;
}

.name-space-details {
    .backgrid {
        td.expandable-content {
            width: 100%;
            max-width: none;
            background: #f8f8f8;

            div {

                table {
                    width: 100%;
                }
            }
        }

        tbody>tr:last-child>td {
            border-bottom: none;
        }
    }
}

.namespace-attr-page {
    .modal-footer {
        text-align: center;
    }
}

.remove-from-list {
    .select2-results__option[aria-selected=true] {
        display: none;
    }
}