theme: bg - remove the elm bg inheritance

This commit is contained in:
Amitesh Singh 2018-04-11 12:47:03 +09:00
parent eef0c5164a
commit ae88f49561
1 changed files with 38 additions and 3 deletions

View File

@ -6,6 +6,41 @@
elm.swallow.content: Used for elm_layout_part_content_set(bg, "overlay", content).
*/
group { "efl/bg";
inherit: "elm/bg/base/default";
}
group { name: "efl/bg";
data.item: "version" "119";
images.image: "bevel_dark_out.png" COMP;
parts {
part { name: "clipper"; type: RECT;
description { state: "default" 0.0;
}
}
part { name: "base"; type: RECT;
description { state: "default" 0.0;
color_class: "dialog_base";
color: 64 64 64 255;
}
}
part { name: "elm.swallow.rectangle"; type: SWALLOW;
description { state: "default" 0.0;
}
}
part { name: "elm.swallow.background"; type: SWALLOW;
clip_to: "clipper";
description { state: "default" 0.0;
fixed: 1 1;
}
}
part { name: "bevel";
description { state: "default" 0.0;
image.normal: "bevel_dark_out.png";
image.border: 1 1 1 1;
image.middle: 0;
fill.smooth: 0;
}
}
part { name: "elm.swallow.content"; type: SWALLOW;
description { state: "default" 0.0;
}
}
}
}