bootstrap.css
8 years ago
linedtextarea.css
8 years ago
select2.min.css
8 years ago
style.css
8 years ago
linedtextarea.css
51 lines
| 1 | /** |
| 2 | * jQuery Lined Textarea Plugin |
| 3 | * http://alan.blog-city.com/jquerylinedtextarea.htm |
| 4 | * |
| 5 | * Copyright (c) 2010 Alan Williamson |
| 6 | * |
| 7 | * Released under the MIT License: |
| 8 | * http://www.opensource.org/licenses/mit-license.php |
| 9 | * |
| 10 | * Usage: |
| 11 | * Displays a line number count column to the left of the textarea |
| 12 | * |
| 13 | * Class up your textarea with a given class, or target it directly |
| 14 | * with JQuery Selectors |
| 15 | * |
| 16 | * $(".lined").linedtextarea({ |
| 17 | * selectedLine: 10, |
| 18 | * selectedClass: 'lineselect' |
| 19 | * }); |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | .linedtextarea textarea { |
| 24 | padding-right:0.3em; |
| 25 | padding-top:0.3em; |
| 26 | border: 0; |
| 27 | } |
| 28 | |
| 29 | .linedwrap .lines { |
| 30 | margin-top: 0px; |
| 31 | width: 25px; |
| 32 | float: left; |
| 33 | overflow: hidden; |
| 34 | border-right: 1px solid #c0c0c0; |
| 35 | } |
| 36 | |
| 37 | .linedwrap .codelines { |
| 38 | padding-top: 5px; |
| 39 | } |
| 40 | |
| 41 | .linedwrap .codelines .lineno { |
| 42 | color:#AAAAAA; |
| 43 | padding-right: 0.5em; |
| 44 | padding-top: 0.0em; |
| 45 | text-align: right; |
| 46 | white-space: nowrap; |
| 47 | } |
| 48 | |
| 49 | .linedwrap .codelines .lineselect { |
| 50 | color: red; |
| 51 | } |