Skip to main content
summaryrefslogtreecommitdiffstats
blob: cda001e6711a238a1daede654c26c178fae0b56e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.e4.tools.spy.spyPart">
      <spyPart
            description="Open Css Spy"
            icon="icons/cssspy.png"
            name="CSS Spy"
            part="org.eclipse.e4.tools.css.spy.CssSpyPart"
            shortcut="M2+M3+F5"></spyPart>
      <spyPart
            description="Open Css Scratch Pad"
            icon="icons/css_scratchpad.png"
            name="CSS Scratch pad"
            part="org.eclipse.e4.tools.css.spy.CSSScratchPadPart"
            shortcut="M2+M3+F6">
      </spyPart>
   </extension>
   <extension
         point="org.eclipse.e4.ui.css.swt.theme">
      <stylesheet
            uri="css/dark-theme.css">
         <themeid
               refid="org.eclipse.e4.ui.css.theme.e4_dark"></themeid>
      </stylesheet>
   </extension>

</plugin>

Back to the top