aboutsummaryrefslogtreecommitdiff
path: root/js/components/tools-properties/tag-properties.reel/tag-properties.html
diff options
context:
space:
mode:
Diffstat (limited to 'js/components/tools-properties/tag-properties.reel/tag-properties.html')
-rw-r--r--js/components/tools-properties/tag-properties.reel/tag-properties.html86
1 files changed, 86 insertions, 0 deletions
diff --git a/js/components/tools-properties/tag-properties.reel/tag-properties.html b/js/components/tools-properties/tag-properties.reel/tag-properties.html
new file mode 100644
index 00000000..c7588b9e
--- /dev/null
+++ b/js/components/tools-properties/tag-properties.reel/tag-properties.html
@@ -0,0 +1,86 @@
1<!DOCTYPE HTML>
2<!-- <copyright>
3 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
4 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
5 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
6 </copyright> -->
7<html>
8 <head>
9 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
10 <link rel="stylesheet" type="text/css" href="tag-properties.css">
11
12 <script type="text/montage-serialization">
13 {
14
15 "owner": {
16 "module": "js/components/tools-properties/tag-properties.reel",
17 "name": "TagProperties",
18 "properties": {
19 "element": {"#": "tagProperties"},
20
21 "divElement": {"#": "divTool"},
22 "imageElement": {"#": "imageTool"},
23 "videoElement": {"#": "videoTool"},
24 "canvasElement": {"#": "canvasTool"},
25 "customElement": {"#": "customTool"},
26
27 "classField": {"#": "className"},
28
29 "customName": {"#": "customTagCB"},
30 "customLabel": {"#": "customContainer"}
31 }
32 }
33 }
34 </script>
35
36 </head>
37
38 <body>
39 <div id="tagProperties" class="subToolHolderPanel">
40 <div id="tagToolContainer" class="tagRadioButtons">
41 <input type="radio" id="divTool" class="tag-type" title="Div Element" name="TagRadios" checked/>
42 <input type="radio" id="imageTool" class="tag-type" title="Image Element" name="TagRadios"/>
43 <input type="radio" id="videoTool" class="tag-type" title="Video Element" name="TagRadios"/>
44 <input type="radio" id="canvasTool" class="tag-type" title="Canvas Element" name="TagRadios"/>
45 <input type="radio" id="customTool" class="tag-type" title="Custom Element" name="TagRadios"/>
46
47 <div class="nj-divider divider-vertical">&nbsp;</div>
48
49 <div id="classNameContainer" class="leftLabel">
50 <label class="label"> Class:
51 <input id="className" type="text" name="ClassNameTextBox" class="textBox nj-skinned">
52 </label>
53 </div>
54
55 <div id="customContainer" class="leftLabel" style="padding-top: 3px;">
56 <label class="label"> Tag Name:</label>
57
58 <select id="customTagCB" class="nj-skinned">
59 <option>Article</option>
60 <option>Aside</option>
61 <option>Section</option>
62 </select>
63 </div>
64
65
66
67 <div id="positionContainer" class="leftLabel" style="padding-top: 3px;">
68 <label class="label"> Position:</label>
69
70 <select id="positionCB" class="nj-skinned">
71 <option>Absolute</option>
72 <option>Relative</option>
73 <option>Fixed</option>
74 <option>Static</option>
75 <option>Inherit</option>
76 </select>
77
78 </div>
79
80
81 </div>
82 </div>
83 </body>
84
85</html>
86