Commit 7db4081b3cab73d788f128de429cad0279016c94
1 parent
2e8998ac
Exists in
master
and in
39 other branches
Adding CSS to open-data
Showing
2 changed files
with
7 additions
and
3 deletions
Show diff stats
src/colab/deprecated/templates/open-data.html
| ... | ... | @@ -16,7 +16,7 @@ |
| 16 | 16 | <a href="/api/search/">http://colab.interlegis.leg.br/api/search/</a></p> |
| 17 | 17 | |
| 18 | 18 | <h3>{% trans "Parameters:" %}</h3> |
| 19 | - <ul> | |
| 19 | + <ul class="none indent-dois"> | |
| 20 | 20 | <li> |
| 21 | 21 | <h4><i>{% trans "Query" %}</i> - q</h4> |
| 22 | 22 | {% blocktrans %}The <i>query</i> is the "question" sent |
| ... | ... | @@ -25,7 +25,7 @@ |
| 25 | 25 | for example <b>collaborator</b> and represents the data stored |
| 26 | 26 | by the system, for example <b>jeanferri</b>.{% endblocktrans %} |
| 27 | 27 | {% trans "The following is a list of available fields to search:" %}<br/> |
| 28 | - <ul> | |
| 28 | + <ul class="none indent-dois"> | |
| 29 | 29 | <li><b>Type</b>: {% trans "wiki, thread, ticket, changeset." %}</li> |
| 30 | 30 | <li><b>Title</b>: {% trans "page name, title of the discussion or ticket, changeset description." %}</li> |
| 31 | 31 | <li><b>Description</b>: {% trans "excerpt from the page or the discussion, description of the ticket or changeset." %}</li> | ... | ... |
src/colab/static/css/screen.css
| ... | ... | @@ -142,10 +142,14 @@ fieldset>legend { |
| 142 | 142 | margin: 10px 0; |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | -ul.indent{ | |
| 145 | +ul.indent { | |
| 146 | 146 | padding-left: 1.5em; |
| 147 | 147 | } |
| 148 | 148 | |
| 149 | +ul.indent-dois { | |
| 150 | + padding-left: 3.5em; | |
| 151 | +} | |
| 152 | + | |
| 149 | 153 | #avatar { |
| 150 | 154 | background-color: #FFF; |
| 151 | 155 | padding: 9px 12px; | ... | ... |