mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-27 00:28:47 +00:00
55 lines
1.1 KiB
SCSS
55 lines
1.1 KiB
SCSS
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
/* crmv@OPER6288 crmv@105538 */
|
|
|
|
#KanbanViewContents {
|
|
padding: 10px;
|
|
background-color: $kanban-bg;
|
|
color: $kanban-color;
|
|
}
|
|
|
|
.kanbanGridHeader {
|
|
& .dvInnerHeader .dvInnerHeaderTitle {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.kanbanSortableList {
|
|
margin: 0;
|
|
padding: 5px;
|
|
min-height: 60px;
|
|
}
|
|
|
|
.kanbanSortableItem {
|
|
position: relative;
|
|
padding: 5px;
|
|
margin-top: 15px;
|
|
border: 1px solid $kanban-item-border;
|
|
list-style: none;
|
|
background-color: $kanban-item-bg;
|
|
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: $kanban-item-placeholder-bg;
|
|
border: 1px dashed $kanban-item-placeholder-border;
|
|
}
|
|
|
|
.kanbanColorBar {
|
|
position: absolute;
|
|
width: 5px;
|
|
height: 100%;
|
|
top: 0px;
|
|
left: 0px;
|
|
}
|
|
|
|
.ui-sortable-helper {
|
|
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2), 0 5px 15px 0 rgba(0, 0, 0, 0.19);
|
|
}
|