@@ -1565,11 +1565,29 @@ export const usePreferenceStore = defineStore('preference', {
15651565 '--c-edit-copy-cat-card-marc-hover' : {
15661566 value :'transparent' ,
15671567 desc : 'The color of the subfield when hovering over the MARC.' ,
1568- descShort : 'Marc Hover' ,
1568+ descShort : 'MARC Hover' ,
15691569 type : 'color' ,
15701570 group : 'Copy Cat' ,
15711571 range : null
15721572 } ,
1573+
1574+ '--c-edit-copy-cat-comp-existing' : {
1575+ value :'#fafad2' ,
1576+ desc : 'When comparing, color of the background for the existing record.' ,
1577+ descShort : 'Existing Color' ,
1578+ type : 'color' ,
1579+ group : 'Copy Cat' ,
1580+ range : null
1581+ } ,
1582+ '--c-edit-copy-cat-comp-new' : {
1583+ value :'#e3ffd8' ,
1584+ desc : 'When comparing, color of the background for the new record.' ,
1585+ descShort : 'New Color' ,
1586+ type : 'color' ,
1587+ group : 'Copy Cat' ,
1588+ range : null
1589+ } ,
1590+
15731591 '--n-edit-copy-cat-font-size' : {
15741592 desc : 'The fontsize of the text in the Copy Cat search.' ,
15751593 descShort : 'Font Size' ,
@@ -1589,13 +1607,13 @@ export const usePreferenceStore = defineStore('preference', {
15891607 group : 'Copy Cat' ,
15901608 range : [ true , false ]
15911609 } ,
1592- '--n-edit-copyt-cat-prio' : {
1593- desc : 'Default Prority for CopyCat' ,
1594- descShort : 'Priority Default' ,
1595- value : '3' ,
1596- type : 'string' ,
1597- group : 'Copy Cat'
1598- }
1610+ '--n-edit-copyt-cat-prio' : {
1611+ desc : 'Default Prority for CopyCat' ,
1612+ descShort : 'Priority Default' ,
1613+ value : '3' ,
1614+ type : 'string' ,
1615+ group : 'Copy Cat'
1616+ }
15991617
16001618
16011619 }
@@ -2052,6 +2070,9 @@ export const usePreferenceStore = defineStore('preference', {
20522070 styleModalBackgroundColor ( ) { return `background-color: ${ this . returnValue ( '--c-edit-modals-background-color' ) } ;` } ,
20532071 styleModalTextColor ( ) { return `color: ${ this . returnValue ( '--c-edit-modals-text-color' ) } ;` } ,
20542072
2073+ styleCopyCatBackgroundColor ( ) { return `background-color: ${ this . returnValue ( '--c-edit-copy-cat-components' ) } ;` } ,
2074+ styleCopyCatTextColor ( ) { return `color: ${ this . returnValue ( '--c-edit-copy-cat-font-color' ) } ;` } ,
2075+
20552076
20562077
20572078
0 commit comments