Matteo Scandolo | d2044a4 | 2017-08-07 16:08:28 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | |
Matteo Scandolo | bba1d78 | 2016-07-12 15:56:23 -0700 | [diff] [blame] | 19 | @import '../../../../style/sass/lib/_variables.scss'; |
| 20 | @import '../../../../style/sass/bootstrap/bootstrap/_variables.scss'; |
| 21 | |
| 22 | #xosDashboardManager { |
| 23 | |
| 24 | .col-xs-10 + .col-xs-2.text-right { |
| 25 | padding-top: $line-height-computed; |
| 26 | } |
| 27 | |
| 28 | /* DRAG AND DROP STYLING */ |
| 29 | ul[dnd-list] { |
| 30 | min-height: 42px; |
| 31 | border: 1px dashed $brand-primary; |
| 32 | padding: $line-height-computed;; |
| 33 | margin-bottom: 0; |
| 34 | |
| 35 | li { |
| 36 | list-style: none; |
| 37 | } |
| 38 | |
| 39 | li:not(:last-child){ |
| 40 | margin-bottom: $line-height-computed;; |
| 41 | } |
| 42 | |
| 43 | li:hover{ |
| 44 | cursor: pointer; |
| 45 | } |
| 46 | |
| 47 | li.dndDraggingSource { |
| 48 | display: none; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | ul[dnd-list] > li, .dashboard-container { |
| 53 | display: block; |
| 54 | border: 1px solid $brand-primary; |
| 55 | padding: $line-height-computed; |
| 56 | a { |
Arpit Agarwal | 709912c | 2016-08-10 16:18:49 -0700 | [diff] [blame] | 57 | text-decoration: none !important; |
| 58 | img { |
| 59 | width: 20px; |
| 60 | } |
| 61 | } |
| 62 | i { |
Matteo Scandolo | bba1d78 | 2016-07-12 15:56:23 -0700 | [diff] [blame] | 63 | float: right; |
| 64 | } |
| 65 | } |
| 66 | } |