diff options
author | Jesús <heckyel@hyperbola.info> | 2020-04-26 12:19:50 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-04-26 12:19:50 -0500 |
commit | 5e2b84876004d24e0ee9c3ad75554680a865a75b (patch) | |
tree | 427b067ae1510ff7a6518ac7e479856cc4993f41 /cl-theme | |
parent | f8a757b7f93c0a0c6a2e89b51b423ebb43d362a8 (diff) | |
download | cl-5e2b84876004d24e0ee9c3ad75554680a865a75b.tar.lz cl-5e2b84876004d24e0ee9c3ad75554680a865a75b.tar.xz cl-5e2b84876004d24e0ee9c3ad75554680a865a75b.zip |
improved form comments
Diffstat (limited to 'cl-theme')
-rw-r--r-- | cl-theme/static/css/style.css | 6 | ||||
-rw-r--r-- | cl-theme/templates/base.html | 2 | ||||
-rw-r--r-- | cl-theme/templates/comments.html | 7 |
3 files changed, 13 insertions, 2 deletions
diff --git a/cl-theme/static/css/style.css b/cl-theme/static/css/style.css index 2769a13..f300ff2 100644 --- a/cl-theme/static/css/style.css +++ b/cl-theme/static/css/style.css @@ -2,7 +2,7 @@ * bulma css framework (github.com/jgthms | bulma.io) * Author: jeremy thomas * Author: jesus e. - * Version: 1.0.5 + * Version: 1.0.5a * Licensed under MIT (https://github.com/jgthms/bulma/blob/master/LICENSE) */ /* basic formatting changes (mostly to cater for darker colours) */ @@ -529,6 +529,10 @@ h2 > a:hover { box-shadow: 0 1px 3px rgba(10, 10, 10, 0.1); } +.warning-sp { + display: none; +} + .comments-content { background-color: #161c1c; padding-bottom: 10px; diff --git a/cl-theme/templates/base.html b/cl-theme/templates/base.html index 589920a..2e10df6 100644 --- a/cl-theme/templates/base.html +++ b/cl-theme/templates/base.html @@ -45,7 +45,7 @@ <!-- stylesheets --> <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/bulma.css?v=0.7.4"/> <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/hover.css"/> - <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/style.css?v=1.0.5"/> + <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/style.css?v=1.0.5a"/> <!-- favicon --> <link rel="icon" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/cl-favicon-16x16.png" sizes="16x16"/> <link rel="icon" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/cl-favicon-32x32.png" sizes="32x32"/> diff --git a/cl-theme/templates/comments.html b/cl-theme/templates/comments.html index 92f1e6d..725447a 100644 --- a/cl-theme/templates/comments.html +++ b/cl-theme/templates/comments.html @@ -65,6 +65,13 @@ </div> </div> + <div class="warning-sp"> + <div class="field-label is-normal"> + <label for="empty">{{ _('Deja esto vacío:') }}</label> + </div> + <input id="empty" type="text" name="url" /> + </div> + <div class="field is-horizontal"> <div class="field-label is-normal"> <label class="has-text-white" for="comment">{{ _('Comentario') }}</label> |