diff --git a/bookmarks/models.py b/bookmarks/models.py index 8878de5..44ee27e 100644 --- a/bookmarks/models.py +++ b/bookmarks/models.py @@ -55,10 +55,9 @@ class BookmarkForm(forms.ModelForm): url = forms.URLField() # Do not require title and description in form as we fill these automatically if they are empty title = forms.CharField(max_length=512, - required=False, - widget=forms.TextInput(attrs={'placeholder': auto_fill_placeholder})) + required=False) description = forms.CharField(required=False, - widget=forms.Textarea(attrs={'placeholder': auto_fill_placeholder})) + widget=forms.Textarea()) class Meta: model = Bookmark diff --git a/bookmarks/styles/index.scss b/bookmarks/styles/index.scss index b804513..408f411 100644 --- a/bookmarks/styles/index.scss +++ b/bookmarks/styles/index.scss @@ -1,10 +1,10 @@ // Font sizes $html-font-size: 18px !default; -$alternative-color: #f45d00; -$alternative-color: #FF84E8; -$alternative-color: #98C1D9; -$alternative-color: #7B287D; +//$alternative-color: #c84e00; +//$alternative-color: #FF84E8; +//$alternative-color: #98C1D9; +//$alternative-color: #7B287D; $alternative-color: #05a6a3; $alternative-color-dark: darken($alternative-color, 5%); diff --git a/bookmarks/templates/bookmarks/edit.html b/bookmarks/templates/bookmarks/edit.html index 56cd3da..fd15693 100644 --- a/bookmarks/templates/bookmarks/edit.html +++ b/bookmarks/templates/bookmarks/edit.html @@ -2,8 +2,14 @@ {% load bookmarks %} {% block content %} -