make share link input field readonly, with css tweaks

This commit is contained in:
Jeff Atwood 2014-08-17 23:08:53 -07:00
parent ad17a315ec
commit e9bfb1c89e
2 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@
<span class="date">{{bound-raw-date date}}</span>
{{/if}}
<div><input type='text' /></div>
<div><input type='text' readonly /></div>
{{each shareLinks itemView='share-link'}}

View File

@ -47,5 +47,7 @@
input[type=text] {
font-size: 16px;
margin-bottom: 10px;
cursor: text;
background-color: $secondary;
}
}