fix(spreadsheet): improve active cell borders by frozen cells telerik/kendo-ui-core#3254

This commit is contained in:
Magdalena Grigorova 2017-12-19 11:24:05 +02:00 коммит произвёл Dimitar Goshev
Родитель ccdda3e2b4
Коммит 76bce8b027
2 изменённых файлов: 8 добавлений и 9 удалений

Просмотреть файл

@ -406,6 +406,10 @@
padding: 0;
}
.k-spreadsheet-active-cell {
outline-color: transparent !important;
}
.k-spreadsheet .k-auto-fill-wrapper {
position: relative;
}
@ -438,11 +442,6 @@
z-index: 100;
cursor: crosshair;
}
.k-spreadsheet-selection.k-right::after,
.k-spreadsheet-selection.k-bottom::after {
margin-right: -2px;
margin-bottom: -2px;
}
// Autofill

Просмотреть файл

@ -73,12 +73,12 @@
box-shadow: inset 0 0 0 1px $selected-bg, inset -1px 0 0 1px $selected-bg;
}
&.k-bottom.k-right {
box-shadow: inset 0 0 0 1px $selected-bg, inset -1px -1px 0 1px $selected-bg;
&.k-bottom {
box-shadow: inset 0 0 0 1px $selected-bg, inset 0 -1px 0 1px $selected-bg;
}
&.k-bottom.k-left {
box-shadow: inset 0 0 0 1px $selected-bg, inset 0 -1px 0 1px $selected-bg;
&.k-bottom.k-right {
box-shadow: inset 0 0 0 1px $selected-bg, inset -1px -1px 0 1px $selected-bg;
}
}