| |
| /* |
| * Copyright 2017-present Open Networking Foundation |
| |
| * Licensed 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. |
| */ |
| |
| |
| @import '../../../../style/sass/lib/_variables.scss'; |
| @import '../../../../style/sass/bootstrap/bootstrap/_variables.scss'; |
| |
| #xosDashboardManager { |
| |
| .col-xs-10 + .col-xs-2.text-right { |
| padding-top: $line-height-computed; |
| } |
| |
| /* DRAG AND DROP STYLING */ |
| ul[dnd-list] { |
| min-height: 42px; |
| border: 1px dashed $brand-primary; |
| padding: $line-height-computed;; |
| margin-bottom: 0; |
| |
| li { |
| list-style: none; |
| } |
| |
| li:not(:last-child){ |
| margin-bottom: $line-height-computed;; |
| } |
| |
| li:hover{ |
| cursor: pointer; |
| } |
| |
| li.dndDraggingSource { |
| display: none; |
| } |
| } |
| |
| ul[dnd-list] > li, .dashboard-container { |
| display: block; |
| border: 1px solid $brand-primary; |
| padding: $line-height-computed; |
| a { |
| text-decoration: none !important; |
| img { |
| width: 20px; |
| } |
| } |
| i { |
| float: right; |
| } |
| } |
| } |