diff --git a/esoui/libraries/zo_templates/windowtemplates.xml b/esoui/libraries/zo_templates/windowtemplates.xml
index e20cbd7..d941795 100755
--- a/esoui/libraries/zo_templates/windowtemplates.xml
+++ b/esoui/libraries/zo_templates/windowtemplates.xml
@@ -137,6 +137,13 @@
             </Controls>
         </Backdrop>
 
+        <Backdrop name="ZO_DarkThinFrame" virtual="true" tier="LOW">
+            <Anchor point="TOPLEFT" offsetX="-4" offsetY="-4"/>
+            <Anchor point="BOTTOMRIGHT" offsetX="4" offsetY="4"/>
+            <Edge file="EsoUI/Art/Miscellaneous/dark_edgeFrame_8_thin.dds" edgeFileWidth="64" edgeFileHeight="8" />
+            <Center file="EsoUI/Art/Miscellaneous/Gamepad/gp_edgeFill.dds" />
+        </Backdrop>
+        
         <Backdrop name="ZO_SliderBackdrop" centerColor="00000000" virtual="true">
             <Anchor point="TOPLEFT" offsetX="0" offsetY="4" />
             <Anchor point="BOTTOMRIGHT" offsetX="0" offsetY="-4" />
@@ -168,76 +175,6 @@
             </Controls>
         </Texture>
 
-        <EditBox name="ZO_DefaultEdit" font="ZoFontEdit" mouseEnabled="true" virtual="true">
-            <Dimensions y="24" />
-            <OnMouseDown>
-                self:TakeFocus()
-            </OnMouseDown>
-            <OnEnter>
-                self:LoseFocus()
-            </OnEnter>
-            <OnEscape>
-                self:LoseFocus()
-            </OnEscape>
-
-            <OnFocusGained>
-                if WINDOW_MANAGER:IsHandlingHardwareEvent() then
-                    PlaySound(SOUNDS.EDIT_CLICK)
-                end
-            </OnFocusGained>
-        </EditBox>
-
-        <EditBox name="ZO_EditDefaultText" virtual="true">
-            <OnTextChanged>
-                ZO_EditDefaultText_OnTextChanged(self)
-            </OnTextChanged>
-            <Controls>
-                <Label name="$(parent)Text" color="INTERFACE_COLOR_TYPE_TEXT_COLORS:INTERFACE_TEXT_COLOR_DEFAULT_TEXT" font="ZoFontEdit">
-                    <AnchorFill/>
-                </Label>
-            </Controls>
-        </EditBox>
-
-        <Backdrop name="ZO_EditBackdrop" virtual="true">
-            <Dimensions y="28"/>
-            <Edge file="EsoUI/Art/ChatWindow/textEntry_edge.dds" edgeFileWidth="64" edgeFileHeight="8" />
-            <Center file="EsoUI/Art/ChatWindow/textEntry_center.dds" />
-            <Insets left="8" top="8" right="-8" bottom="-8" />
-        </Backdrop>
-
-        <EditBox name="ZO_DefaultEditForBackdrop" inherits="ZO_DefaultEdit" virtual="true">
-            <Anchor point="TOPLEFT" offsetX="8" offsetY="3"/>
-            <Anchor point="BOTTOMRIGHT" offsetX="-6" offsetY="-2"/>
-        </EditBox>
-
-        <EditBox name="ZO_DefaultEditMultiLine" font="ZoFontEdit" mouseEnabled="true" multiLine="true" virtual="true">
-            <OnMouseDown>
-                self:TakeFocus()
-            </OnMouseDown>
-            <OnEscape>
-                self:LoseFocus()
-            </OnEscape>
-            <OnMouseWheel>
-                local currentLine = self:GetTopLineIndex()
-                if shift then
-                    delta = delta * 10
-                end
-                local nextLine = zo_clamp(currentLine - delta, 1, self:GetScrollExtents() + 1)
-                self:SetTopLineIndex(nextLine)
-            </OnMouseWheel>
-
-            <OnFocusGained>
-                if WINDOW_MANAGER:IsHandlingHardwareEvent() then
-                    PlaySound(SOUNDS.EDIT_CLICK)
-                end
-            </OnFocusGained>
-        </EditBox>
-
-        <EditBox name="ZO_DefaultEditMultiLineForBackdrop" inherits="ZO_DefaultEditMultiLine" virtual="true">
-            <Anchor point="TOPLEFT" offsetX="6" offsetY="5"/>
-            <Anchor point="BOTTOMRIGHT" offsetX="-7" offsetY="-7"/>
-        </EditBox>
-
         <Slider name="ZO_Slider" mouseEnabled="true" orientation="HORIZONTAL" virtual="true">
             <Dimensions x="150" y="16" />
             <ThumbTexture