diff options
Diffstat (limited to 'js/panels/css-panel/style-sheet.reel/style-sheet.html')
-rw-r--r-- | js/panels/css-panel/style-sheet.reel/style-sheet.html | 57 |
1 files changed, 51 insertions, 6 deletions
diff --git a/js/panels/css-panel/style-sheet.reel/style-sheet.html b/js/panels/css-panel/style-sheet.reel/style-sheet.html index 1c47ce3f..1820f780 100644 --- a/js/panels/css-panel/style-sheet.reel/style-sheet.html +++ b/js/panels/css-panel/style-sheet.reel/style-sheet.html | |||
@@ -15,11 +15,13 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
15 | "name" : "StyleSheet", | 15 | "name" : "StyleSheet", |
16 | "properties" : { | 16 | "properties" : { |
17 | "element" : {"#" : "style-sheet-container"}, | 17 | "element" : {"#" : "style-sheet-container"}, |
18 | "disableCheckbox": {"@": "disableCheckbox"}, | ||
19 | "nameText": {"@": "name"}, | 18 | "nameText": {"@": "name"}, |
20 | "mediaInput": {"@": "mediaInput"}, | 19 | "mediaInput": {"@": "mediaInput"}, |
21 | "editButton": {"@": "editButton"}, | 20 | "editButton": {"@": "editButton"}, |
22 | "editView": {"#": "style-sheet-edit"} | 21 | "editView": {"#": "style-sheet-edit"}, |
22 | "disableButton": {"@": "disableButton"}, | ||
23 | "importButton": {"@": "importButton"}, | ||
24 | "deleteButton": {"@": "deleteButton"} | ||
23 | } | 25 | } |
24 | }, | 26 | }, |
25 | "disableCheckbox": { | 27 | "disableCheckbox": { |
@@ -65,13 +67,56 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
65 | "listener": {"@": "owner"} | 67 | "listener": {"@": "owner"} |
66 | }] | 68 | }] |
67 | 69 | ||
70 | }, | ||
71 | "disableButton": { | ||
72 | "module": "montage/ui/button.reel", | ||
73 | "name": "Button", | ||
74 | "properties": { | ||
75 | "element": {"#": "disable-button"}, | ||
76 | "identifier": "disableButton", | ||
77 | "label": "Disable" | ||
78 | }, | ||
79 | "listeners": [{ | ||
80 | "type": "action", | ||
81 | "listener": {"@": "owner"} | ||
82 | }] | ||
83 | |||
84 | }, | ||
85 | "importButton": { | ||
86 | "module": "montage/ui/button.reel", | ||
87 | "name": "Button", | ||
88 | "properties": { | ||
89 | "element": {"#": "import-button"}, | ||
90 | "identifier": "importButton", | ||
91 | "label": "Import" | ||
92 | }, | ||
93 | "listeners": [{ | ||
94 | "type": "action", | ||
95 | "listener": {"@": "owner"} | ||
96 | }] | ||
97 | |||
98 | }, | ||
99 | "deleteButton": { | ||
100 | "module": "montage/ui/button.reel", | ||
101 | "name": "Button", | ||
102 | "properties": { | ||
103 | "element": {"#": "delete-button"}, | ||
104 | "identifier": "deleteButton", | ||
105 | "label": "Delete" | ||
106 | }, | ||
107 | "listeners": [{ | ||
108 | "type": "action", | ||
109 | "listener": {"@": "owner"} | ||
110 | }] | ||
111 | |||
68 | } | 112 | } |
69 | } | 113 | } |
70 | </script> | 114 | </script> |
71 | </head> | 115 | </head> |
72 | <body> | 116 | <body> |
73 | <div id="style-sheet-container" class="style-sheet-container"> | 117 | <div id="style-sheet-container" class="style-sheet-container"> |
74 | <div id="disable-checkbox"></div> | 118 | <div class="ss-icon"></div> |
119 | <!--<div id="disable-checkbox"></div>--> | ||
75 | <span id="sheet-name"></span> | 120 | <span id="sheet-name"></span> |
76 | <label>Media:</label> | 121 | <label>Media:</label> |
77 | <div id="media-input"></div> | 122 | <div id="media-input"></div> |
@@ -79,9 +124,9 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
79 | <div data-montage-id="style-sheet-edit" class="style-sheet-edit"> | 124 | <div data-montage-id="style-sheet-edit" class="style-sheet-edit"> |
80 | 125 | ||
81 | <button data-montage-id="edit-button" class="ss-edit-button"></button> | 126 | <button data-montage-id="edit-button" class="ss-edit-button"></button> |
82 | <button data-montage-id="delete-button" class="ss-delete-button nj-skinned">Delete</button> | 127 | <button data-montage-id="delete-button" class="ss-delete-button nj-skinned"></button> |
83 | <button data-montage-id="import-button" class="nj-skinned">Import</button> | 128 | <button data-montage-id="import-button" class="ss-import-button nj-skinned"></button> |
84 | <button data-montage-id="disable-button" class="ss-disable-button nj-skinned">Disable</button> | 129 | <button data-montage-id="disable-button" class="ss-disable-button nj-skinned"></button> |
85 | 130 | ||
86 | </div> | 131 | </div> |
87 | </div> | 132 | </div> |