Skip to content

Commit

Permalink
sptutusukanta#3 Textarea ui added
Browse files Browse the repository at this point in the history
  • Loading branch information
ramkrishn123 committed Oct 16, 2019
1 parent d7fe508 commit d04657c
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 5 deletions.
15 changes: 11 additions & 4 deletions css/platinui.win.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions examples/windows/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ <h1>PlatinUI - Windows</h1>
<ul>
<li><a href="#buttons">Buttons</a></li>
<li><a href="#textinputs">Text inputs</a></li>
<li><a href="#textarea">Textarea</a></li>
</ul>
</p>
</section>
Expand All @@ -67,6 +68,13 @@ <h2>Text inputs</h2>
<input value="text input" />
</section>

<section id="textarea">
<h2>Textarea</h2>
<p>These are some Textarea previews.</p>
<textarea class="default" value="textarea"></textarea>
<textarea></textarea>
</section>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="../../js/platinui.js"></script>
</body>
Expand Down
3 changes: 2 additions & 1 deletion sass/modules/_windows.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
font-family: $font-family-base;
background: $color-base-background;
@import "../partials/windows/_buttons";
@import "../partials/windows/_textinputs.scss"
@import "../partials/windows/_textinputs.scss";
@import "../partials/windows/textarea";
}
8 changes: 8 additions & 0 deletions sass/partials/windows/_textarea.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
textarea{
width: 150px !important;

&.default{
border: #0078d7 solid 1px;
font-family: "Open Sans", sans-serif;
}
}

0 comments on commit d04657c

Please sign in to comment.