mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-27 08:38:46 +00:00
37 lines
843 B
SCSS
37 lines
843 B
SCSS
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
/* crmv@OPER6288 crmv@105538 */
|
|
|
|
.kanbanSortableList {
|
|
margin: 0;
|
|
padding: 5px;
|
|
min-height: 60px;
|
|
}
|
|
.kanbanSortableItem {
|
|
position: relative;
|
|
padding: 5px;
|
|
margin-top: 15px;
|
|
border: 1px solid $grey-200;
|
|
list-style: none;
|
|
background-color: $white;
|
|
box-shadow: 0 1px 0px 0 rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
|
|
}
|
|
.kanbanPlaceholder {
|
|
list-style: none;
|
|
margin-top: 15px;
|
|
background-color: $grey-50;
|
|
border: 1px dashed $grey-400;
|
|
}
|
|
.kanbanColorBar {
|
|
position: absolute;
|
|
width: 5px;
|
|
height: 100%;
|
|
top: 0px;
|
|
left: 0px;
|
|
}
|
|
.ui-sortable-helper {
|
|
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2), 0 5px 15px 0 rgba(0, 0, 0, .19);
|
|
} |