elm - theme - add outline style for frames

new standard style. outline.
This commit is contained in:
Carsten Haitzler 2020-04-19 18:41:08 +01:00
parent c9a0b0c7cd
commit dff3bc6a5f
1 changed files with 51 additions and 0 deletions

View File

@ -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;
}
}
}
}