aboutsummaryrefslogtreecommitdiff
path: root/js/panels/css-panel/css-panel.reel/css-panel.html
diff options
context:
space:
mode:
Diffstat (limited to 'js/panels/css-panel/css-panel.reel/css-panel.html')
-rw-r--r--js/panels/css-panel/css-panel.reel/css-panel.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html
new file mode 100644
index 00000000..42dca8a2
--- /dev/null
+++ b/js/panels/css-panel/css-panel.reel/css-panel.html
@@ -0,0 +1,56 @@
1<!DOCTYPE html>
2<!-- <copyright>
3This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
4No 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 lang="en">
8<head>
9 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
10 <link rel="stylesheet" href="css-panel.css" type="text/css">
11 <script type="text/montage-serialization">
12 {
13 "owner": {
14 "prototype" : "js/panels/css-panel/css-panel.reel",
15 "properties" : {
16 "element" : {"#" : "container"},
17 "styleSheetsView": {"@": "styleSheetsView"},
18 "stylesViewContainer": {"@": "stylesViewContainer"}
19 }
20 },
21
22 "styleSheetsView": {
23 "prototype" : "js/panels/css-panel/style-sheets-view.reel",
24 "properties": {
25 "element": {"#": "style-sheet-view" },
26 "documentNameLabel": {"#": "document-name" }
27 }
28 },
29 "stylesViewContainer": {
30 "prototype" : "js/panels/css-panel/styles-view-container.reel",
31 "properties": {
32 "element": {"#": "styles-view-container" },
33 "selectionName": {"@": "selectionName" }
34 }
35 },
36 "selectionName" : {
37 "prototype": "montage/ui/dynamic-text.reel",
38 "properties": {
39 "element": {"#":"selection-name"}
40 },
41 "bindings": {
42 "value" : {"<-": "@stylesViewContainer.selectionNameLabelText" }
43 }
44 }
45 }
46 </script>
47</head>
48<body>
49<section data-montage-id="container" class="css-panel">
50 <h3>Style Sheets <span data-montage-id="document-name" class="document-name"></span></h3>
51 <div data-montage-id="style-sheet-view"></div>
52 <h3>Styles <span data-montage-id="selection-name" class="selection-name"></span></h3>
53 <div data-montage-id="styles-view-container"></div>
54</section>
55</body>
56</html> \ No newline at end of file