{"version":3,"file":"css/components/simple-link-list.css","mappings":"AAaA,kBAEE,YAAa,CACb,qBAAsB,CAFtB,eAEF,CAHA,+BAKI,WACJ,CANA,+CAOM,yBAA0B,CAC1B,WAEN,CAVA,6DAUQ,WAGR,CAbA,8BAgBI,oBAAqB,CADrB,WAEJ,CAGA,gDAEE,qBAAyB,CAEzB,iBAAkB,CADlB,UAAW,CAFX,YAEF,CAIA,iDAEI,YAHJ,CACA,mDAKI,YAAa,CACb,wBAHJ,CC3CA,YACI,UAAW,CAEX,2BAA6B,CAD7B,wBAA0B,CAE1B,wBACJ,CALA,8BAOQ,8BAA+B,CAC/B,2BAA4B,CAC5B,sBAER,CAAQ,wDACI,iBAGZ,CAIgB,kNAGG,cAAe,CACf,kBACnB,CAEgB,wYAKI,cAAe,CACf,iBAKpB,CAHoB,ocAII,oBAAqB,CACrB,2CAA+C,CAH/C,QAAS,CAIT,UAAY,CALZ,iBAAkB,CAElB,OAiBxB,CAVgB,8DACI,YAapB,CAVgB,4EAEI,eAAgB,CADhB,UAcpB,CAVgB,oFACI,eAapB,CAVgB,sFACI,eAapB,CAVgB,8MAEI,UAcpB,CARI,4CAEQ,kBAUZ,CAJY,2BACI,gBAMhB,CAJgB,iCACI,gCAMpB,CAVY,8BAQQ,oBAAqB,CACrB,oBAAqB,CACrB,QAAS,CACT,SAKpB,CAhBY,iCAcY,+BAAgC,CAChC,cAKxB,CAHwB,6CACI,aAK5B,CAFwB,4CACI,kBAI5B,CAEY,8BACI,cAAhB,CA1GA,qBAiHQ,UAJR,CA7GA,uBAoHY,gBAJZ,CAhHA,0CAuHgB,uBAJhB,CAnHA,iCA2HgB,aALhB,CAWA,2BACI,kCATJ,CAQA,4DAIQ,mBARR,CAUQ,kFACI,oBAPZ,yEAaY,qBATZ","sources":["webpack://openstack-uicore-foundation/./src/components/simple-link-list/simple-link-list.less","webpack://openstack-uicore-foundation/./src/components/table/table.less"],"sourcesContent":["/**\n * Copyright 2017 OpenStack Foundation\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * http://www.apache.org/licenses/LICENSE-2.0\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n **/\n\n.simple-link-list {\n  margin-top: 40px;\n  display: flex;\n  flex-direction: column;\n  .link-select {\n    width: 200px;\n    .Select-control {\n      border-radius: 4px 0 0 4px;\n      height: 100%;\n      .Select-input {\n        height: 32px;\n      }\n    }\n  }\n  .add-button {\n    height: 38px;\n    border-color: #afafaf;\n  }\n}\n\n.simple-link-list:not(.panel .simple-link-list) {\n  padding: 10px;\n  border: 1px solid #cccccc;\n  margin: 5px;\n  border-radius: 3px;\n}\n\n.panel .simple-link-list {\n  .simple-link-list-title {\n    display: none;\n  }\n  .simple-link-list-buttons {\n    display: flex;\n    justify-content: flex-end;\n  }\n}","table.table {\n    clear: both;\n    margin-top: 6px !important;\n    margin-bottom: 6px !important;\n    max-width: none !important;\n\n    td, th {\n        -webkit-box-sizing: content-box;\n        -moz-box-sizing: content-box;\n        box-sizing: content-box;\n\n        &.tables_empty {\n            text-align: center\n        }\n    }\n\n    thead {\n        tr {\n            th, td {\n                &.sorting,\n                &.sorting_asc,\n                &.sorting_desc {\n                   min-width: 30px;\n                   padding-right: 10px\n                }\n\n                &.sorting,\n                &.sorting_asc,\n                &.sorting_desc,\n                &.sorting_asc_disabled,\n                &.sorting_desc_disabled {\n                    cursor: pointer;\n                    position: relative;\n\n                    &:after {\n                        position: relative;\n                        left: 8px;\n                        top: 2px;\n                        display: inline-block;\n                        font-family: 'Glyphicons Halflings', sans-serif;\n                        opacity: 0.5;\n                    }\n                }\n\n                &:active {\n                    outline: none\n                }\n\n                &.sorting:after {\n                    opacity: 0.2;\n                    content: \"\\e150\"\n                }\n\n                &.sorting_asc:after {\n                    content: \"\\e155\"\n                }\n\n                &.sorting_desc:after {\n                    content: \"\\e156\"\n                }\n\n                &.sorting_asc_disabled:after,\n                &.sorting_desc_disabled:after {\n                    color: #eee\n                }\n            }\n        }\n    }\n\n    &.nowrap {\n        th, td {\n            white-space: nowrap\n        }\n    }\n\n    tbody {\n        tr {\n            &.child {\n                padding: 0.5em 1em;\n\n                &:hover {\n                    background: transparent !important\n                }\n\n                ul {\n                    display: inline-block;\n                    list-style-type: none;\n                    margin: 0;\n                    padding: 0;\n\n                    li {\n                        border-bottom: 1px solid #efefef;\n                        padding: 0.5em 0;\n\n                        &:first-child {\n                            padding-top: 0\n                        }\n\n                        &:last-child {\n                            border-bottom: none\n                        }\n                    }\n                }\n            }\n\n            &.can-edit {\n                cursor:pointer\n            }\n        }\n    }\n\n\n    .actions {\n        width: 70px;\n\n        a {\n            margin-left: 10px;\n\n            .delete-icon:hover {\n                color: #da0000 !important;\n            }\n\n            .fa:hover {\n                color: #024c85;\n            }\n        }\n    }\n}\n\ntable.table-bordered.table {\n    border-collapse: separate !important;\n\n    th, td {\n        border-left-width: 0;\n\n        &:last-child {\n            border-right-width: 0\n        }\n    }\n\n    tbody {\n        th, td {\n            border-bottom-width: 0\n        }\n    }\n\n}\n\n\n\n\n"],"names":[],"sourceRoot":""}