Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix 100% width on Target cell colored borders
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Eng committed Feb 27, 2012
1 parent da79a88 commit 84c108b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
Expand Up @@ -230,7 +230,7 @@ public void onMouseDown(MouseDownEvent event)
}
});
targetPanel.add(label);
targetPanel.setSize("100%", "100%");
targetPanel.setWidth("100%");
view.setWidget(targetPanel);
}
};
Expand Down
Expand Up @@ -394,12 +394,17 @@ tr.TableEditorRow.selected td.TableEditorCell-Target {
}

tr.FuzzyStateDecoration td.TableEditorCell-Target .TableEditorContent {
border-left: 3px solid #ffc000;
border-right: 3px solid #ffc000;
/* border-left: 3px solid #ffc000; */
/* border-right: 3px solid #ffc000; */
padding-left: 5px;
padding-right: 5px;
}

tr.FuzzyStateDecoration td.TableEditorCell-Target table.TableEditorCell-Target-Table {
border-left: 3px solid #ffc000;
border-right: 3px solid #ffc000;
}

tr.FuzzyStateDecoration td.TableEditorCell-Target .TableEditorContent-Edit
{
border-left: 3px solid #ffc000;
Expand All @@ -411,12 +416,20 @@ tr.FuzzyStateDecoration td.TableEditorCell-Target .TableEditorContent-Edit

tr.ApprovedStateDecoration td.TableEditorCell-Target .TableEditorContent
{
border-left: 3px solid #099b09;
border-right: 3px solid #099b09;
/* border-left: 3px solid #099b09; */
/* border-right: 3px solid #099b09; */
padding-left: 5px;
padding-right: 5px;
}

tr.ApprovedStateDecoration td.TableEditorCell-Target table.TableEditorCell-Target-Table
{
border-left: 3px solid #099b09;
border-right: 3px solid #099b09;
}



tr.ApprovedStateDecoration td.TableEditorCell-Target .TableEditorContent-Edit
{
border-left: 3px solid #099b09;
Expand Down

0 comments on commit 84c108b

Please sign in to comment.