aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/textfield.reel
diff options
context:
space:
mode:
authorValerio Virgillito2012-02-02 00:11:51 -0800
committerValerio Virgillito2012-02-02 15:33:42 -0800
commita3024011a91d3941f81481dd4d600e9684eb0fd4 (patch)
tree084b4856910f1db53973dd11617f7ffa03a6dd46 /node_modules/montage/ui/textfield.reel
parent97255032921178bdfbc25512ddf3e0867e353f7a (diff)
downloadninja-a3024011a91d3941f81481dd4d600e9684eb0fd4.tar.gz
upgrading to Montage v0.6
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/textfield.reel')
-rwxr-xr-xnode_modules/montage/ui/textfield.reel/textfield.css35
-rwxr-xr-xnode_modules/montage/ui/textfield.reel/textfield.html16
-rw-r--r--[-rwxr-xr-x]node_modules/montage/ui/textfield.reel/textfield.js37
3 files changed, 8 insertions, 80 deletions
diff --git a/node_modules/montage/ui/textfield.reel/textfield.css b/node_modules/montage/ui/textfield.reel/textfield.css
deleted file mode 100755
index 59e638bc..00000000
--- a/node_modules/montage/ui/textfield.reel/textfield.css
+++ /dev/null
@@ -1,35 +0,0 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7.montage-textfield {
8 line-height: 1em;
9 z-index: 1;
10 cursor: pointer;
11 background-color: hsl(0, 0%, 80%);
12 border: 1px solid hsl(0, 0%, 40%);
13 padding: 5px;
14 width: 300px;
15 font-size: 1.0em;
16}
17
18.montage-textfield:focus {
19 background-color: hsl(0, 100%, 99%);
20 border: 2px solid hsl(0, 0%, 40%);
21}
22
23.montage-text-invalid {
24 border: 2px solid #E73525;
25 border-style: dashed;
26}
27
28.montage-error-text {
29 /*color: #E73525;
30 margin: 2px 0;
31 background-image: url(dialog_warning.png);
32 background-repeat: no-repeat;
33 padding: 5px 0 5px 32px;
34 */
35}
diff --git a/node_modules/montage/ui/textfield.reel/textfield.html b/node_modules/montage/ui/textfield.reel/textfield.html
deleted file mode 100755
index f15cf593..00000000
--- a/node_modules/montage/ui/textfield.reel/textfield.html
+++ /dev/null
@@ -1,16 +0,0 @@
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 <title></title>
10 <link rel="stylesheet" type="text/css" href="textfield.css">
11
12</head>
13<body>
14
15</body>
16</html>
diff --git a/node_modules/montage/ui/textfield.reel/textfield.js b/node_modules/montage/ui/textfield.reel/textfield.js
index e90e20c6..b16e685b 100755..100644
--- a/node_modules/montage/ui/textfield.reel/textfield.js
+++ b/node_modules/montage/ui/textfield.reel/textfield.js
@@ -3,36 +3,15 @@
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> 3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. 4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */ 5 </copyright> */
6/**
7 @module "montage/ui/textfield.reel"
8 @requires montage/core/core
9 @requires montage/ui/editable-text
10*/
11var Montage = require("montage").Montage, 6var Montage = require("montage").Montage,
12 EditableText = require("ui/editable-text").EditableText; 7 Component = require("ui/component").Component,
13/** 8 TextInput = require("ui/text-input").TextInput,
14 @class module:"montage/ui/textfield.reel".Textfield 9 StandardInputAttributes = require("ui/text-input").StandardInputAttributes;
15 @extends module:montage/ui/editable-text.EditableText
16*/
17var Textfield = exports.Textfield = Montage.create(EditableText,/** @lends module:"montage/ui/textfield.reel".Textfield# */ {
18/**
19 Description TODO
20 @type {Property}
21 @default null
22 */
23 delegate: {
24 enumerable: true,
25 value: null
26 },
27/** 10/**
28 Description TODO 11 * The Text input
29 @private 12 */
30*/ 13var Textfield = exports.Textfield = Montage.create(TextInput, {
31 _drawSpecific: {
32 enumerable: false,
33 value: function() {
34 this.element.classList.add('montage-textfield');
35 }
36 }
37}); 14});
38 15
16// Standard <input> tag attributes - http://www.w3.org/TR/html5/the-input-element.html#the-input-element
17Textfield.addAttributes(StandardInputAttributes);