From d62630d0a7ed0be447495e6880726481dbcc6716 Mon Sep 17 00:00:00 2001 From: George Saines Date: Mon, 24 Feb 2014 16:03:56 -0800 Subject: [PATCH] final tweaks to dialogue text styling --- app/lib/surface/Label.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/lib/surface/Label.coffee b/app/lib/surface/Label.coffee index 41af0782b..3b7a37de6 100644 --- a/app/lib/surface/Label.coffee +++ b/app/lib/surface/Label.coffee @@ -55,7 +55,7 @@ module.exports = class Label extends CocoClass o = {} st = {dialogue: 'D', say: 'S', name: 'N'}[@style] o.marginX = {D: 5, S: 6, N: 3}[st] - o.marginY = {D: 6, S: 6, N: 3}[st] + o.marginY = {D: 6, S: 4, N: 3}[st] o.fontWeight = {D: "bold", S: "bold", N: "bold"}[st] o.shadow = {D: false, S: true, N: true}[st] o.shadowColor = {D: "#FFF", S: "#000", N: "#FFF"}[st] @@ -63,8 +63,8 @@ module.exports = class Label extends CocoClass fontFamily = {D: "Arial", S: "Arial", N: "Arial"}[st] o.fontDescriptor = "#{o.fontWeight} #{o.fontSize}px #{fontFamily}" o.fontColor = {D: "#000", S: "#FFF", N: "#00a"}[st] - o.backgroundFillColor = {D: "white", S: "rgba(255, 255, 255, 0.3)", N: "rgba(255, 255, 255, 0.5)"}[st] - o.backgroundStrokeColor = {D: "black", S: "rgba(0, 0, 0, .4)", N: "rgba(0, 0, 0, 0.0)"}[st] + o.backgroundFillColor = {D: "white", S: "rgba(0, 0, 0, 0.4)", N: "rgba(255, 255, 255, 0.5)"}[st] + o.backgroundStrokeColor = {D: "black", S: "rgba(0, 0, 0, .6)", N: "rgba(0, 0, 0, 0.0)"}[st] o.backgroundStrokeStyle = {D: 2, S: 1, N: 1}[st] o.backgroundBorderRadius = {D: 10, S: 3, N: 3}[st] o.layerPriority = {D: 10, S: 5, N: 5}[st]