|
@@ -537,10 +537,12 @@ class KMEditPDFTextPropertyViewController: NSViewController {
|
|
|
self.fontBoldVC?.background_act = KMAppearance.Interactive.m1Color()
|
|
|
self.fontBoldVC?.background_hov = NSColor(red: 71/255, green: 72/255, blue: 75/255, alpha: 1)
|
|
|
self.fontBoldVC?.borderColor_hov = KMAppearance.Interactive.a0Color()
|
|
|
+ self.fontBoldVC?.borderWidth_act = 0
|
|
|
|
|
|
self.fontItalicVC?.background_act = KMAppearance.Interactive.m1Color()
|
|
|
self.fontItalicVC?.background_hov = NSColor(red: 71/255, green: 72/255, blue: 75/255, alpha: 1)
|
|
|
self.fontItalicVC?.borderColor_hov = KMAppearance.Interactive.a0Color()
|
|
|
+ self.fontItalicVC?.borderWidth_act = 0
|
|
|
|
|
|
self.fontAddVC?.background_act = KMAppearance.Interactive.m1Color()
|
|
|
self.fontAddVC?.background_hov = NSColor(red: 71/255, green: 72/255, blue: 75/255, alpha: 1)
|
|
@@ -550,12 +552,10 @@ class KMEditPDFTextPropertyViewController: NSViewController {
|
|
|
self.fontReduceVC?.background_hov = NSColor(red: 71/255, green: 72/255, blue: 75/255, alpha: 1)
|
|
|
self.fontReduceVC?.borderColor_hov = KMAppearance.Interactive.a0Color()
|
|
|
|
|
|
- self.leftAlignmentVC?.background_sel = NSColor(red: 71/255, green: 72/255, blue: 75/255, alpha: 1)
|
|
|
-
|
|
|
- self.centerAlignmentVC?.background_sel = NSColor(red: 71/255, green: 72/255, blue: 75/255, alpha: 1)
|
|
|
-
|
|
|
- self.rightAlignmentVC?.background_sel = NSColor(red: 71/255, green: 72/255, blue: 75/255, alpha: 1)
|
|
|
-
|
|
|
+ self.leftAlignmentVC?.background_sel = KMAppearance.Interactive.m1Color()
|
|
|
+ self.centerAlignmentVC?.background_sel = KMAppearance.Interactive.m1Color()
|
|
|
+ self.rightAlignmentVC?.background_sel = KMAppearance.Interactive.m1Color()
|
|
|
+
|
|
|
} else {
|
|
|
self.backgroundView.backgroundColor(NSColor.km_init(hex: "#FAFAFA"))
|
|
|
|
|
@@ -622,13 +622,16 @@ class KMEditPDFTextPropertyViewController: NSViewController {
|
|
|
textPresuppositionVC?.popViewControllerTextColor = KMAppearance.Layout.h0Color()
|
|
|
textPresuppositionVC?.popViewControllerEnterFillColor = KMAppearance.Interactive.s0Color()
|
|
|
|
|
|
- textPresuppositionResetVC?.borderColor = KMAppearance.Layout.w15Color()
|
|
|
+ textPresuppositionResetVC?.borderColor = NSColor(red: 223/255, green: 225/255, blue: 229/255, alpha: 1)
|
|
|
textPresuppositionResetVC?.borderColor_hov = NSColor.clear
|
|
|
textPresuppositionResetVC?.borderColor_sel = KMAppearance.Layout.w15Color()
|
|
|
- textPresuppositionResetVC?.background = KMAppearance.Layout.l1Color()
|
|
|
+ textPresuppositionResetVC?.borderColor_act = KMAppearance.Layout.w15Color()
|
|
|
+ textPresuppositionResetVC?.borderColor_disabled = KMAppearance.Layout.w15Color()
|
|
|
+ textPresuppositionResetVC?.background = NSColor.white
|
|
|
textPresuppositionResetVC?.background_hov = KMAppearance.view_bg_dis_color()
|
|
|
textPresuppositionResetVC?.background_disabled = KMAppearance.view_bg_dis_color()
|
|
|
textPresuppositionResetVC?.borderColor_disabled = KMAppearance.view_border_dis_color()
|
|
|
+ textPresuppositionResetVC?.borderWidth = 1
|
|
|
|
|
|
opacitVC?.borderColor = KMAppearance.Interactive.s0Color()
|
|
|
opacitVC?.background = KMAppearance.Layout.l1Color()
|
|
@@ -640,6 +643,10 @@ class KMEditPDFTextPropertyViewController: NSViewController {
|
|
|
opacitVC?.popViewControllerBackground = KMAppearance.Layout.bgColor()
|
|
|
opacitVC?.popViewControllerTextColor = KMAppearance.Layout.h0Color()
|
|
|
opacitVC?.popViewControllerEnterFillColor = KMAppearance.Interactive.s0Color()
|
|
|
+
|
|
|
+ self.fontBoldVC?.initDefaultValue()
|
|
|
+
|
|
|
+ self.fontItalicVC?.initDefaultValue()
|
|
|
}
|
|
|
}
|
|
|
|