SVG.txt 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. HOW TO PATCH SVG
  2. ================
  3. 1. Clipping Regions for Sidebars
  4. --------------------------------
  5. <defs>
  6. <clipPath id="myClip1"><rect id="Clip-Path-Left" x="0" y="0" width="216" height="400"/></clipPath>
  7. <clipPath id="myClip2"><rect id="Clip-Path-Right" x="0" y="0" width="216" height="400"/></clipPath>
  8. <clipPath id="myClip3"><rect id="Clip-Path-Left-Chat" x="0" y="0" width="216" height="400"/></clipPath>
  9. </defs>
  10. 2. foreignObject TextEditors for Chat
  11. -------------------------------------
  12. <foreignObject x="864" y="504" width="198" height="120" onmouseover="barHover(evt);" onmouseout="barHoverOut(evt);">
  13. <div xmlns:data="Chat" id="edit"
  14. style="padding:4px;background-color:#FFF687;color:#3B5998;font-family:'Exo 2';font-size:16px;"
  15. contentEditable="true" xmlns="http://www.w3.org/1999/xhtml">Write here some text.</div>
  16. </foreignObject>
  17. <foreignObject x="10" y="504" width="198" height="120" onmouseover="onlineHover(evt);" onmouseout="onlineHoverOut(evt);">
  18. <div xmlns:data="Chat+xxx" id="onlineChatEdit"
  19. style="padding:4px;background-color:#FFF687;color:#3B5998;font-family:'Exo 2';font-size:16px;"
  20. contentEditable="true" xmlns="http://www.w3.org/1999/xhtml">Write here some text.</div>
  21. </foreignObject>
  22. 3. Chat Containers
  23. ------------------
  24. <g id="Chat" y="0" clip-path="url(#myClip2)" transform="translate(857.000000, 107.000000)"/>
  25. <g id="Online-List" y="0" clip-path="url(#myClip1)" transform="translate(1.000000, 107.000000)"/>
  26. <g id="Online-Chat" y="0" clip-path="url(#myClip3)" transform="translate(1.000000, 107.000000)"/>