Summary: Move some of the morecss statements to ietf.css, as per

instructions in the README
 - Legacy-Id: 8996
This commit is contained in:
Ole Laursen 2015-02-05 15:49:34 +00:00
parent ea33e0e3b7
commit a0ff3cfefb
10 changed files with 25 additions and 41 deletions

View file

@ -6,10 +6,6 @@
<link rel="alternate" type="application/atom+xml" href="/feed/group-changes/{{ group.acronym }}/">
{% endblock %}
{% block morecss %}
.edit { width: 1px }
{% endblock %}
{% block title %}{{ doc.title }}{% endblock %}
{% block content %}

View file

@ -2,10 +2,6 @@
{% load ietf_filters %}
{% block morecss %}
.edit { width: 1px }
{% endblock %}
{% block title %}{{ doc.title }}{% endblock %}
{% block content %}

View file

@ -7,10 +7,6 @@
<meta name="description" content="{{ doc.title }} {% if doc.get_state_slug == "rfc" %}(RFC {{ rfc_number }}{% if published %}, {{ published.time|date:"F Y" }}{% endif %}{% if obsoleted_by %}; obsoleted by {{ obsoleted_by|join:", " }}{% endif %}){% else %}(Internet-Draft, {{ doc.time|date:"Y" }}){% endif %}">
{% endblock %}
{% block morecss %}
.edit { width: 1px }
{% endblock %}
{% block title %}
{% if doc.get_state_slug == "rfc" %}
RFC {{ rfc_number }}

View file

@ -2,10 +2,6 @@
{% load ietf_filters %}
{% block morecss %}
.edit { width: 1px }
{% endblock %}
{% block title %}{{ doc.title }}{% endblock %}
{% block content %}

View file

@ -4,11 +4,6 @@
{% block group_subtitle %}Materials{% endblock %}
{% block morecss %}
{{ block.super }}
.materials .snippable { width:25em; }
{% endblock %}
{% block group_content %}
{% load ietf_filters %}

View file

@ -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 %}

View file

@ -4,10 +4,6 @@
{% block title %}Send Notification{{ formset|pluralize }}{% endblock %}
{% block morecss %}
form.send-notification textarea { height: 24em; }
{% endblock morecss %}
{% block content %}
<h1>Send Notification{{ formset|pluralize }}<br><small>{{ ipr }}</small></h1>

View file

@ -2,10 +2,6 @@
{% block title %}{{ meeting }} : {{ acronym }}{% endblock %}
{% block morecss %}
.timeheader {font-size:120%;}
{% endblock %}
{% block content %}
<h1>{{ meeting }} : {{ acronym }} : {{ time }} </h1>

View file

@ -1,9 +1,5 @@
{% extends "nomcom/nomcom_private_base.html" %}
{% block morecss %}
.edit { width: 1px }
{% endblock %}
{% block subtitle %} - Administration {% endblock %}
{% block nomcom_content %}

View file

@ -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;
}