diff options
Diffstat (limited to 'screens/TaskManager/Body.tscn')
-rw-r--r-- | screens/TaskManager/Body.tscn | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/screens/TaskManager/Body.tscn b/screens/TaskManager/Body.tscn new file mode 100644 index 0000000..7d7e4f2 --- /dev/null +++ b/screens/TaskManager/Body.tscn @@ -0,0 +1,48 @@ +[gd_scene load_steps=10 format=2] + +[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=1] +[ext_resource path="res://screens/TaskManager/Body.gd" type="Script" id=2] +[ext_resource path="res://icons/arrow-right.png" type="Texture" id=4] +[ext_resource path="res://icons/arrow-left-hi.png" type="Texture" id=5] +[ext_resource path="res://icons/arrow-left.png" type="Texture" id=6] +[ext_resource path="res://icons/arrow-right-hi.png" type="Texture" id=7] + +[sub_resource type="DynamicFont" id=1] +size = 60 +font_data = ExtResource( 1 ) + +[sub_resource type="StyleBoxFlat" id=2] +bg_color = Color( 0.239216, 0.231373, 0.27451, 1 ) +border_width_right = 40 +border_color = Color( 0, 0, 0, 0 ) +expand_margin_left = 10.0 +expand_margin_right = 10.0 + +[sub_resource type="StyleBoxFlat" id=3] +bg_color = Color( 0.176471, 0.168627, 0.2, 1 ) +border_width_right = 40 +border_color = Color( 0, 0, 0, 0 ) +expand_margin_left = 10.0 +expand_margin_right = 10.0 + +[node name="TaskManagerBody" type="VBoxContainer"] +margin_left = 20.0 +margin_top = 20.0 +margin_right = 1060.0 +margin_bottom = 1676.0 +script = ExtResource( 2 ) + +[node name="Tabs" type="TabContainer" parent="."] +unique_name_in_owner = true +margin_right = 1040.0 +margin_bottom = 1656.0 +size_flags_vertical = 3 +custom_constants/side_margin = 20 +custom_fonts/font = SubResource( 1 ) +custom_icons/increment_highlight = ExtResource( 7 ) +custom_icons/increment = ExtResource( 4 ) +custom_icons/decrement_highlight = ExtResource( 5 ) +custom_icons/decrement = ExtResource( 6 ) +custom_styles/tab_fg = SubResource( 2 ) +custom_styles/tab_bg = SubResource( 3 ) +tab_align = 0 |