diff --git a/ietf/templates/doc/document_charter.html b/ietf/templates/doc/document_charter.html index ba29110c5..29a2f59e9 100644 --- a/ietf/templates/doc/document_charter.html +++ b/ietf/templates/doc/document_charter.html @@ -6,10 +6,6 @@ {% endblock %} -{% block morecss %} -.edit { width: 1px } -{% endblock %} - {% block title %}{{ doc.title }}{% endblock %} {% block content %} diff --git a/ietf/templates/doc/document_conflict_review.html b/ietf/templates/doc/document_conflict_review.html index a957c499d..cf3f825b1 100644 --- a/ietf/templates/doc/document_conflict_review.html +++ b/ietf/templates/doc/document_conflict_review.html @@ -2,10 +2,6 @@ {% load ietf_filters %} -{% block morecss %} -.edit { width: 1px } -{% endblock %} - {% block title %}{{ doc.title }}{% endblock %} {% block content %} diff --git a/ietf/templates/doc/document_draft.html b/ietf/templates/doc/document_draft.html index abe831777..04c92b81c 100644 --- a/ietf/templates/doc/document_draft.html +++ b/ietf/templates/doc/document_draft.html @@ -7,10 +7,6 @@ {% endblock %} -{% block morecss %} -.edit { width: 1px } -{% endblock %} - {% block title %} {% if doc.get_state_slug == "rfc" %} RFC {{ rfc_number }} diff --git a/ietf/templates/doc/document_status_change.html b/ietf/templates/doc/document_status_change.html index 21a2209e3..547a5c394 100644 --- a/ietf/templates/doc/document_status_change.html +++ b/ietf/templates/doc/document_status_change.html @@ -2,10 +2,6 @@ {% load ietf_filters %} -{% block morecss %} -.edit { width: 1px } -{% endblock %} - {% block title %}{{ doc.title }}{% endblock %} {% block content %} diff --git a/ietf/templates/group/materials.html b/ietf/templates/group/materials.html index f9dbb6ef0..6f89c54de 100644 --- a/ietf/templates/group/materials.html +++ b/ietf/templates/group/materials.html @@ -4,11 +4,6 @@ {% block group_subtitle %}Materials{% endblock %} -{% block morecss %} - {{ block.super }} - .materials .snippable { width:25em; } -{% endblock %} - {% block group_content %} {% load ietf_filters %} diff --git a/ietf/templates/ipr/add_email.html b/ietf/templates/ipr/add_email.html index ac2e80b54..a5e6be222 100644 --- a/ietf/templates/ipr/add_email.html +++ b/ietf/templates/ipr/add_email.html @@ -2,10 +2,6 @@ {% load bootstrap3 %} -{% block morecss %} - form.add-email textarea { height: 24em; } -{% endblock morecss %} - {% block title %}Add email on {{ ipr.title }}{% endblock %} {% block content %} diff --git a/ietf/templates/ipr/notify.html b/ietf/templates/ipr/notify.html index ef9915e0b..14c945c5d 100644 --- a/ietf/templates/ipr/notify.html +++ b/ietf/templates/ipr/notify.html @@ -4,10 +4,6 @@ {% block title %}Send Notification{{ formset|pluralize }}{% endblock %} -{% block morecss %} - form.send-notification textarea { height: 24em; } -{% endblock morecss %} - {% block content %}

Send Notification{{ formset|pluralize }}
{{ ipr }}

diff --git a/ietf/templates/meeting/session_details.html b/ietf/templates/meeting/session_details.html index 2144b6d99..6a81f8553 100644 --- a/ietf/templates/meeting/session_details.html +++ b/ietf/templates/meeting/session_details.html @@ -2,10 +2,6 @@ {% block title %}{{ meeting }} : {{ acronym }}{% endblock %} -{% block morecss %} -.timeheader {font-size:120%;} -{% endblock %} - {% block content %}

{{ meeting }} : {{ acronym }} : {{ time }}

diff --git a/ietf/templates/nomcom/private_index.html b/ietf/templates/nomcom/private_index.html index c8c5635af..b4bea5d2a 100644 --- a/ietf/templates/nomcom/private_index.html +++ b/ietf/templates/nomcom/private_index.html @@ -1,9 +1,5 @@ {% extends "nomcom/nomcom_private_base.html" %} -{% block morecss %} -.edit { width: 1px } -{% endblock %} - {% block subtitle %} - Administration {% endblock %} {% block nomcom_content %} diff --git a/static/css/ietf.css b/static/css/ietf.css index cb9c764f6..7eaca9083 100644 --- a/static/css/ietf.css +++ b/static/css/ietf.css @@ -213,6 +213,12 @@ pre { line-height: 1.214; } color: #ecdbff; } +/* table on document main tabs */ + +.table td.edit { + width: 1px; /* make sure it uses as little space as possible */ +} + /* milestone editing */ #milestones-form .milestone { cursor: pointer; @@ -245,14 +251,29 @@ pre { line-height: 1.214; } width: 32em; /* prevent the layout from jumping around */ } -/* reset charter milestones */ +/* misc pages */ + #reset-charter-milestones .date { display: inline-block; min-width: 5em; } -/* IPR */ +#ipr-details dl.dl-horizontal dt { + white-space: normal; +} -#ipr-details dl.dl-horizontal dt { white-space: normal; } +.ipr-form .draft-row.template { + display: none; +} -.ipr-form .draft-row.template { display: none } +form.send-notification textarea { + height: 24em; +} + +form.add-email textarea { + height: 24em; +} + +table.materials .snippable { + width: 25em; +}