Skip to content

Commit

Permalink
Style text areas
Browse files Browse the repository at this point in the history
  • Loading branch information
tekmaven committed May 1, 2012
1 parent bdd73c5 commit 40f6eea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions SqlTools/Content/Site.css
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,12 @@ ul#social li {
background: url("../Images/twitter.png") no-repeat;
}

.codeBox {
font-family: Consolas, 'Lucida Console', 'Courier New', monospace;
width: 100%;
height: 400px;
}


/********************
* Mobile Styles *
Expand Down
4 changes: 2 additions & 2 deletions SqlTools/Views/Home/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
<section class="features">
<section class="feature">
<h3>Original list:</h3>
<textarea style="width: 100%; height: 400px;" data-bind="value: SourceText, valueUpdate: 'afterkeydown'"></textarea>
<textarea class="codeBox" data-bind="value: SourceText, valueUpdate: 'afterkeydown'"></textarea>
</section>
<section class="feature">

<h3>Result:</h3>
<textarea style="width: 100%; height: 400px;" data-bind="value: ProcessedText"></textarea>
<textarea class="codeBox" data-bind="value: ProcessedText"></textarea>
</section>
</section>

0 comments on commit 40f6eea

Please sign in to comment.