From dff3bc6a5fd69032ed841ba3c99ec67dd2cc5d98 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sun, 19 Apr 2020 18:41:08 +0100 Subject: [PATCH] elm - theme - add outline style for frames new standard style. outline. --- data/elementary/themes/edc/elm/frame.edc | 51 ++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/data/elementary/themes/edc/elm/frame.edc b/data/elementary/themes/edc/elm/frame.edc index e6ce022acf..42095c8d1b 100644 --- a/data/elementary/themes/edc/elm/frame.edc +++ b/data/elementary/themes/edc/elm/frame.edc @@ -283,3 +283,54 @@ group { name: "elm/frame/base/outdent_bottom"; } } } + +group { name: "elm/frame/base/outline"; + images.image: "shadow_square_tiny.png" COMP; + images.image: "bevel_out.png" COMP; + parts { + part { name: "shadow"; mouse_events: 0; + description { state: "default" 0.0; + rel1.offset: -1 0; + rel2.offset: 0 1; + image.normal: "shadow_square_tiny.png"; + image.border: 6 6 6 6; + fill.smooth: 0; + } + } + part { name: "base"; type: RECT; + description { state: "default" 0.0; + rel1.offset: 3 0; + rel2.offset: -3 -3; + color: 64 64 64 255; + } + } + part { name: "clip"; type: RECT; + description { state: "default" 0.0; + rel1.offset: 5 0; + rel2.offset: -7 -7; + } + } + part { name: "elm.swallow.content"; type: SWALLOW; + clip_to: "clip"; + description { state: "default" 0.0; + align: 0.0 1.0; + rel1.offset: 5 5; + rel2.offset: -5 -5; + } + description { state: "collapsed" 0.0; + inherit: "default" 0.0; + minmul: 1.0 0.0; + } + } + part { name: "bevel"; mouse_events: 0; + description { state: "default" 0.0; + rel1.offset: 2 2; + rel2.offset: -3 -3; + image.normal: "bevel_out.png"; + image.border: 1 1 1 1; + image.middle: 0; + fill.smooth: 0; + } + } + } +}