Fixed #4785 - Table row is not highlighted with context menu

pull/4789/head
Cagatay Civici 2023-11-09 17:30:39 +03:00
parent cba43b310b
commit 31e47e8668
49 changed files with 196 additions and 0 deletions

View File

@ -2718,6 +2718,10 @@
background: rgba(100, 181, 246, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #93cbf9;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(100, 181, 246, 0.16);
}

View File

@ -2718,6 +2718,10 @@
background: rgba(129, 199, 132, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #a7d8a9;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(129, 199, 132, 0.16);
}

View File

@ -2718,6 +2718,10 @@
background: rgba(255, 213, 79, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #ffe284;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(255, 213, 79, 0.16);
}

View File

@ -2718,6 +2718,10 @@
background: rgba(186, 104, 200, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #cf95d9;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(186, 104, 200, 0.16);
}

View File

@ -2730,6 +2730,10 @@
background: #8dd0ff;
color: #151515;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #e3f3fe;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #8dd0ff;
}

View File

@ -2730,6 +2730,10 @@
background: #c298d8;
color: #151515;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #f0e6f5;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #c298d8;
}

View File

@ -2730,6 +2730,10 @@
background: #007bff;
color: #ffffff;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid rgba(38, 143, 255, 0.5);
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #007bff;
}

View File

@ -2730,6 +2730,10 @@
background: #883cae;
color: #ffffff;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid rgba(136, 60, 174, 0.5);
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #883cae;
}

View File

@ -2718,6 +2718,10 @@
background: #edebe9;
color: #323130;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #605e5c;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #edebe9;
}

View File

@ -2737,6 +2737,10 @@
background: rgba(96, 165, 250, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid rgba(96, 165, 250, 0.2);
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(96, 165, 250, 0.16);
}

View File

@ -2737,6 +2737,10 @@
background: rgba(129, 140, 248, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid rgba(129, 140, 248, 0.2);
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(129, 140, 248, 0.16);
}

View File

@ -2737,6 +2737,10 @@
background: rgba(167, 139, 250, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid rgba(167, 139, 250, 0.2);
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(167, 139, 250, 0.16);
}

View File

@ -2737,6 +2737,10 @@
background: rgba(52, 211, 153, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid rgba(52, 211, 153, 0.2);
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(52, 211, 153, 0.16);
}

View File

@ -2737,6 +2737,10 @@
background: #EFF6FF;
color: #1D4ED8;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #BFDBFE;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #EFF6FF;
}

View File

@ -2737,6 +2737,10 @@
background: #EEF2FF;
color: #4338CA;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #C7D2FE;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #EEF2FF;
}

View File

@ -2737,6 +2737,10 @@
background: #F5F3FF;
color: #6D28D9;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #DDD6FE;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #F5F3FF;
}

View File

@ -2737,6 +2737,10 @@
background: #F0FDFA;
color: #047857;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #a7f3d0;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #F0FDFA;
}

View File

@ -2730,6 +2730,10 @@
background: #FFE082;
color: #212529;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid white;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #FFE082;
}

View File

@ -2730,6 +2730,10 @@
background: #81D4FA;
color: #212529;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid white;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #81D4FA;
}

View File

@ -2730,6 +2730,10 @@
background: #C5E1A5;
color: #212529;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid white;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #C5E1A5;
}

View File

@ -2730,6 +2730,10 @@
background: #F48FB1;
color: #212529;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid white;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #F48FB1;
}

View File

@ -2742,6 +2742,10 @@
background: rgba(206, 147, 216, 0.16);
color: #CE93D8;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid transparent;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(206, 147, 216, 0.16);
}

View File

@ -2742,6 +2742,10 @@
background: rgba(159, 168, 218, 0.16);
color: #9FA8DA;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid transparent;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(159, 168, 218, 0.16);
}

View File

@ -2742,6 +2742,10 @@
background: rgba(103, 58, 183, 0.12);
color: #673AB7;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid transparent;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(103, 58, 183, 0.12);
}

View File

@ -2742,6 +2742,10 @@
background: rgba(63, 81, 181, 0.12);
color: #3F51B5;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid transparent;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(63, 81, 181, 0.12);
}

View File

@ -2742,6 +2742,10 @@
background: rgba(206, 147, 216, 0.16);
color: #CE93D8;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid transparent;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(206, 147, 216, 0.16);
}

View File

@ -2742,6 +2742,10 @@
background: rgba(159, 168, 218, 0.16);
color: #9FA8DA;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid transparent;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(159, 168, 218, 0.16);
}

View File

@ -2742,6 +2742,10 @@
background: rgba(103, 58, 183, 0.12);
color: #673AB7;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid transparent;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(103, 58, 183, 0.12);
}

View File

@ -2742,6 +2742,10 @@
background: rgba(63, 81, 181, 0.12);
color: #3F51B5;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid transparent;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(63, 81, 181, 0.12);
}

View File

@ -2746,6 +2746,10 @@
background: #D8DEE9;
color: #2E3440;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #C0D0E0;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #D8DEE9;
}

View File

@ -2718,6 +2718,10 @@
background: #44A1D9;
color: #ffffff;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #90c9f5;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #44A1D9;
}

View File

@ -2718,6 +2718,10 @@
background: #e02365;
color: #ffffff;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #8dcdff;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #e02365;
}

View File

@ -2730,6 +2730,10 @@
background: #007ad9;
color: #ffffff;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #8dcdff;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #007ad9;
}

View File

@ -2730,6 +2730,10 @@
background: #41b883;
color: #ffffff;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #c2e9d8;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #41b883;
}

View File

@ -2730,6 +2730,10 @@
background: #007ad9;
color: #ffffff;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #8dcdff;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #007ad9;
}

View File

@ -2718,6 +2718,10 @@
background: #AFD3C8;
color: #385048;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #e4e9ec;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #AFD3C8;
}

View File

@ -2718,6 +2718,10 @@
background: #E3F2FD;
color: #495057;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #a6d5fa;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #E3F2FD;
}

View File

@ -2718,6 +2718,10 @@
background: #E8F5E9;
color: #495057;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #b7e0b8;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #E8F5E9;
}

View File

@ -2718,6 +2718,10 @@
background: #FFF3E0;
color: #495057;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #ffe69c;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #FFF3E0;
}

View File

@ -2718,6 +2718,10 @@
background: #F3E5F5;
color: #495057;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #df9eea;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #F3E5F5;
}

View File

@ -2742,6 +2742,10 @@
background: rgba(177, 157, 247, 0.16);
color: #b19df7;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #e0d8fc;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(177, 157, 247, 0.16);
}

View File

@ -2742,6 +2742,10 @@
background: #e2dcfc;
color: #5a37f1;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #c7bbfa;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #e2dcfc;
}

View File

@ -2753,6 +2753,10 @@
background: #EEF2FF;
color: #312E81;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #6366F1;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #EEF2FF;
}

View File

@ -2718,6 +2718,10 @@
background: rgba(100, 181, 246, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #93cbf9;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(100, 181, 246, 0.16);
}

View File

@ -2718,6 +2718,10 @@
background: rgba(129, 199, 132, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #a7d8a9;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(129, 199, 132, 0.16);
}

View File

@ -2718,6 +2718,10 @@
background: rgba(255, 213, 79, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #ffe284;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(255, 213, 79, 0.16);
}

View File

@ -2718,6 +2718,10 @@
background: rgba(186, 104, 200, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #cf95d9;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(186, 104, 200, 0.16);
}

View File

@ -2750,6 +2750,10 @@
background: rgba(158, 173, 230, 0.16);
color: #9eade6;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #9eade6;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(158, 173, 230, 0.16);
}

View File

@ -2750,6 +2750,10 @@
background: #ced6f1;
color: #585858;
}
.p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid #bbc7ee;
outline-offset: -0.15rem;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #ced6f1;
}