From 4c3aac5eabd93052b1554a03d78235215bb49db4 Mon Sep 17 00:00:00 2001
From: Valerio Virgillito
Date: Tue, 29 May 2012 00:34:40 -0700
Subject: document bindings phase 1

- using array controller to bind the current document to all ninja components
- removed open document event
- removed references to the document controller

Signed-off-by: Valerio Virgillito <valerio@motorola.com>
---
 .../layout/document-entry.reel/document-entry.css  | 22 ++++++++++++++++------
 1 file changed, 16 insertions(+), 6 deletions(-)

(limited to 'js/components/layout/document-entry.reel/document-entry.css')

diff --git a/js/components/layout/document-entry.reel/document-entry.css b/js/components/layout/document-entry.reel/document-entry.css
index 4601974f..010e1da7 100755
--- a/js/components/layout/document-entry.reel/document-entry.css
+++ b/js/components/layout/document-entry.reel/document-entry.css
@@ -19,7 +19,20 @@
     min-width:0px;
 }
 
-.documentEntry img {
+.mybutton {
+    display: inline;
+    -webkit-appearance: none;
+    outline: none;
+
+    font-size: 9px;
+    cursor: pointer;
+    border: 0px;
+    background-color: #474747;
+    background-image: -webkit-linear-gradient(top, #505050 0%, #3c3c3c 100%);
+
+}
+
+.documentEntry button {
     opacity: 0.5; /* 50% */
     width: 12px;
     max-width:12px;
@@ -29,17 +42,14 @@
     transition: opacity 0.2s ease;
 }
 
-.documentEntry:hover,
-.documentEntry:active,
-.documentEntry.activeTab {
-    /*background-color: #7f7f7f; *//* rgb(127, 127, 127); */
+.documentEntry.selected {
+    background-color:#7F7F7F;
 }
 
 .documentEntry img:hover {
     opacity: 1.0; /* 100% */
 }
 
-
 .documentEntry span.dirty:before{
     content: "*";
     display:inline;
-- 
cgit v1.2.3


From 4fa08fe2ce439a5f5c248c568f72d3828ee11b36 Mon Sep 17 00:00:00 2001
From: Valerio Virgillito
Date: Tue, 29 May 2012 11:43:55 -0700
Subject: fix for the document tab close button and rulers on initial document

Signed-off-by: Valerio Virgillito <valerio@motorola.com>
---
 js/components/layout/document-entry.reel/document-entry.css | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

(limited to 'js/components/layout/document-entry.reel/document-entry.css')

diff --git a/js/components/layout/document-entry.reel/document-entry.css b/js/components/layout/document-entry.reel/document-entry.css
index 010e1da7..6a2900be 100755
--- a/js/components/layout/document-entry.reel/document-entry.css
+++ b/js/components/layout/document-entry.reel/document-entry.css
@@ -19,17 +19,13 @@
     min-width:0px;
 }
 
-.mybutton {
+.documentCloseButton {
     display: inline;
     -webkit-appearance: none;
     outline: none;
-
-    font-size: 9px;
     cursor: pointer;
     border: 0px;
-    background-color: #474747;
-    background-image: -webkit-linear-gradient(top, #505050 0%, #3c3c3c 100%);
-
+    background: #474747 url(../../../../images/documentsTab/close_button.gif) center center no-repeat;
 }
 
 .documentEntry button {
-- 
cgit v1.2.3


From 5d7dff15e1e603e3b37057b9843e4b1eef1b2dca Mon Sep 17 00:00:00 2001
From: Valerio Virgillito
Date: Tue, 29 May 2012 15:32:47 -0700
Subject: cleanup and handling the document views in the document controller
 for now.

Signed-off-by: Valerio Virgillito <valerio@motorola.com>
---
 js/components/layout/document-entry.reel/document-entry.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'js/components/layout/document-entry.reel/document-entry.css')

diff --git a/js/components/layout/document-entry.reel/document-entry.css b/js/components/layout/document-entry.reel/document-entry.css
index 6a2900be..87880b8d 100755
--- a/js/components/layout/document-entry.reel/document-entry.css
+++ b/js/components/layout/document-entry.reel/document-entry.css
@@ -42,7 +42,7 @@
     background-color:#7F7F7F;
 }
 
-.documentEntry img:hover {
+.documentEntry button:hover {
     opacity: 1.0; /* 100% */
 }
 
-- 
cgit v1.2.3