diff --git a/bda/views.py b/bda/views.py
index 72fd5dd2..99168787 100644
--- a/bda/views.py
+++ b/bda/views.py
@@ -271,6 +271,7 @@ def revente(request, tirage_id):
if not participant.paid:
return render(request, "bda-notpaid.html", {})
if request.method == 'POST':
+ # On met en vente une place
if 'resell' in request.POST:
resellform = ResellForm(participant, request.POST, prefix='resell')
annulform = AnnulForm(participant, prefix='annul')
@@ -279,27 +280,36 @@ def revente(request, tirage_id):
attributions = resellform.cleaned_data["attributions"]
with transaction.atomic():
for attribution in attributions:
- revente, created = SpectacleRevente.objects.get_or_create(
- attribution=attribution,
- defaults={'seller': participant})
+ revente, created = \
+ SpectacleRevente.objects.get_or_create(
+ attribution=attribution,
+ defaults={'seller': participant})
if not created:
revente.seller = participant
revente.date = timezone.now()
- mail_subject = "BdA-Revente : {:s}".format(attribution.spectacle.title)
- mail_body = loader.render_to_string('bda/mails/revente-new.txt', {
- 'vendeur': participant.user,
- 'spectacle': attribution.spectacle,
- 'revente': revente,
- })
+ revente.soldTo = None
+ revente.notif_sent = False
+ revente.tirage_done = False
+ revente.shotgun = False
+ mail_subject = "BdA-Revente : {:s}".format(
+ attribution.spectacle.title)
+ mail_body = loader.render_to_string(
+ 'bda/mails/revente-new.txt',
+ {'vendeur': participant.user,
+ 'spectacle': attribution.spectacle,
+ 'revente': revente}
+ )
mails.append(mail.EmailMessage(
mail_subject, mail_body,
from_email=settings.MAIL_DATA['revente']['FROM'],
to=[participant.user.email],
- reply_to=[settings.MAIL_DATA['revente']['REPLYTO']],
+ reply_to=[
+ settings.MAIL_DATA['revente']['REPLYTO']
+ ],
))
revente.save()
mail.get_connection().send_messages(mails)
-
+ # On annule une revente
elif 'annul' in request.POST:
annulform = AnnulForm(participant, request.POST, prefix='annul')
resellform = ResellForm(participant, prefix='resell')
@@ -307,7 +317,8 @@ def revente(request, tirage_id):
attributions = annulform.cleaned_data["attributions"]
for attribution in attributions:
attribution.revente.delete()
-
+ # On confirme une vente en transférant la place à la personne qui a
+ # gagné le tirage
elif 'transfer' in request.POST:
resellform = ResellForm(participant, prefix='resell')
annulform = AnnulForm(participant, prefix='annul')
@@ -320,7 +331,9 @@ def revente(request, tirage_id):
attrib = revente.attribution
attrib.participant = revente.soldTo
attrib.save()
-
+ # On annule la revente après le tirage au sort (par exemple si
+ # la personne qui a gagné le tirage ne se manifeste pas). La place est
+ # alors remise en vente
elif 'reinit' in request.POST:
resellform = ResellForm(participant, prefix='resell')
annulform = AnnulForm(participant, prefix='annul')
@@ -334,6 +347,7 @@ def revente(request, tirage_id):
revente.soldTo = None
revente.notif_sent = False
revente.tirage_done = False
+ revente.shotgun = False
if revente.answered_mail:
revente.answered_mail.clear()
revente.save()
@@ -354,8 +368,7 @@ def revente(request, tirage_id):
sold = participant.attribution_set.filter(
spectacle__date__gte=timezone.now(),
revente__isnull=False,
- revente__soldTo__isnull=False).exclude(
- revente__soldTo=participant)
+ revente__soldTo__isnull=False)
return render(request, "bda-revente.html",
{'tirage': tirage, 'overdue': overdue, "sold": sold,
@@ -367,13 +380,14 @@ def revente_interested(request, revente_id):
revente = get_object_or_404(SpectacleRevente, id=revente_id)
participant, created = Participant.objects.get_or_create(
user=request.user, tirage=revente.attribution.spectacle.tirage)
- if timezone.now() < revente.date + timedelta(hours=1) or revente.shotgun:
- return render(request, "bda-wrongtime.html", {})
+ if (timezone.now() < revente.date + timedelta(hours=1)) or revente.shotgun:
+ return render(request, "bda-wrongtime.html",
+ {"revente": revente})
revente.answered_mail.add(participant)
return render(request, "bda-interested.html",
{"spectacle": revente.attribution.spectacle,
- "date": revente.expiration_time})
+ "date": revente.date_tirage})
@login_required
@@ -381,23 +395,9 @@ def list_revente(request, tirage_id):
tirage = get_object_or_404(Tirage, id=tirage_id)
participant, created = Participant.objects.get_or_create(
user=request.user, tirage=tirage)
- spectacles = tirage.spectacle_set.filter(
- date__gte=timezone.now())
- shotgun = []
deja_revente = False
success = False
- for spectacle in spectacles:
- revente_objects = SpectacleRevente.objects.filter(
- attribution__spectacle=spectacle,
- soldTo__isnull=True)
- revente_count = 0
- for revente in revente_objects:
- if revente.shotgun:
- revente_count += 1
- if revente_count:
- spectacle.revente_count = revente_count
- shotgun.append(spectacle)
-
+ inscrit_revente = False
if request.method == 'POST':
form = InscriptionReventeForm(tirage, request.POST)
if form.is_valid():
@@ -407,15 +407,24 @@ def list_revente(request, tirage_id):
for spectacle in choices:
qset = SpectacleRevente.objects.filter(
attribution__spectacle=spectacle)
- if qset.exists():
- # On l'inscrit à l'un des tirages au sort
- for revente in qset.all():
- if revente.shotgun and not revente.soldTo:
- deja_revente = True
- else:
- revente.answered_mail.add(participant)
- revente.save()
- break
+ if qset.filter(shotgun=True, soldTo__isnull=True).exists():
+ # Une place est disponible au shotgun, on suggère à
+ # l'utilisateur d'aller la récupérer
+ deja_revente = True
+ else:
+ # La place n'est pas disponible au shotgun, si des reventes
+ # pour ce spectacle existent déjà, on inscrit la personne à
+ # la revente ayant le moins d'inscrits
+ min_resell = (
+ qset.filter(shotgun=False)
+ .annotate(nb_subscribers=Count('answered_mail'))
+ .order_by('nb_subscribers')
+ .first()
+ )
+ if min_resell is not None:
+ min_resell.answered_mail.add(participant)
+ min_resell.save()
+ inscrit_revente = True
success = True
else:
form = InscriptionReventeForm(
@@ -423,8 +432,9 @@ def list_revente(request, tirage_id):
initial={'spectacles': participant.choicesrevente.all()})
return render(request, "liste-reventes.html",
- {"form": form, 'shotgun': shotgun,
- "deja_revente": deja_revente, "success": success})
+ {"form": form,
+ "deja_revente": deja_revente, "success": success,
+ "inscrit_revente": inscrit_revente})
@login_required
@@ -436,15 +446,16 @@ def buy_revente(request, spectacle_id):
reventes = SpectacleRevente.objects.filter(
attribution__spectacle=spectacle,
soldTo__isnull=True)
+
+ # Si l'utilisateur veut racheter une place qu'il est en train de revendre,
+ # on supprime la revente en question.
if reventes.filter(seller=participant).exists():
revente = reventes.filter(seller=participant)[0]
revente.delete()
return HttpResponseRedirect(reverse("bda-shotgun",
args=[tirage.id]))
- reventes_shotgun = []
- for revente in reventes.all():
- if revente.shotgun:
- reventes_shotgun.append(revente)
+
+ reventes_shotgun = list(reventes.filter(shotgun=True).all())
if not reventes_shotgun:
return render(request, "bda-no-revente.html", {})
@@ -478,14 +489,11 @@ def revente_shotgun(request, tirage_id):
date__gte=timezone.now())
shotgun = []
for spectacle in spectacles:
- revente_objects = SpectacleRevente.objects.filter(
+ reventes = SpectacleRevente.objects.filter(
attribution__spectacle=spectacle,
+ shotgun=True,
soldTo__isnull=True)
- revente_count = 0
- for revente in revente_objects:
- if revente.shotgun:
- revente_count += 1
- if revente_count:
+ if reventes.exists():
shotgun.append(spectacle)
return render(request, "bda-shotgun.html",
diff --git a/cof/settings_dev.py b/cof/settings_dev.py
index 13bd9f3f..f6521222 100644
--- a/cof/settings_dev.py
+++ b/cof/settings_dev.py
@@ -124,10 +124,6 @@ USE_TZ = True
STATIC_URL = '/static/'
STATIC_ROOT = '/var/www/static/'
-STATICFILES_DIRS = (
- os.path.join(BASE_DIR, 'static/'),
-)
-
# Media upload (through ImageField, SiteField)
# https://docs.djangoproject.com/en/1.9/ref/models/fields/
diff --git a/gestioncof/models.py b/gestioncof/models.py
index 19590aff..01798180 100644
--- a/gestioncof/models.py
+++ b/gestioncof/models.py
@@ -5,11 +5,12 @@ from __future__ import print_function
from __future__ import unicode_literals
from django.db import models
+from django.dispatch import receiver
from django.contrib.auth.models import User
from django.utils.translation import ugettext_lazy as _
from django.utils.encoding import python_2_unicode_compatible
import django.utils.six as six
-from django.db.models.signals import post_save
+from django.db.models.signals import post_save, post_delete
from gestioncof.petits_cours_models import choices_length
@@ -78,10 +79,15 @@ class CofProfile(models.Model):
return six.text_type(self.user.username)
+@receiver(post_save, sender=User)
def create_user_profile(sender, instance, created, **kwargs):
if created:
CofProfile.objects.get_or_create(user=instance)
-post_save.connect(create_user_profile, sender=User)
+
+
+@receiver(post_delete, sender=CofProfile)
+def post_delete_user(sender, instance, *args, **kwargs):
+ instance.user.delete()
@python_2_unicode_compatible
diff --git a/gestioncof/petits_cours_views.py b/gestioncof/petits_cours_views.py
index 303cec2c..ee71d1a9 100644
--- a/gestioncof/petits_cours_views.py
+++ b/gestioncof/petits_cours_views.py
@@ -146,9 +146,7 @@ def _finalize_traitement(request, demande, proposals, proposed_for,
"proposed_for": proposed_for,
"proposed_mails": proposed_mails,
"mainmail": mainmail,
- "attribdata":
- base64.b64encode(json.dumps(attribdata)
- .encode('utf_8')),
+ "attribdata": json.dumps(attribdata),
"redo": redo,
"errors": errors,
})
@@ -258,7 +256,7 @@ def _traitement_post(request, demande):
extra = request.POST["extra"].strip()
redo = "redo" in request.POST
attribdata = request.POST["attribdata"]
- attribdata = dict(json.loads(base64.b64decode(attribdata)))
+ attribdata = dict(json.loads(attribdata))
for matiere in demande.matieres.all():
if matiere.id not in attribdata:
unsatisfied.append(matiere)
diff --git a/gestioncof/static/grappelli/css/admin-tools.css b/gestioncof/static/grappelli/css/admin-tools.css
deleted file mode 100644
index 1c932ff5..00000000
--- a/gestioncof/static/grappelli/css/admin-tools.css
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-/* Tools in Breadcrumbs: Edit Mode, Trash List
------------------------------------------------------------------------------------------------------- */
-
-#breadcrumbs .tools {
- margin: -7px 32px -20px 0;
-}
-
-#breadcrumbs .tools > li > a {
- padding: 0;
- width: 20px;
- height: 30px;
- border: 0;
-}
-#breadcrumbs .tools a.edit-dashboard-toggle-handler:link, #breadcrumbs .tools a.edit-dashboard-toggle-handler:visited {
- background: transparent url('../img/icons/icon-edit-dashboard-toggle-handler.png') 50% 50% no-repeat;
-}
-#breadcrumbs .tools a.edit-dashboard-toggle-handler:hover, #breadcrumbs .tools a.edit-dashboard-toggle-handler:active,
-#breadcrumbs .tools a.tools-active.edit-dashboard-toggle-handler {
- background: transparent url('../img/icons/icon-edit-dashboard-toggle-handler-hover.png') 50% 50% no-repeat !important;
-}
-
-#breadcrumbs .tools a.trash-list-toggle-handler:link, #breadcrumbs .tools a.trash-list-toggle-handler:visited {
- background: transparent url('../img/icons/icon-trash-list-toggle-handler.png') 50% 50% no-repeat;
-}
-#breadcrumbs .tools a.trash-list-toggle-handler:hover, #breadcrumbs .tools a.trash-list-toggle-handler:active,
-#breadcrumbs .tools a.tools-active.trash-list-toggle-handler {
- background: transparent url('../img/icons/icon-trash-list-toggle-handler-hover.png') 50% 50% no-repeat !important;
-}
-
-
-/* Trash List ......................................... */
-
-ul.tools li.trash-list-container {
- opacity: 1 !important;
- overflow: visible !important;
-}
-
-ul.trash-list {
- position: absolute;
- float: none;
- display: block;
- right: 2px;
- z-index: 900;
- top: 28px;
- min-width: 218px;
- border: 1px solid #ccc;
- border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px;
- border-top-right-radius: 0; -moz-border-radius-topright: 0 !important; -webkit-border-top-right-radius: 0;
- border-top-left-radius: 0; -moz-border-radius-topleft: 0 !important; -webkit-border-top-left-radius: 0;
- background: #e6e6e6;
- box-shadow: 0 10px 50px #ccc; -moz-box-shadow: 0 10px 50px #ccc; -webkit-box-shadow: 0 10px 50px #ccc;
-}
-
-/* Empty breaks in Chrome 11+: Elements are not displayed initially even if they are not empty */
-/*ul.trash-list:empty {
- display: none;
-}*/
-
-ul.trash-list li {
- position: relative;
- float: none;
- margin: 0 !important;
- width: 100%;
- border-top: 1px solid #f4f4f4 !important;
- border-bottom: 1px solid #d4d4d4 !important;
-}
-ul.trash-list li:last-child {
- border-bottom: 0 !important;
-}
-
-ul.trash-list li a {
- padding-left: 10px;
- border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0;
- background: transparent !important;
- opacity: 1 !important;
-}
-ul.trash-list li a:link, ul.trash-list li a:visited {
- color: #309bbf;
-}
-ul.trash-list li a:hover, ul.trash-list li a:active {
- color: #444;
-}
\ No newline at end of file
diff --git a/gestioncof/static/grappelli/css/base.css b/gestioncof/static/grappelli/css/base.css
deleted file mode 100644
index 1f33cc04..00000000
--- a/gestioncof/static/grappelli/css/base.css
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-/* Reset Styles (reset.css of Blueprint www.blueprintcss.org)
------------------------------------------------------------------------------------------------------- */
-
-@import url('reset.css');
-
-
-
-/* Grappelli Styles:
- The core settings of Grappelli are defined here.
- Do not change them (better use your own skins/css in the next section).
------------------------------------------------------------------------------------------------------- */
-
-@import url('typography.css');
-@import url('structures.css');
-@import url('components.css');
-@import url('tools.css');
-@import url('forms.css');
-@import url('buttons.css');
-@import url('tables.css');
-@import url('admin-tools.css');
-
-
-
-/* Grappelli Skins & Custom Styles:
- Use the delivered Grappelli skins or import your own skins/css here
------------------------------------------------------------------------------------------------------- */
-
-/* Grappelli Basic Skin: The Plain Version */
-/*@import url('grappelli-skin-basic.css');*/
-
-/* Grappelli Default Skin: Adds Border-Radius & Background-Gradients to the Grappelli Basic Skin */
-@import url('grappelli-skin-default.css');
diff --git a/gestioncof/static/grappelli/css/buttons.css b/gestioncof/static/grappelli/css/buttons.css
deleted file mode 100644
index 9a7183b4..00000000
--- a/gestioncof/static/grappelli/css/buttons.css
+++ /dev/null
@@ -1,379 +0,0 @@
-
-
-
-/* Submit, Delete & Cancel Buttons
------------------------------------------------------------------------------------------------------- */
-
-input[type=submit], input[type=reset], input[type=button], button {
- margin-top: 0;
- margin-bottom: 0;
- padding: 4px 5px 5px;
- width: auto;
- height: 25px;
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
- cursor: pointer;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- input[type=submit], input[type=reset], input[type=button], button {
- padding: 5px 8px 4px;
- }
-}
-
-.submit-row a.submit-link,
-.submit-row a.delete-link,
-.submit-row a.cancel-link {
- display: block;
- padding: 5px 10px;
- font-weight: bold;
-}
-.submit-row input[type=submit],
-.submit-row input[type=button] {
- padding: 5px 10px;
- height: 28px;
- font-weight: bold;
-}
-
-input[type=submit],
-#bookmark-add-cancel,
-.submit-row a.delete-link:link, .submit-row a.delete-link:visited,
-.submit-row a.cancel-link:link, .submit-row a.cancel-link:visited,
-.submit-row input[type=button] {
- opacity: .6;
-}
-
-input[type=submit]:hover,
-#bookmark-add-cancel:hover,
-.submit-row a.delete-link:hover, .submit-row a.delete-link:active,
-.submit-row a.cancel-link:hover, .submit-row a.cancel-link:active,
-.submit-row input[type=button]:hover {
- opacity: 1;
-}
-
-input[type=submit].default {
- opacity: 1;
-}
-
-
-
-/* Icons & Buttons
------------------------------------------------------------------------------------------------------- */
-
-button.fb_show,
-button.ui-datepicker-trigger,
-button.ui-timepicker-trigger,
-button.ui-gAutocomplete-browse,
-button.ui-gAutoSlugField-toggle,
-button.ui-gFacelist-browse,
-a.button,
-.vDateField + span a,
-.vTimeField + span a,
-a.fb_show,
-a.related-lookup,
-a.add-another {
- position: relative;
- margin-left: -25px;
-}
-
-button.fb_show,
-button.ui-gAutocomplete-browse,
-button.ui-gFacelist-browse,
-button.ui-gAutoSlugField-toggle,
-button.ui-datepicker-trigger,
-button.ui-timepicker-trigger,
-button.fb_show:hover,
-button.ui-gAutocomplete-browse:hover,
-button.ui-gFacelist-browse:hover,
-button.ui-gAutoSlugField-toggle:hover,
-button.ui-datepicker-trigger:hover,
-button.ui-timepicker-trigger:hover {
- width: 25px;
- background: 50% 50% no-repeat;
-}
-button.fb_show[disabled],
-button.ui-gAutocomplete-browse[disabled],
-button.ui-gFacelist-browse[disabled],
-button.ui-gAutoSlugField-toggle[disabled],
-button.ui-datepicker-trigger[disabled],
-button.ui-timepicker-trigger[disabled],
-input[disabled] + a {
- background: 50% 50% no-repeat !important;
- opacity: 0.3;
- cursor: auto !important;
-}
-
-#changelist table button {
- top: -5px;
- margin-bottom: -12px;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- #changelist table button {
- margin-bottom: -11px;
- }
-}
-
-
-/* Hide Images in Templates ........................................... */
-
-a.add-another img, a.related-lookup img {
- opacity: 0;
-}
-a.related-lookup img {
- display: none;
-}
-
-
-/* Autocomplete Button ......................................... */
-
-button.ui-gAutocomplete-browse,
-button.ui-gFacelist-browse {
- background-image: url('../img/icons/icon-related-lookup.png');
-}
-button.ui-gAutocomplete-browse:hover,
-button.ui-gFacelist-browse:hover {
- background-image: url('../img/icons/icon-related-lookup-hover.png');
-}
-button.ui-gAutocomplete-browse[disabled], button.ui-gAutocomplete-browse[disabled]:hover,
-button.ui-gFacelist-browse[disabled], button.ui-gFacelist-browse[disabled]:hover {
- background-image: url('../img/icons/icon-related-lookup-hover.png') !important;
-}
-
-
-/* AutoSlugField Button ......................................... */
-
-/* TODO: lock/unlock icons .. */
-
-button.ui-gAutoSlugField-toggle {
- background-image: url('../img/icons/icon-related-lookup.png');
-}
-button.ui-gAutoSlugField-toggle:hover {
- background-image: url('../img/icons/icon-related-lookup-hover.png');
-}
-button.ui-gAutoSlugField-toggle[disabled], button.ui-gAutoSlugField-toggle[disabled]:hover {
- background-image: url('../img/icons/icon-related-lookup-hover.png') !important;
-}
-
-
-/* Datepicker Button ......................................... */
-
-button.ui-datepicker-trigger {
- background-image: url('../img/icons/icon-datepicker.png');
-}
-button.ui-datepicker-trigger:hover {
- background-image: url('../img/icons/icon-datepicker-hover.png');
-}
-button.ui-datepicker-trigger[disabled], button.ui-datepicker-trigger[disabled]:hover {
- background-image: url('../img/icons/icon-datepicker-hover.png') !important;
-}
-
-
-/* Timepicker Button ......................................... */
-
-button.ui-timepicker-trigger {
- background-image: url('../img/icons/icon-timepicker.png');
-}
-button.ui-timepicker-trigger:hover {
- background-image: url('../img/icons/icon-timepicker-hover.png');
-}
-button.ui-timepicker-trigger[disabled], button.ui-timepicker-trigger[disabled]:hover {
- background-image: url('../img/icons/icon-timepicker-hover.png') !important;
-}
-
-
-/* Search Button ......................................... */
-
-button.search {
- position: relative;
- float: right;
- top: 0;
- right: 5px;
- margin: 0 0 0 -30px;
- background: url('../img/icons/icon-search.png') 0 50% no-repeat scroll;
-}
-button.search:hover {
- background: url('../img/icons/icon-search-hover.png') 0 50% no-repeat scroll;
-}
-button.search[disabled], button.search[disabled]:hover {
- background: url('../img/icons/icon-search-hover.png') 0 50% no-repeat scroll !important;
-}
-
-
-
-/* Links as Buttons
------------------------------------------------------------------------------------------------------- */
-
-a.button,
-.datecrumbs a,
-.datecrumbs span {
- display: inline-block;
- padding: 4px 8px 4px;
- font-size: 11px;
- font-weight: bold;
-}
-
-
-/* Drop-Down Button ......................................... */
-
-a.button.drop-down {
- float: right;
- padding-left: 20px;
- padding-top: 3px;
-}
-a.button.drop-down[class*="selected"] {
- position: relative;
- z-index: 1000;
- height: 17px;
-}
-a.button.drop-down:link, a.button.drop-down:visited {
- background: url('../img/icons/icon-dropdown.png') 3px 3px no-repeat;
-}
-a.button.drop-down[class*="selected"],
-a.button.drop-down:hover, a.button.drop-down:active {
- background: url('../img/icons/icon-dropdown-hover.png') 3px 3px no-repeat;
-}
-
-
-/* Filebrowser & Related Lookup ......................................... */
-
-a.fb_show img {
- width: 0;
- height: 0;
- opacity: 0;
-}
-
-a.fb_show,
-a.related-lookup {
- display: inline-block;
- margin-bottom: -5px;
- width: 23px;
- height: 23px;
- font-size: 0;
- line-height: 0;
- background: 50% 50% no-repeat;
-}
-
-a.fb_show:link, a.fb_show:visited,
-.tinyMCE .browse span {
- background-image: url('../img/icons/icon-fb-show.png');
-}
-a.fb_show:hover, a.fb_show:active,
-.tinyMCE .browse span:hover {
- background-image: url('../img/icons/icon-fb-show-hover.png');
-}
-a.related-lookup:link, a.related-lookup:visited {
- background-image: url('../img/icons/icon-related-lookup.png');
-}
-a.related-lookup:hover, a.related-lookup:active {
- background-image: url('../img/icons/icon-related-lookup-hover.png');
-}
-div.autocomplete-wrapper-m2m a.related-lookup:link, div.autocomplete-wrapper-m2m a.related-lookup:visited {
- background-image: url('../img/icons/icon-related-lookup-m2m.png');
-}
-div.autocomplete-wrapper-m2m a.related-lookup:hover, div.autocomplete-wrapper-m2m a.related-lookup:active {
- background-image: url('../img/icons/icon-related-lookup-m2m-hover.png');
-}
-
-input[disabled] + a.fb_show {
- background-image: url('../img/icons/icon-fb-show-hover.png') !important;
-}
-input[disabled] + a.related-lookup {
- background-image: url('../img/icons/icon-related-lookup-hover.png') !important;
-}
-
-a.related-lookup + strong {
- position: relative;
- top: -4px;
- margin-left: 5px;
- font-size: 11px;
- font-weight: bold;
-}
-#changelist table a.fb_show,
-#changelist table a.related-lookup {
- top: -5px;
- margin-bottom: -12px;
-}
-#changelist table a.related-lookup + strong {
- top: -1px;
-}
-
-
-/* Add Another ......................................... */
-
-a.add-another {
- position: relative;
- display: inline-block;
- margin-left: 3px;
- width: 14px;
- height: 14px;
- vertical-align: top;
- font-size: 11px;
- line-height: 16px;
- background: 50% 50% no-repeat;
-}
-
-a.add-another:link, a.add-another:visited {
- background-image: url('../img/icons/icon-add_another.png');
-}
-a.add-another:hover, a.add-another:active {
- background-image: url('../img/icons/icon-add_another-hover.png');
-}
-
-/*.change-list table tbody a.add-another {
- position: relative;
- top: -7px;
-}
-
-.radiolist.inline + a.add-another,
-.checkboxlist.inline + a.add-another {
- float: left;
- margin-left: -20px;
- margin-right: -10000px;
-}
-.row.cells ul.radiolist.inline + a.add-another,
-.row.cells ul.checkboxlist.inline + a.add-another {
- float: none;
- margin-right: 0;
-}*/
-
-
-
-/* Unknown, Yes & No Workaround
------------------------------------------------------------------------------------------------------- */
-
-img[src$="img/admin/icon-unknown.gif"] {
- padding: 0;
- width: 15px;
- height: 15px;
- color: transparent;
- background: url('../img/icons/icon-unknown.png') 0 50% no-repeat;
-}
-img[src$="img/admin/icon-no.gif"] {
- padding: 0;
- width: 15px;
- height: 15px;
- color: transparent;
- background: url('../img/icons/icon-no.png') 0 50% no-repeat;
-}
-img[src$="img/admin/icon-yes.gif"] {
- padding: 0;
- width: 15px;
- height: 15px;
- color: transparent;
- background: url('../img/icons/icon-yes.png') 0 50% no-repeat;
-}
-
-#changelist form table img[src$="img/admin/icon-unknown.gif"] {
- position: relative;
- top: 2px;
- vertical-align: top;
-}
-#changelist form table img[src$="img/admin/icon-no.gif"] {
- position: relative;
- top: 3px;
- vertical-align: top;
-}
-#changelist form table img[src$="img/admin/icon-yes.gif"] {
- position: relative;
- top: 2px;
- vertical-align: top;
-}
-
diff --git a/gestioncof/static/grappelli/css/components.css b/gestioncof/static/grappelli/css/components.css
deleted file mode 100644
index f8d8d1ce..00000000
--- a/gestioncof/static/grappelli/css/components.css
+++ /dev/null
@@ -1,890 +0,0 @@
-
-
-
-/* Paragraphs & Other Typo Formats
------------------------------------------------------------------------------------------------------- */
-
-.module p {
- margin: 0;
- padding: 5px 0;
-}
-fieldset.module label + p {
- font-size: 11px;
- line-height: 15px;
-}
-
-
-
-/* Modules
------------------------------------------------------------------------------------------------------- */
-
-.module {
- margin: 0 0 7px;
-}
-
-.form-container .module {
- min-width: 938px;
-}
-#changelist .span-flexible .module + ul.submit-row {
- margin-top: 10px;
-}
-/* Empty breaks in Chrome 11+: Elements are not displayed initially even if they are not empty */
-/*.module:empty {
- padding: 0;
- height: 0;
- border: 0;
- visibility: hidden;
-}*/
-
-/* Nested Modules Basics ......................................... */
-
-.module .module,
-.module fielset.module {
- margin: 0;
-}
-
-
-
-/* Groups
------------------------------------------------------------------------------------------------------- */
-
-.group {
- margin: 0 -4px 7px;
- padding: 2px;
-}
-.form-container .group {
- min-width: 940px;
-}
-
-
-
-/* Elements in Modules & Groups
------------------------------------------------------------------------------------------------------- */
-
-
-/* 1st Level Elements ......................................... */
-
-.group h2,
-.module h2 {
- padding: 6px 10px;
-}
-.group h2+.tools+* {
- margin-top: 2px;
-}
-
-
-/* 2nd Level Elements (Dark/Bright) ......................................... */
-
-.group h3,
-.module h3 {
- margin: 0;
- padding: 5px 10px;
-}
-
-
-/* 3rd Level Elements ......................................... */
-
-.group h4,
-.module h4 {
- margin: 0;
- padding: 4px 10px 4px 10px;
-}
-
-.module .description {
- padding: 8px 10px;
- font-size: 11px;
-}
-
-
-
-/* Modules & Groups Overrides
------------------------------------------------------------------------------------------------------- */
-
-.module:first-child {
- margin-top: 0 !important;
-}
-.group .module:first-child {
- margin-top: 2px !important;
-}
-.group:first-child {
- margin-top: -4px;
-}
-.group .module {
- margin-top: 2px;
- margin-bottom: 0;
-}
-.group .module .module {
- margin-top: 0;
-}
-.group:last-child,
-.module:last-child {
- margin-bottom: 0;
-}
-
-
-
-/* Collapsible Structures
------------------------------------------------------------------------------------------------------- */
-
-.collapse.closed *,
-.collapse.closed .module.table,
-.collapse.closed .module.table * {
- display: none;
-}
-
-.collapse-handler {
- cursor: pointer;
-}
-
-.collapse.closed .collapse-handler,
-.collapse.closed .tools,
-.collapse.closed .tools * {
- display: block !important;
-}
-.collapse.closed h3+.tools,
-.collapse.closed h4+.tools {
- margin-top: 1px !important;
-}
-
-
-
-/* Row
------------------------------------------------------------------------------------------------------- */
-
-.row {
- padding: 5px 10px;
- font-weight: bold;
-}
-
-fieldset.module .row + .module {
- margin-top: -1px !important;
-}
-
-
-
-/* Cell
------------------------------------------------------------------------------------------------------- */
-
-.row .cell {
- display: inline-block;
- margin-top: -5px;
- margin-bottom: -5px;
- padding: 5px 10px;
- width: auto;
-}
-.row .cell + .cell {
- padding-left: 18px;
-}
-
-
-
-/* Fieldset Row
------------------------------------------------------------------------------------------------------- */
-
-fieldset.module .row {
- padding: 8px 10px;
- line-height: 18px;
- font-weight: normal;
-}
-fieldset.module .row.cells {
- white-space: nowrap;
- overflow: hidden;
-}
-
-
-
-/* Fieldset Cell
------------------------------------------------------------------------------------------------------- */
-
-fieldset.module .cell {
- margin: -8px 0 -1000px 0;
- padding: 8px 18px 1000px 0;
- vertical-align: top;
- white-space: nowrap;
- height: 100%;
-}
-fieldset.module .cell:last-child, fieldset.module .cell.last {
- margin-right: -20px;
-}
-
-
-/* Tabular Modules
------------------------------------------------------------------------------------------------------- */
-
-.module.table {
- display: table;
- margin: 0 0 -2px;
- width: 100%;
- border-collapse: separate;
- border-spacing: 0 2px;
-}
-h2 + .module.table,
-h2 + * + .module.table,
-h2 + * + * + .module.table {
- margin-top: 0 !important;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- .module.table {
- margin-bottom: -1px;
- border-spacing: 0 1px !important;
- }
-}
-
-.module.thead {
- display: table-header-group;
-}
-.module.tfoot {
- display: table-footer-group;
-}
-.module.thead,
-.module.tfoot {
- font-size: 11px;
- font-weight: bold;
-}
-.module.table .tr {
- display: table-row;
-}
-
-.module.tbody {
- display: table-row-group;
-}
-
-.module.table .th,
-.module.table .td {
- display: table-cell;
- float: none;
- overflow: hidden;
- margin-right: 0;
- padding: 1px 20px;
- height: 100%;
- vertical-align: top;
- white-space: nowrap;
-}
-
-.module.tbody .th,
-.module.tbody .td {
- padding-top: 5px;
- padding-bottom: 5px;
-}
-.module.table .th:first-of-type,
-.module.table .td:first-of-type {
- padding-left: 10px;
-}
-.module.tbody .th.tools,
-.module.tbody .td.tools {
- padding-left: 0;
- width: 100%;
-}
-
-.empty-form {
- display: none !important;
-}
-
-
-
-/* Add Items
------------------------------------------------------------------------------------------------------- */
-
-.module.add-item {
- height: 28px;
-}
-.module.add-item>a {
- position: relative;
- top: 6px;
- padding: 5px 10px;
- font-weight: bold;
-}
-
-
-
-/* Selectors
------------------------------------------------------------------------------------------------------- */
-
-.selector {
- position: relative;
- float: left;
- overflow: hidden;
- width: 758px;
-}
-.selector-available, .selector-chosen {
- float: left;
- width: 366px;
-}
-.selector.stacked .selector-available, .selector.stacked .selector-chosen {
- width: 756px;
-}
-.selector h2, .inline-group .selector h2,
-.inline-related fieldset .selector-available h2, .inline-related fieldset .selector-chosen h2 {
- padding: 7px 5px 6px 7px;
- font-size: 12px;
- line-height: 13px;
- font-weight: bold;
-}
-.selector .selector-filter {
- padding: 3px 5px 2px 2px;
- min-height: 25px;
- font-weight: bold;
- /*line-height: 25px;*/
- /*text-indent: 25px;*/
- /*background: url('../img/icons/icon-searchbox.png') 6px 50% no-repeat;*/
-}
-.selector .selector-available .selector-filter {
- line-height: 25px;
- text-indent: 25px;
- background: url('../img/icons/icon-searchbox.png') 6px 50% no-repeat;
-}
-.selector .selector-chosen .selector-filter {
- margin: 0 0 -3px;
- padding: 6px 5px 2px 26px;
- /*line-height: 25px;*/
- /*text-indent: 25px;*/
- background: url('../img/icons/icon-searchbox.png') 6px 8px no-repeat;
-}
-.selector .selector-filter input[type=text] {
- position: relative;
- margin: 0;
- width: 326px !important;
- max-width: 326px !important;
-}
-.selector.stacked .selector-filter input[type=text] {
- width: 716px !important;
- max-width: 716px !important;
-}
-.selector .selector-filter img {
- display: none;
-}
-.selector .selector-chosen .selector-filter:after {
- content: " " url('../img/icons/icon-selector_filter.png');
- opacity: .75;
-}
-.selector.stacked .selector-chosen .selector-filter:after {
- content: " " url('../img/icons/icon-selector_add-m2m_vertical-hover.png');
-}
-.selector select[multiple=multiple] {
- margin: 0;
- padding-left: 3px;
- max-width: 367px !important;
- width: 367px !important;
- height: 200px;
-}
-.selector.stacked select[multiple=multiple] {
- width: 757px !important;
- max-width: 757px !important;
-}
-.selector h2 + select {
- /*display: none;*/
- position: relative;
- top: -1px;
-}
-.selector ul.selector-chooser {
- float: left;
- margin: 110px 2px 0;
- padding: 0;
- width: 18px;
-}
-.selector.stacked ul.selector-chooser {
- margin: 4px 0 0 356px;
- width: 36px;
-}
-.selector.stacked ul.selector-chooser li {
- float: left;
-}
-a.selector-add, a.selector-remove {
- display: block;
- width: 18px;
- height: 18px;
- color: transparent !important;
- background-position: 50% 0;
- background-repeat: no-repeat;
-}
-a.selector-add:link, a.selector-add:visited {
- background-image: url('../img/icons/icon-selector_add-m2m_horizontal.png');
-}
-a.selector-add:hover, a.selector-add:active {
- background-image: url('../img/icons/icon-selector_add-m2m_horizontal-hover.png');
-}
-a.selector-remove:link, a.selector-remove:visited {
- background-image: url('../img/icons/icon-selector_remove-m2m_horizontal.png');
-}
-a.selector-remove:hover, a.selector-remove:active {
- background-image: url('../img/icons/icon-selector_remove-m2m_horizontal-hover.png');
-}
-.selector.stacked a.selector-add:link, .selector.stacked a.selector-add:visited {
- background-image: url('../img/icons/icon-selector_add-m2m_vertical.png');
-}
-.selector.stacked a.selector-add:hover, .selector.stacked a.selector-add:active {
- background-image: url('../img/icons/icon-selector_add-m2m_vertical-hover.png');
-}
-.selector.stacked a.selector-remove:link, .selector.stacked a.selector-remove:visited {
- background-image: url('../img/icons/icon-selector_remove-m2m_vertical.png');
-}
-.selector.stacked a.selector-remove:hover, .selector.stacked a.selector-remove:active {
- background-image: url('../img/icons/icon-selector_remove-m2m_vertical-hover.png');
-}
-a.selector-chooseall, a.selector-clearall {
- display: block;
- margin: 0;
- padding: 2px 7px;
- font-size: 11px;
- line-height: 13px;
- font-weight: bold;
-}
-
-
-
-/* Link-List, Actions, Feed, Table of Contents
------------------------------------------------------------------------------------------------------- */
-
-.link-list ul li,
-.feed ul li,
-.table-of-contents ul li {
- padding: 0;
- font-size: 11px;
- line-height: 15px;
- font-weight: bold;
-}
-.link-list ul li a,
-.feed ul li a, .feed ul li span,
-.table-of-contents ul li a {
- display: block;
- padding: 5px 10px;
- font-weight: bold;
- line-height: 13px;
- background-color: transparent;
- background-position: 50% 50%;
- background-repeat: no-repeat;
-}
-.actions p,
-.link-list p,
-.feed p {
- color: #999;
- font-size: 11px;
- padding: 3px 10px;
-}
-.link-list ul li a,
-.feed ul li a {
- padding-left: 25px;
-}
-a.internal,
-a.external {
- background-repeat: no-repeat;
-}
-.dashboard a.internal {
- background-position: 12px 7px;
-}
-.dashboard a.external {
- background-position: 10px 8px;
-}
-.documentation a.external {
- padding-left: 12px;
- background-position: 1px 3px;
-}
-a.internal:link, a.internal:visited {
- background-image: url('../img/icons/icon-navigation-internal.png');
-}
-a.internal:hover, a.internal:active {
- background-image: url('../img/icons/icon-navigation-internal-hover.png');
-}
-a.external:link, a.external:visited {
- background-image: url('../img/icons/icon-navigation-external.png');
-}
-a.external:hover, a.external:active {
- background-image: url('../img/icons/icon-navigation-external-hover.png');
-}
-
-.feed ul li a, .feed ul li span {
- line-height: 13px;
-}
-.feed ul li span.date {
- float: right;
- padding: 5px 5px 0 5px;
-}
-
-
-
-/* Basic Actions & Module Actions
------------------------------------------------------------------------------------------------------- */
-
-ul.actions {
- position: relative;
- float: right;
- clear: both;
-}
-ul.actions li {
- position: relative;
- float: left;
-}
-ul.actions li + li {
- margin-left: 20px;
-}
-ul.actions li a {
- padding-left: 15px;
- font-size: 11px;
- background-position: 0 50%;
- background-repeat: no-repeat;
-}
-
-.actions ul li {
- padding: 4px 5px 4px 25px;
- font-size: 11px;
- line-height: 12px;
-}
-
-.actions ul li a {
- margin-left: -15px;
- padding-left: 15px;
- font-weight: bold;
- background-position: 0 50%;
- background-repeat: no-repeat;
-}
-
-.actions li.add-link a:link, .actions li.add-link a:visited {
- background-image: url('../img/icons/icon-actions-add-link.png');
-}
-.actions li.add-link a:hover, .actions li.add-link a:active {
- background-image: url('../img/icons/icon-actions-add-link-hover.png');
-}
-.actions li.change-link a:link, .actions li.change-link a:visited {
- background-image: url('../img/icons/icon-actions-change-link.png');
-}
-.actions li.change-link a:hover, .actions li.change-link a:active {
- background-image: url('../img/icons/icon-actions-change-link-hover.png');
-}
-
-.actions li.delete-link {
- text-decoration: line-through;
- background: url('../img/icons/icon-actions-delete-link.png') 10px 7px no-repeat;
-}
-
-
-
-/* Module Search & Module Filter
------------------------------------------------------------------------------------------------------- */
-
-.module.search,
-.module.filter {
- position: relative;
- float: right;
- z-index: 1001;
- padding: 8px 10px;
-}
-.module.filter + .module.search {
- padding-right: 0;
-}
-
-.module.filter .pulldown-container {
- position: absolute;
- width: inherit;
-}
-
-.module.search .tooltip {
- position: absolute;
-}
-.module.search .tooltip.search-fields {
- top: 25px;
-}
-.module.search .tooltip .tooltip-pointer {
- position: relative;
- z-index: 1000;
- display: block;
- width: 30px;
- height: 8px;
- background: transparent url('../img/backgrounds/tooltip-pointer.png') 10px 100% no-repeat scroll;
-}
-.module.search .tooltip .tooltip-content {
- position: relative;
- z-index: 990;
- top: -1px;
- padding: 8px 10px;
- font-size: 11px;
- line-height: 15px;
-}
-
-a.button.toggle-filters {
- display: block;
- margin: 0;
- padding: 4px 20px 4px 8px;
-}
-a.button.toggle-filters:link, a.button.toggle-filters:visited {
- background: transparent url('../img/icons/icon-dropdown.png') 100% 3px no-repeat;
-}
-.selected a.button.toggle-filters:link, .selected a.button.toggle-filters:visited {
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat;
-}
-.open a.button.toggle-filters, .selected a.button.toggle-filters,
-.selected a.button.toggle-filters:hover, .selected a.button.toggle-filters:active,
-a.button.toggle-filters:hover, a.button.toggle-filters:active {
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat;
-}
-.selected a.button.toggle-filters:link, .selected a.button.toggle-filters:visited {
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat;
-}
-.open a.button.toggle-filters,
-.open.selected a.button.toggle-filters,
-.selected a.button.toggle-filters:hover, .selected a.button.toggle-filters:active,
-a.button.toggle-filters:hover, a.button.toggle-filters:active {
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat;
-}
-
-.filter-pulldown {
- display: none;
- position: relative;
- z-index: 1000;
- margin: -1px 0;
- padding: 0 10px 10px;
-}
-.filter-pulldown .filter {
- position: relative;
- padding: 7px 0 0;
- width: 100%;
-}
-.filter-pulldown select {
- width: 100% !important;
-}
-.filter-pulldown label {
- margin: 0 0 -2px;
- padding: 0;
- width: 100% !important;
- line-height: 12px;
- font-weight: bold;
-}
-
-
-
-/* Module Date Hierarchy
------------------------------------------------------------------------------------------------------- */
-
-.module + .module.date-hierarchy {
- margin-top: -8px;
-}
-
-.date-hierarchy ul {
- position: relative;
- float: left;
- clear: both;
- font-size: 11px;
- line-height: 16px;
- font-weight: bold;
-}
-.date-hierarchy ul li {
- position: relative;
- float: left;
- margin-right: 10px;
-}
-.module.date-hierarchy ul a,
-.module.date-hierarchy ul span {
- padding: 2px 5px 1px;
- font-weight: normal;
-}
-.date-hierarchy ul li a.date-hierarchy-back {
- padding-left: 10px;
- background: 0 50% no-repeat scroll;
-}
-
-.date-hierarchy a.date-hierarchy-back:link, .date-hierarchy a.date-hierarchy-back:visited {
- background-image: url('../img/icons/icon-date-hierarchy-back.png');
-}
-.date-hierarchy a.date-hierarchy-back:hover, .date-hierarchy a.date-hierarchy-back:active {
- background-image: url('../img/icons/icon-date-hierarchy-back-hover.png');
-}
-
-
-
-/* Pagination
------------------------------------------------------------------------------------------------------- */
-
-.module.pagination {
- padding: 8px 10px;
-}
-.module .module.pagination {
- position: relative;
- float: left;
-}
-ul.pagination {
- position: relative;
- clear: both;
- margin: 0;
- padding: 0;
- width: auto;
- font-weight: bold;
-}
-ul.pagination li {
- position: relative;
- float: left;
- display: block;
- margin-right: 3px;
-}
-ul.pagination li.results {
- margin-right: 10px;
-}
-ul.pagination li.separator {
- border-color: transparent;
-}
-ul.pagination li:last-child {
- clear: right;
-}
-
-ul.pagination span,
-ul.pagination a {
- display: inline-block;
- padding: 4px 8px 4px;
- min-width: 25px;
- font-size: 11px;
- font-weight: bold;
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
-}
-ul.pagination li.separator span {
- padding: 4px 0;
- min-width: 10px;
- font-size: 14px;
-}
-ul.pagination li.showall {
- margin-left: 7px;
-}
-.submit-row ul.pagination li,
-.submit-row ul.pagination li.results {
- padding-top: 0 !important;
- padding-bottom: 0 !important;
-}
-
-
-
-/* Module Changelist-Results
------------------------------------------------------------------------------------------------------- */
-
-.module.changelist-results {
- background: url('../img/backgrounds/changelist-results.png') repeat scroll !important;
-}
-.changelist-actions + .changelist-results,
-.changelist-results + .changelist-actions {
- margin-top: -1px;
-}
-
-
-
-/* Module Changelist Actions
------------------------------------------------------------------------------------------------------- */
-
-.changelist-actions {
- position: relative;
- margin-bottom: 0;
-}
-
-.changelist-actions ul {
- position: relative;
- float: left;
- display: inline;
- font-size: 11px;
- line-height: 16px;
- font-weight: bold;
- margin: -1px 10px -1px 0;
-}
-.changelist-actions ul li {
- position: relative;
- float: left;
- display: block;
- margin-right: 3px;
-}
-
-.changelist-actions ul a,
-.changelist-actions ul span {
- display: inline-block;
- padding: 4px 8px 3px;
- font-size: 11px;
- font-weight: bold;
-}
-.changelist-actions ul span span {
- padding: 0;
-}
-
-.changelist-actions #action-toggle {
- display: none;
-}
-.changelist-actions select {
- float: left;
- margin: 0 10px 0 0;
- width: 278px;
-}
-
-.changelist-actions li.all,
-.changelist-actions li.clear-selection,
-.changelist-actions li.question {
- display: none;
-}
-
-
-
-/* Submit Row
------------------------------------------------------------------------------------------------------- */
-
-.module.submit-row {
- width: 100%;
-}
-ul.submit-row {
- position: relative;
- float: left;
- clear: both;
- width: 100%;
-}
-.pagination + ul.submit-row {
- float: right;
- clear: none;
- width: 25%;
-}
-ul.submit-row li {
- float: right;
- margin-left: 10px;
-}
-
-ul.submit-row li.left {
- float: left;
-}
-ul.submit-row li.left:first-child {
- margin-left: 0;
-}
-
-
-
-/* Module Footer
------------------------------------------------------------------------------------------------------- */
-
-.module.footer {
- position: fixed;
- z-index: 1000;
- bottom: 0;
- margin: 0 -20px;
- padding: 12px 20px;
- min-width: 100px;
- width: 100%;
- opacity: 1;
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
-}
-.module.footer .changelist-actions {
- position: relative;
- float: left;
- clear: none;
- width: 75%;
- padding: 2px 0 0;
-}
-.change-list .module.footer ul.submit-row {
- position: relative;
- float: right;
- clear: none;
- width: 25%;
-}
-
-
-
-/* Sortable
------------------------------------------------------------------------------------------------------- */
-
-.sortablehelper, sortablehelper * {
- display: none;
-}
-
-
-
-
-
-
-
diff --git a/gestioncof/static/grappelli/css/datepicker/grappelli-theme-extensions.css b/gestioncof/static/grappelli/css/datepicker/grappelli-theme-extensions.css
deleted file mode 100644
index c5df9884..00000000
--- a/gestioncof/static/grappelli/css/datepicker/grappelli-theme-extensions.css
+++ /dev/null
@@ -1,392 +0,0 @@
-
-body {
-/* background: #e4f !important;*/
-}
-
-
-
-
-
-/* Widget Basics
------------------------------------------------------------------------------------------------------- */
-
-.module.ui-widget {
- border: none;
- background: #fff;
-}
-.ui-widget-content {
- border: 1px solid #ccc;
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
- background: #eee;
-}
-
-
-
-/* Accordion
------------------------------------------------------------------------------------------------------- */
-
-
-/* Overlays */
-.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
-.ui-accordion .ui-accordion-li-fix { display: inline; }
-.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
-.ui-accordion .ui-accordion-header a {
- display: block;
- font-size: 1em;
- padding: 0 0 0 12px;
-}
-.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
-.ui-accordion .ui-accordion-content {
- top: 0;
- margin-top: 0;
- margin-bottom: 0;
- padding: 5px 15px;
- border-top: 1px solid #fff;
-}
-.ui-accordion .ui-accordion-content-active { display: block; }/* Datepicker
-----------------------------------*/
-
-
-
-.ui-accordion-header {
- margin-top: 2px !important;
- cursor: pointer;
- outline: none;
-}
-.ui-accordion .ui-accordion-header a {
- padding: 0 0 0 12px;
- color: #444;
- outline: none;
-}
-
-.ui-accordion-header.ui-state-default {
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
-}
-.ui-accordion-header.ui-state-active {
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0;
- border-bottom-right-radius: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0;
-}
-
-
-/* Accordion Module ......................................... */
-
-.module .ui-accordion-header.ui-state-default {
- border: 1px solid #bdbdbd;
- background-color: #a1d4e5;
-}
-.module .ui-accordion-header.ui-state-default:hover {
- background-color: #d6d6d6;
-}
-.module .ui-accordion-header.ui-state-active {
- border: 1px solid #bdbdbd;
- background-color: #d6d6d6;
-}
-
-
-
-/* Accordion Module in Group......................................... */
-
-.group .module .ui-accordion-header.ui-state-default {
- border: 1px solid #c7c7c7;
- background-color: #cee9f2;
-}
-.group .module .ui-accordion-header.ui-state-default:hover {
- background-color: #e0e0e0;
-}
-.group .module .ui-accordion-header.ui-state-active {
- border: 1px solid #c7c7c7;
- background-color: #e0e0e0;
-}
-
-
-
-
-/*.module .ui-accordion-header {
- border-top: 1px solid #e4f;
-}*/
-.group .module .ui-accordion-header {
- border-top: 1px solid #4ef;
-}
-
-
-
-/* Datepicker
------------------------------------------------------------------------------------------------------- */
-
-.ui-datepicker {
- width: auto !important; padding: 3px 3px 0;
- border-color: #bdbdbd;
- box-shadow: 0 0 10px #333; -moz-box-shadow: 0 0 10px #333; -webkit-box-shadow: 0 0 10px #333;
-}
-.ui-datepicker .ui-datepicker-header {
- padding: 2px 0;
- height: 25px;
-}
-.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
- position: absolute;
- top: 4px;
- width: 1.8em;
- height: 1.8em;
-}
-.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 3px; }
-.ui-datepicker .ui-datepicker-prev { left:2px; }
-.ui-datepicker .ui-datepicker-next { right:2px; }
-.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
-.ui-datepicker .ui-datepicker-next-hover { right:1px; }
-.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
-.ui-datepicker .ui-datepicker-title {
- margin: 3px 25px 2px;
- line-height: 1.8em;
- text-align: center;
-}
-.ui-datepicker .ui-datepicker-title select {
- float:left;
- font-size:1em;
- margin: -3px 0 -1px !important;
- min-width: 30px;
-}
-.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
-.ui-datepicker select.ui-datepicker-month,
-.ui-datepicker select.ui-datepicker-year { width: 49%;}
-.ui-datepicker .ui-datepicker-title select.ui-datepicker-year {
- float: right;
-}
-.ui-datepicker table {
- width: 100%;
- font-size: 12px;
- margin: 0 0 2px;
-}
-.ui-datepicker th { padding: 5px 0; text-align: center; font-weight: bold; border: 0; }
-.ui-datepicker td {
- min-width: 25px;
- border: 0; padding: 1px;
-}
-.ui-datepicker td span, .ui-datepicker td a {
- padding: 4px 0 3px;
- text-align: center;
- border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
-}
-.ui-datepicker td a.ui-state-hover {
- color: #fff !important;
- border-color: #444 !important;
- background: #444 !important;
-}
-.ui-datepicker td a.ui-state-active {
-/* color: #fff;*/
-/* border-color: #aaa;*/
- background: #fff;
-}
-.ui-datepicker td a.ui-state-highlight {
-/* color: #fff;*/
- border-color: #bababa;
- background: #D6D6D6;
-}
-.ui-datepicker .ui-datepicker-buttonpane {
- background-image: none;
- margin: 10px 0 0;
- padding: 0;
- border-left: 0;
- border-right: 0;
- border-bottom: 0;
- }
-.ui-datepicker .ui-datepicker-buttonpane button {
- float: right;
- margin: 3px 0;
- padding: 4px 5px 5px;
- height: 25px;
- font-size: 12px;
- background: #fff;
- cursor: pointer;
-}
-.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
- opacity: 1 !important;
- color: #fff; font-weight: bold;
- border-color: #309bbf;
- background: #309bbf;
-}
-.ui-datepicker .ui-datepicker-buttonpane button.ui-state-hover {
- color: #fff !important;
- border-color: #444 !important;
- background: #444 !important;
-}
-
-.ui-datepicker-multi .ui-datepicker-group-first .ui-datepicker-title,
-.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-title {
- margin-right: 5px !important;
-}
-.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-title,
-.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-title {
- margin-left: 5px !important;
-}
-
-.ui-datepicker-multi .ui-datepicker-group table {
- width: 95%;
-}
-.ui-datepicker-multi .ui-datepicker-group-first table,
-.ui-datepicker-multi .ui-datepicker-group-middle table {
- margin-right: 5px !important;
-}
-.ui-datepicker-multi .ui-datepicker-group-middle table,
-.ui-datepicker-multi .ui-datepicker-group-last table {
- margin-left: 5px !important;
-}
-.ui-datepicker-multi .ui-datepicker-group-middle table {
- margin-left: 3px !important;
-}
-.ui-datepicker-multi .ui-datepicker-buttonpane {
- border: none;
-}
-
-.ui-datepicker-append {
- margin-left: 6px; color: #999; font-size: 10px;
-}
-
-
-
-/* Tabs
------------------------------------------------------------------------------------------------------- */
-
-.ui-tabs {
- padding: 0; zoom: 1;
-}
-.ui-tabs .ui-tabs-nav {
- padding: 0;
- color: #444; font-size: 12px;
- border: none;
- border-bottom: 1px solid #bdbdbd;
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0;
-/* -moz-border-radius-bottomright: 0;*/
- background: none;
-}
-.ui-tabs .ui-tabs-nav li {
- position: relative; float: left;
- border-bottom-width: 1px !important;
- margin: 0 .2em -1px 0;
- padding: 0;
-}
-.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; }
-.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
- padding-bottom: 0px; border-bottom-width: 1px;
-}
-.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
-.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
-.ui-tabs .ui-tabs-panel {
- padding: 0;
- display: block;
- border: 1px solid #bdbdbd;
- border-top: 1px solid #fff;
- border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;
- background: #eee;
-}
-.ui-tabs .ui-tabs-hide { display: none !important; }
-
-
-
-
-/* gAutocomplete
------------------------------------------------------------------------------------------------------- */
-
-.ui-gAutocomplete-wrapper {
- position: absolute;
- z-index: 400;
-}
-ul.ui-gAutocomplete-results {
- margin-top: 4px;
- padding: 5px;
- border: 1px solid #ddd;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
- box-shadow: 0 0 3px #444; -moz-box-shadow: 0 0 3px #444; -webkit-box-shadow: 0 0 3px #444;
- background: #fff;
-}
-ul.ui-gAutocomplete-results li {
- padding: 2px 5px;
- color: #666;
- cursor: pointer;
-}
-ul.ui-gAutocomplete-results li:hover {
- background: #e1f0f5;
-}
-ul.ui-gAutocomplete-results li:first-child {
- border-top-left-radius: 4px; -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px;
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
-}
-ul.ui-gAutocomplete-results li:last-child {
- border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px;
-}
-ul.ui-gAutocomplete-results li + li {
- border-top: 1px solid #eee;
-}
-
-ul.ui-gAutocomplete-results li b {
- margin: 0 1px;
- color: #444;
-/* text-decoration: underline;*/
-}
-
-
-
-/* gFacelist
------------------------------------------------------------------------------------------------------- */
-
-/*span.ui-gFacelist-message {
- display: inline-block;
- height: 25px;
- background: #fff;
- margin: 0;
- padding: 3px 5px 4px;
- vertical-align: middle;
- color: #666; font-family: Arial, sans-serif; font-size: 12px; font-weight: bold;
- border: 1px solid #bbb;
- border-color: #ccc #ddd #ddd #ccc;
- border-top-left-radius: 3px; -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px;
- border-top-right-radius: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px;
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
- outline: none;
-}*/
-
-.ui-gFacelist-toolbar input.ui-gAutocomplete-autocomplete {
-/* margin-top: 4px;*/
-/* width: 100px;*/
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0;
-}
-.ui-gFacelist-toolbar button {
- border-bottom-right-radius: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0;
-}
-
-.ui-gFacelist-toolbar .ui-gAutocomplete-wrapper {
- margin-top: -4px;
-}
-
-ul.ui-gFacelist-facelist {
- position: relative; float: left; clear: both;
- padding: 0px 5px 5px;
- border: 1px solid #bbb;
- border-color: #ccc #ddd #ddd #ccc;
- border-top: none;
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
- background: #fff;
-
-}
-li.ui-gFacelist-item {
- position: relative; float: left;
- margin-top: 5px; padding: 3px 6px 2px;
- width: auto;
- font-weight: bold;
- border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
- background: #ddd;
-}
-li.ui-gFacelist-item {
- margin-right: 5px;
-}
-
-a.ui-gFacelist-item-remove {
- display: inline-block;
- margin: 0 0 -3px 0;
- width: 16px;
- height: 16px;
- background: transparent 100% 3px no-repeat;
-}
diff --git a/gestioncof/static/grappelli/css/forms.css b/gestioncof/static/grappelli/css/forms.css
deleted file mode 100644
index 84e21f6d..00000000
--- a/gestioncof/static/grappelli/css/forms.css
+++ /dev/null
@@ -1,1243 +0,0 @@
-
-
-
-/* Basic Settings, Fieldsets, Form-Rows
------------------------------------------------------------------------------------------------------- */
-
-form {
- margin: 0;
- padding: 0;
-}
-
-fieldset {
- margin: 0;
- padding: 0;
-}
-
-.row p.help {
- margin: 3px 0 2px 0;
- padding: 0;
-}
-.row.cells p.help {
- max-width: 278px;
- white-space: normal !important;
-}
-
-.row ul.radio-list + p.help,
-.row ul.checkbox-list + p.help {
- margin-top: -3px;
-}
-
-
-
-/* Errors
------------------------------------------------------------------------------------------------------- */
-
-.errornote {
- margin-bottom: 7px;
- padding: 8px 10px;
- font-size: 12px;
- font-weight: bold;
-}
-/* little fix to accomodate the top aligned login form .. */
-.errornote.login-errors {
- margin-bottom: 0 !important;
- padding: 8px 12px;
-}
-ul.errorlist {
- margin: 6px 0 -3px;
- font-size: 11px;
- line-height: 13px;
- font-weight: bold;
-}
-ul.errorlist li {
- padding: 0 5px 0 0;
-}
-p.errornote + ul.errorlist {
- margin-bottom: 8px;
-}
-ul.errorlist:empty {
- display: none;
- margin: 0;
-}
-.group.tabular ul.errorlist {
- margin-left: 11px;
-}
-.group.stacked ul.errorlist {
- margin-left: 11px;
- margin-bottom: 5px;
-}
-.group.stacked h3 + * + ul.errorlist {
- margin: 0 !important;
- padding: 5px 11px;
-}
-.cell ul.errorlist {
- padding-left: 0;
-}
-.cell ul.errorlist li {
- padding-left: 0;
-}
-.cell label + * + ul.errorlist,
-.cell label + * + * + ul.errorlist {
- padding-left: 160px !important;
-}
-table ul.errorlist {
- margin: -9px 0 6px;
-}
-.group.stacked .row ul.errorlist,
-.module.table ul.errorlist {
- margin-top: 5px;
- margin-left: 0;
- margin-bottom: -3px;
-}
-ul.radiolist.inline + ul.errorlist,
-ul.radiolist.inline + * + ul.errorlist {
- position: relative; clear: both;
-}
-ul.radiolist + ul.errorlist,
-ul.radiolist + * + ul.errorlist {
- margin-top: 0 !important;
-}
-
-.module.table .tbody>ul.errorlist {
- margin-top: 2px;
- margin-left: 11px;
- margin-bottom: 2px;
-}
-.module.table .tr ul.errorlist {
- margin-left: 0;
-}
-.module.table ul.radiolist + ul.errorlist,
-.module.table ul.radiolist + * + ul.errorlist {
- margin: -2px 0 0;
-}
-table ul.errorlist li,
-.module.table ul.errorlist li {
- padding-left: 0;
-}
-p.errornote + ul.errorlist li {
- padding-left: 10px;
-}
-
-
-
-/* Labels & Other Typographic Elements in Forms
------------------------------------------------------------------------------------------------------- */
-
-label {
- margin: 5px 0 -5px;
- font-size: 11px;
- line-height: 15px;
- cursor: pointer;
-}
-.required label, label.required,
-.row .required label, .row label.required {
- font-weight: bold;
-}
-
-.module label {
- display: block;
- padding: 0 0 6px;
- white-space: normal;
-}
-.module .vCheckboxLabel {
- display: inline;
- float: none;
- clear: both;
- margin: 0 0 0 10px;
- padding: 0;
-}
-
-
-
-/* Form Elements
------------------------------------------------------------------------------------------------------- */
-
-input, textarea, select, button {
- margin: 0;
- vertical-align: top;
- font-family: Arial, sans-serif;
- font-size: 12px;
- font-weight: bold;
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
-}
-
-
-/* Text, Password ................................................... */
-
-input[type=text], input[type=password] {
- padding: 5px 5px 4px;
- height: 25px;
-}
-/* Webkit browser hack: apply same horizontal padding as in moz browsers
- Moz Browsers have a default horizontal padding of 3px in input[type=submit] */
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- input[type=text], input[type=password] {
- line-height: 13px !important;
- }
-}
-
-
-/* Searchbar ................................................... */
-
-form#changelist-search {
- position: relative;
- float: left;
- clear: both;
-}
-input#searchbar {
- position: relative;
- float: left;
- padding-left: 8px;
- padding-right: 30px;
- width: 218px;
- height: 26px;
- font-size: 11px;
-}
-
-
-/* FileBrowseField ................................................... */
-
-input.vFileBrowseField {
- padding-right: 25px;
-}
-
-
-/* File ................................................... */
-
-input[type=file] {
- position: relative;
- top: 1px;
- height: auto;
- border: 0;
-}
-.th input[type=file],
-.td input[type=file] {
- top: 3px;
- margin-bottom: -2px;
-}
-
-.module p.file-upload {
- margin-bottom: 5px !important;
- padding: 3px 0 0 !important;
- font-size: 11px;
- line-height: 20px;
-/* font-size: 0;*/
-/* color: transparent;*/
-}
-.file-upload a {
- font-size: 12px;
- font-weight: bold;
-}
-.file-upload br {
- display: none;
-}
-.file-upload .clearable-file-input {
- display: block;
- margin: 0 0 5px;
- padding: 0;
- min-width: 320px;
-}
-.file-upload .clearable-file-input label {
- display: inline-block;
- float: none;
- margin-bottom: -2px;
- position: relative;
- top: 0;
-}
-.file-upload .clearable-file-input input {
- top: 5px !important;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- .file-upload .clearable-file-input input {
- top: 7px !important;
- }
-}
-.file-upload input[type=file] {
- position: relative;
- top: 1px;
- height: auto;
- border: 0;
-}
-
-
-/* Date & Time ................................................... */
-
-.vDateField, .vTimeField {
- margin-left: 0;
-}
-p.datetime {
- margin-bottom: 0 !important;
- padding: 0;
-}
-p.datetime input.vTimeField {
- margin-left: 13px;
-}
-
-
-/* Textarea ................................................... */
-
-textarea {
- vertical-align: top;
- padding: 3px 5px;
-}
-fieldset.monospace textarea {
- font-family: "Bitstream Vera Sans Mono",Monaco,"Courier New",Courier,monospace;
-}
-
-
-/* Select ................................................... */
-
-select {
- padding: 4px 3px 4px 3px;
- height: 25px;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- select {
- padding: 4px 28px 4px 8px;
- -webkit-appearance: textfield;
- background: #fff url('../img/icons/icon-form-select.png') 100% 50% no-repeat;
- }
-}
-select[multiple=multiple] {
- padding-right: 5px;
- height: 160px;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- select[multiple=multiple] {
- background-image: none;
- }
-}
-
-
-/* Checkbox, Radio ................................................... */
-
-input[type=checkbox], input[type=radio] {
- position: relative;
- margin: 0;
-}
-.row input[type=checkbox], .row input[type=radio] {
- margin-left: 0;
- margin-right: 5px;
-}
-.th>input[type=radio],
-.th>input[type=checkbox],
-.td>input[type=radio],
-.td>input[type=checkbox] {
- top: 5px;
- margin-bottom: -3px;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- .th>input[type=radio],
- .td>input[type=radio] {
- top: 6px;
- margin-bottom: -2px;
- }
- .th>input[type=checkbox],
- .td>input[type=checkbox] {
- top: 7px;
- margin-bottom: -2px;
- }
-}
-.row input[type=radio],
-.th ul.radiolist input[type=radio],
-.td ul.radiolist input[type=radio] {
- top: 0;
-}
-.row input[type=checkbox],
-.th ul.checkboxlist input[type=checkbox],
-.td ul.checkboxlist input[type=checkbox] {
- top: 2px;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- .row input[type=radio],
- .th ul.radiolist input[type=radio],
- .td ul.radiolist input[type=radio] {
- top: 1px;
- }
- .row input[type=checkbox],
- .th ul.checkboxlist input[type=checkbox],
- .td ul.checkboxlist input[type=checkbox] {
- top: 3px;
- }
-}
-.th input[type=radio],
-.th input[type=checkbox],
-.td input[type=radio],
-.td input[type=checkbox],
-ul.radiolist input[type=radio],
-ul.checkboxlist input[type=checkbox] {
- margin-left: 0;
- margin-right: 5px;
-}
-
-.row input[type=checkbox] + label {
- position: relative;
- float: none;
- top: 0;
- display: inline-block;
- margin-bottom: -2px;
-}
-
-.row ul.checkboxlist input[type=checkbox] {
- top: 0;
- margin: 0 5px 0 0;
-}
-.row ul.checkboxlist label input[type=checkbox] {
- top: -2px;
- vertical-align: middle;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- .row ul.checkboxlist label input[type=checkbox] {
- top: -1px;
- vertical-align: middle;
- }
-}
-
-.row label + input + p.help input[type=checkbox] {
- position: relative;
- top: -2px;
- margin: 0 3px 0 0;
-}
-
-ul.tools .delete-handler-container input[type=checkbox],
-ul.tools .remove-handler-container input[type=checkbox] {
- display: none !important;
-}
-
-
-/* Radiolists & Checkboxlists ................................................... */
-
-ul.radiolist, ul.checkboxlist {
- position: relative;
- float: none;
- display: inline-block;
- margin: 5px 0;
- padding: 0;
- font-size: 11px;
- line-height: 15px;
- font-weight: normal;
-}
-
-.row>ul.radiolist, .row>ul.checkboxlist {
- margin: 0;
-}
-
-ul.radiolist li + li, ul.checkboxlist li + li {
- margin-top: 2px;
-}
-
-ul.radiolist.inline, ul.checkboxlist.inline {
- float: left;
- display: inline;
- margin-top: 5px;
- margin-bottom: 3px;
- padding-right: 20px;
-}
-th ul.radiolist.inline, th ul.checkboxlist.inline,
-td ul.radiolist.inline, td ul.checkboxlist.inline {
- margin-top: 0;
-}
-ul.radiolist.inline li, ul.checkboxlist.inline li {
- float: left;
- display: inline;
- margin-top: 0 !important;
- margin-bottom: 2px;
- padding-right: 20px;
-}
-.module.tbody ul.radiolist.inline, .module.tbody ul.checkboxlist.inline {
- display: inline;
- white-space: normal;
-}
-.module.tbody ul.radiolist.inline li, .module.tbody ul.checkboxlist.inline li {
- position: relative;
- float: left;
- display: inline;
-}
-.row.cells ul.radiolist.inline li, .row.cells ul.checkboxlist.inline li {
- float: none;
-}
-
-ul.radiolist label, ul.checkboxlist label {
- float: none;
- display: inline-block;
- margin: 0;
- padding: 0;
- width: auto !important;
- white-space: nowrap;
-}
-
-
-/* Changelist Form Fields ................................................... */
-
-#changelist table input[type=text],
-#changelist table input[type=password],
-#changelist table input[type=file],
-#changelist table select,
-#changelist table textarea {
- position: relative;
- top: -5px;
- margin-bottom: -9px;
- vertical-align: top;
-}
-#changelist table input[type=file] {
- top: -3px;
- margin-bottom: -7px;
-}
-#changelist table input[type=radio],
-#changelist table input[type=checkbox] {
- position: relative;
- top: 0;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- #changelist table input[type=radio],
- #changelist table input[type=checkbox] {
- top: 1px;
- }
-}
-#changelist table thead input[type=radio],
-#changelist table thead input[type=checkbox] {
- top: 0;
-}
-
-
-
-/* Form Fields in Grid
------------------------------------------------------------------------------------------------------- */
-
-input[class*="span"], select[class*="span"], textarea[class*="span"] {
- margin-right: 0;
-}
-
-.span-24 input[type=text], .span-24 input[type=password],
-.span-24 select, .span-24 textarea,
-input[type=text].span-24, input[type=password].span-24,
-select.span-24, textarea.span-24,
-.span-24 .ui-gFacelist-message,
-.span-24 .ui-gFacelist-facelist,
-.span-24 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-24 {
- width: 918px;
-}
-.span-24 div.autocomplete-wrapper-m2m ul.repr,
-.span-24 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-24 ul.repr,
-div.autocomplete-wrapper-m2m.span-24 ul.repr li {
- max-width: 860px;
-}
-.span-23 input[type=text], .span-23 input[type=password],
-.span-23 select, .span-23 textarea,
-input[type=text].span-23, input[type=password].span-23,
-select.span-23, textarea.span-23,
-.span-23 .ui-gFacelist-message,
-.span-23 .ui-gFacelist-facelist,
-.span-23 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-23 {
- width: 878px;
-}
-.span-23 div.autocomplete-wrapper-m2m ul.repr,
-.span-23 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-23 ul.repr,
-div.autocomplete-wrapper-m2m.span-23 ul.repr li {
- max-width: 820px;
-}
-.span-22 input[type=text], .span-22 input[type=password],
-.span-22 select, .span-22 textarea,
-input[type=text].span-22, input[type=password].span-22,
-select.span-22, textarea.span-22,
-.span-22 .ui-gFacelist-message,
-.span-22 .ui-gFacelist-facelist,
-.span-22 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-22 {
- width: 838px;
-}
-.span-22 div.autocomplete-wrapper-m2m ul.repr,
-.span-22 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-22 ul.repr,
-div.autocomplete-wrapper-m2m.span-22 ul.repr li {
- max-width: 780px;
-}
-.span-21 input[type=text], .span-21 input[type=password],
-.span-21 select, .span-21 textarea,
-input[type=text].span-21, input[type=password].span-21,
-select.span-21, textarea.span-21,
-.span-21 .ui-gFacelist-message,
-.span-21 .ui-gFacelist-facelist,
-.span-21 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-21 {
- width: 798px;
-}
-.span-21 div.autocomplete-wrapper-m2m ul.repr,
-.span-21 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-21 ul.repr,
-div.autocomplete-wrapper-m2m.span-21 ul.repr li {
- max-width: 740px;
-}
-.span-20 input[type=text], .span-20 input[type=password],
-.span-20 select, .span-20 textarea,
-input[type=text].span-20, input[type=password].span-20,
-select.span-20, textarea.span-20,
-.span-20 .ui-gFacelist-message,
-.span-20 .ui-gFacelist-facelist,
-.span-20 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-20,
-.span-24 label + input[type=text], .span-24 label + input[type=password],
-.span-24 label + select, .span-24 label + textarea {
- width: 758px;
-}
-.span-20 div.autocomplete-wrapper-m2m ul.repr,
-.span-20 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-20 ul.repr,
-div.autocomplete-wrapper-m2m.span-20 ul.repr li {
- max-width: 700px;
-}
-.span-19 input[type=text], .span-19 input[type=password],
-.span-19 select, .span-19 textarea,
-input[type=text].span-19, input[type=password].span-19,
-select.span-19, textarea.span-19,
-.span-19 .ui-gFacelist-message,
-.span-19 .ui-gFacelist-facelist,
-.span-19 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-19,
-.span-23 label + input[type=text], .span-23 label + input[type=password],
-.span-23 label + select, .span-23 label + textarea {
- width: 718px;
-}
-.span-19 div.autocomplete-wrapper-m2m ul.repr,
-.span-19 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-19 ul.repr,
-div.autocomplete-wrapper-m2m.span-19 ul.repr li {
- max-width: 660px;
-}
-.span-18 input[type=text], .span-18 input[type=password],
-.span-18 select, .span-18 textarea,
-input[type=text].span-18, input[type=password].span-18,
-select.span-18, textarea.span-18,
-.span-18 .ui-gFacelist-message,
-.span-18 .ui-gFacelist-facelist,
-.span-18 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-18,
-.span-22 label + input[type=text], .span-22 label + input[type=password],
-.span-22 label + select, .span-22 label + textarea {
- width: 678px;
-}
-.span-18 div.autocomplete-wrapper-m2m ul.repr,
-.span-18 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-18 ul.repr,
-div.autocomplete-wrapper-m2m.span-18 ul.repr li {
- max-width: 620px;
-}
-.span-17 input[type=text], .span-17 input[type=password],
-.span-17 select, .span-17 textarea,
-input[type=text].span-17, input[type=password].span-17,
-select.span-17, textarea.span-17,
-.span-17 .ui-gFacelist-message,
-.span-17 .ui-gFacelist-facelist,
-.span-17 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-17,
-.span-21 label + input[type=text], .span-21 label + input[type=password],
-.span-1 label + select, .span-21 label + textarea {
- width: 638px;
-}
-.span-17 div.autocomplete-wrapper-m2m ul.repr,
-.span-17 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-17 ul.repr,
-div.autocomplete-wrapper-m2m.span-17 ul.repr li {
- max-width: 580px;
-}
-.span-16 input[type=text], .span-16 input[type=password],
-.span-16 select, .span-16 textarea,
-input[type=text].span-16, input[type=password].span-16,
-select.span-16, textarea.span-16,
-.span-16 .ui-gFacelist-message,
-.span-16 .ui-gFacelist-facelist,
-.span-24 input.vForeignKeyRawIdAdminField,
-.span-24 input.vManyToManyRawIdAdminField,
-.span-16 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-16,
-.span-20 label + input[type=text], .span-20 label + input[type=password],
-.span-20 label + select, .span-20 label + textarea {
- width: 598px;
-}
-.span-16 div.autocomplete-wrapper-m2m ul.repr,
-.span-16 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-16 ul.repr,
-div.autocomplete-wrapper-m2m.span-16 ul.repr li {
- max-width: 540px;
-}
-.span-15 input[type=text], .span-15 input[type=password],
-.span-15 select, .span-15 textarea,
-input[type=text].span-15, input[type=password].span-15,
-select.span-15, textarea.span-15,
-.span-15 .ui-gFacelist-message,
-.span-15 .ui-gFacelist-facelist,
-.span-23 input.vForeignKeyRawIdAdminField,
-.span-23 input.vManyToManyRawIdAdminField,
-.span-15 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-15,
-.span-19 label + input[type=text], .span-19 label + input[type=password],
-.span-19 label + select, .span-19 label + textarea {
- width: 558px;
-}
-.span-15 div.autocomplete-wrapper-m2m ul.repr,
-.span-15 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-15 ul.repr,
-div.autocomplete-wrapper-m2m.span-15 ul.repr li {
- max-width: 500px;
-}
-.span-14 input[type=text], .span-14 input[type=password],
-.span-14 select, .span-14 textarea,
-input[type=text].span-14, input[type=password].span-14,
-select.span-14, textarea.span-14,
-.span-14 .ui-gFacelist-message,
-.span-14 .ui-gFacelist-facelist,
-.span-22 input.vForeignKeyRawIdAdminField,
-.span-22 input.vManyToManyRawIdAdminField,
-.span-14 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-14,
-.span-18 label + input[type=text], .span-18 label + input[type=password],
-.span-18 label + select, .span-18 label + textarea {
- width: 518px;
-}
-.span-14 div.autocomplete-wrapper-m2m ul.repr,
-.span-14 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-14 ul.repr,
-div.autocomplete-wrapper-m2m.span-14 ul.repr li {
- max-width: 460px;
-}
-.span-13 input[type=text], .span-13 input[type=password],
-.span-13 select, .span-13 textarea,
-input[type=text].span-13, input[type=password].span-13,
-select.span-13, textarea.span-13,
-.span-13 .ui-gFacelist-message,
-.span-13 .ui-gFacelist-facelist,
-.span-21 input.vForeignKeyRawIdAdminField,
-.span-21 input.vManyToManyRawIdAdminField,
-.span-13 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-13,
-.span-17 label + input[type=text], .span-17 label + input[type=password],
-.span-17 label + select, .span-17 label + textarea {
- width: 478px;
-}
-.span-13 div.autocomplete-wrapper-m2m ul.repr,
-.span-13 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-13 ul.repr,
-div.autocomplete-wrapper-m2m.span-13 ul.repr li {
- max-width: 420px;
-}
-.span-12 input[type=text], .span-12 input[type=password],
-.span-12 select, .span-12 textarea,
-input[type=text].span-12, input[type=password].span-12,
-select.span-12, textarea.span-12,
-.span-12 .ui-gFacelist-message,
-.span-12 .ui-gFacelist-facelist,
-.span-20 input.vForeignKeyRawIdAdminField,
-.span-20 input.vManyToManyRawIdAdminField,
-.span-12 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-12,
-.span-16 label + input[type=text], .span-16 label + input[type=password],
-.span-16 label + select, .span-16 label + textarea {
- width: 438px;
-}
-.span-12 div.autocomplete-wrapper-m2m ul.repr,
-.span-12 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-12 ul.repr,
-div.autocomplete-wrapper-m2m.span-12 ul.repr li {
- max-width: 380px;
-}
-.span-11 input[type=text], .span-11 input[type=password],
-.span-11 select, .span-11 textarea,
-input[type=text].span-11, input[type=password].span-11,
-select.span-11, textarea.span-11,
-.span-11 .ui-gFacelist-message,
-.span-11 .ui-gFacelist-facelist,
-.span-19 input.vForeignKeyRawIdAdminField,
-.span-19 input.vManyToManyRawIdAdminField,
-.span-11 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-11,
-.span-15 label + input[type=text], .span-15 label + input[type=password],
-.span-15 label + select, .span-15 label + textarea {
- width: 398px;
-}
-.span-11 div.autocomplete-wrapper-m2m ul.repr,
-.span-11 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-11 ul.repr,
-div.autocomplete-wrapper-m2m.span-11 ul.repr li {
- max-width: 340px;
-}
-.span-10 input[type=text], .span-10 input[type=password],
-.span-10 select, .span-10 textarea,
-input[type=text].span-10, input[type=password].span-10,
-select.span-10, textarea.span-10,
-.span-10 .ui-gFacelist-message,
-.span-10 .ui-gFacelist-facelist,
-.span-18 input.vForeignKeyRawIdAdminField,
-.span-18 input.vManyToManyRawIdAdminField,
-.span-10 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-10,
-.span-14 label + input[type=text], .span-4 label + input[type=password],
-.span-14 label + select, .span-14 label + textarea {
- width: 358px;
-}
-.span-10 div.autocomplete-wrapper-m2m ul.repr,
-.span-10 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-10 ul.repr,
-div.autocomplete-wrapper-m2m.span-10 ul.repr li {
- max-width: 300px;
-}
-.span-9 input[type=text], .span-9 input[type=password],
-.span-9 select, .span-9 textarea,
-input[type=text].span-9, input[type=password].span-9,
-select.span-9, textarea.span-9,
-.span-9 .ui-gFacelist-message,
-.span-9 .ui-gFacelist-facelist,
-.span-17 input.vForeignKeyRawIdAdminField,
-.span-17 input.vManyToManyRawIdAdminField,
-.span-9 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-9,
-.span-13 label + input[type=text], .span-13 label + input[type=password],
-.span-13 label + select, .span-13 label + textarea {
- width: 318px;
-}
-.span-9 div.autocomplete-wrapper-m2m ul.repr,
-.span-9 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-9 ul.repr,
-div.autocomplete-wrapper-m2m.span-9 ul.repr li {
- max-width: 260px;
-}
-.span-8 input[type=text], .span-8 input[type=password],
-.span-8 select, .span-8 textarea,
-input[type=text].span-8, input[type=password].span-8,
-select.span-8, textarea.span-8,
-.span-8 .ui-gFacelist-message,
-.span-8 .ui-gFacelist-facelist,
-.span-16 input.vForeignKeyRawIdAdminField,
-.span-16 input.vManyToManyRawIdAdminField,
-.span-8 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-8,
-.span-12 label + input[type=text], .span-12 label + input[type=password],
-.span-12 label + select, .span-12 label + textarea {
- width: 278px;
-}
-.span-8 div.autocomplete-wrapper-m2m ul.repr,
-.span-8 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-8 ul.repr,
-div.autocomplete-wrapper-m2m.span-8 ul.repr li {
- max-width: 220px;
-}
-.span-7 input[type=text], .span-7 input[type=password],
-.span-7 select, .span-7 textarea,
-input[type=text].span-7, input[type=password].span-7,
-select.span-7, textarea.span-7,
-.span-15 input.vForeignKeyRawIdAdminField,
-.span-15 input.vManyToManyRawIdAdminField,
-.span-7 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-7,
-.span-11 label + input[type=text], .span-11 label + input[type=password],
-.span-11 label + select, .span-11 label + textarea {
- width: 238px;
-}
-.span-7 div.autocomplete-wrapper-m2m ul.repr,
-.span-7 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-7 ul.repr,
-div.autocomplete-wrapper-m2m.span-7 ul.repr li {
- max-width: 180px;
-}
-.span-6 input[type=text], .span-6 input[type=password],
-.span-6 select, .span-6 textarea,
-input[type=text].span-6, input[type=password].span-6,
-select.span-6, textarea.span-6,
-.span-14 input.vForeignKeyRawIdAdminField,
-.span-14 input.vManyToManyRawIdAdminField,
-.span-6 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-6,
-.span-10 label + input[type=text], .span-10 label + input[type=password],
-.span-10 label + select, .span-10 label + textarea {
- width: 198px;
-}
-.span-6 div.autocomplete-wrapper-m2m ul.repr,
-.span-6 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-6 ul.repr,
-div.autocomplete-wrapper-m2m.span-6 ul.repr li {
- max-width: 140px;
-}
-.span-5 input[type=text], .span-5 input[type=password],
-.span-5 select, .span-5 textarea,
-input[type=text].span-5, input[type=password].span-5,
-select.span-5, textarea.span-5,
-.span-13 input.vForeignKeyRawIdAdminField,
-.span-13 input.vManyToManyRawIdAdminField,
-.span-5 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-5,
-.span-9 label + input[type=text], .span-9 label + input[type=password],
-.span-9 label + select, .span-9 label + textarea {
- width: 158px;
-}
-.span-5 div.autocomplete-wrapper-m2m ul.repr,
-.span-5 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-5 ul.repr,
-div.autocomplete-wrapper-m2m.span-5 ul.repr li {
- max-width: 100px;
-}
-.span-4 input[type=text], .span-4 input[type=password],
-.span-4 select, .span-4 textarea,
-input[type=text].span-4, input[type=password].span-4,
-select.span-4, textarea.span-4,
-.span-12 input.vForeignKeyRawIdAdminField,
-.span-12 input.vManyToManyRawIdAdminField,
-.span-4 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-4,
-.span-8 label + input[type=text], .span-8 label + input[type=password],
-.span-8 label + select, .span-8 label + textarea {
- width: 118px;
-}
-.span-4 div.autocomplete-wrapper-m2m ul.repr,
-.span-4 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-4 ul.repr,
-div.autocomplete-wrapper-m2m.span-4 ul.repr li {
- max-width: 60px;
-}
-.span-3 input[type=text], .span-3 input[type=password],
-.span-3 select, .span-3 textarea,
-input[type=text].span-3, input[type=password].span-3,
-select.span-3, textarea.span-3,
-.span-11 input.vForeignKeyRawIdAdminField,
-.span-11 input.vManyToManyRawIdAdminField,
-.span-3 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-3,
-.span-7 label + input[type=text], .span-7 label + input[type=password],
-.span-7 label + select, .span-7 label + textarea {
- width: 78px;
-}
-.span-3 div.autocomplete-wrapper-m2m ul.repr,
-.span-3 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-3 ul.repr,
-div.autocomplete-wrapper-m2m.span-3 ul.repr li {
- max-width: 20px;
-}
-.span-2 input[type=text], .span-2 input[type=password],
-.span-2 select, .span-2 textarea,
-input[type=text].span-2, input[type=password].span-2,
-select.span-2, textarea.span-2,
-.span-10 input.vForeignKeyRawIdAdminField,
-.span-10 input.vManyToManyRawIdAdminField,
-.span-2 div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-m2m.span-2,
-.span-6 label + input[type=text], .span-6 label + input[type=password],
-.span-6 label + select, .span-6 label + textarea {
- width: 38px;
-}
-.span-2 div.autocomplete-wrapper-m2m ul.repr,
-.span-2 div.autocomplete-wrapper-m2m ul.repr li,
-div.autocomplete-wrapper-m2m.span-2 ul.repr,
-div.autocomplete-wrapper-m2m.span-2 ul.repr li {
- max-width: 30px;
-}
-
-
-.container-grid .span-flexible input[type=text], .container-grid .span-flexible input[type=password],
-.container-grid .span-flexible textarea, .container-grid .span-flexible select {
- width: 100% !important;
-}
-
-
-
-/* Form Elements: Basic Widths & Heights
------------------------------------------------------------------------------------------------------- */
-
-input[type=text],
-input[type=password],
-.vDateField,
-.vTimeField,
-.vIntegerField,
-.vPositiveSmallIntegerField,
-.vManyToManyRawIdAdminField,
-.vForeignKeyRawIdAdminField {
- width: 118px;
-}
-
-input.vTextField,
-input.vURLField,
-input.vFileBrowseField,
-textarea,
-.vLargeTextField,
-.vXMLLargeTextField {
- width: 278px;
-}
-
-.row select {
- min-width: 118px;
-}
-
-.vLargeTextField {
- height: 118px;
-}
-
-
-
-/* Large Form Elements in Change-Form: Widths & Heights
------------------------------------------------------------------------------------------------------- */
-
-.row .vTextField,
-.row .vURLField,
-.row .vFileBrowseField,
-.row textarea,
-.row .vLargeTextField,
-.row .vXMLLargeTextField,
-div.autocomplete-wrapper-m2m {
- width: 758px;
-}
-.row select {
- max-width: 758px;
-}
-div.autocomplete-wrapper-m2m ul.repr,
-div.autocomplete-wrapper-m2m ul.repr li {
- max-width: 700px;
-}
-
-
-
-/* Form Elements in Changelist-Results Table & Tabular Modules: Widths & Heights
------------------------------------------------------------------------------------------------------- */
-
-.changelist-results table select,
-.module.table select,
-.module.table div.autocomplete-wrapper-m2m {
- max-width: 278px;
-}
-.module.table div.autocomplete-wrapper-m2m {
- width: 278px;
-}
-.module.table div.autocomplete-wrapper-m2m ul.repr,
-.module.table div.autocomplete-wrapper-m2m ul.repr li {
- max-width: 222px;
-}
-
-
-/* Form Elements Cells
------------------------------------------------------------------------------------------------------- */
-
-.cell input[type=text],
-.cell input[type=password],
-.cell select,
-.cell div.autocomplete-wrapper-m2m {
- max-width: 280px;
-}
-.cell div.autocomplete-wrapper-m2m {
- width: 280px;
-}
-.cell div.autocomplete-wrapper-m2m ul.repr,
-.cell div.autocomplete-wrapper-m2m ul.repr li {
- max-width: 222px;
-}
-
-
-/* Autocomplete Elements
------------------------------------------------------------------------------------------------------- */
-
-
-/* Autocomplete Wrappers (Input and Input-Lookalike) ......................................... */
-
-div.autocomplete-wrapper-m2m,
-div.autocomplete-wrapper-fk input.ui-autocomplete-input {
- padding-right: 55px;
- color: #666;
- border: 1px solid #ccc;
-/* border-color: #ccc #ddd #ddd #ccc;*/
- border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
- box-shadow: 0 1px 3px #eaeaea inset; -moz-box-shadow: 0 1px 3px #eaeaea inset; -webkit-box-shadow: 0 1px 3px #eaeaea inset;
-/* background: #fff url('../img/backgrounds/autocomplete.png') repeat-x scroll;*/
- background: #fff;
-/* background: #f2f8fa;*/
-/* background: #e1f0f5;*/
-}
-div.autocomplete-wrapper-m2m.state-focus,
-div.autocomplete-wrapper-fk input.ui-autocomplete-input:focus {
- border-color: #999;
- background: #e1f0f5;
-/* border: 1px solid #309bbf;*/
-/* background: #fff url('../img/backgrounds/autocomplete.png');*/
-}
-
-div.autocomplete-wrapper-m2m {
- display: inline-block;
- position: relative;
- padding: 0 0 0 1px;
-/* width: 758px;*/
- height: auto !important;
- vertical-align: top;
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
-}
-div.autocomplete-wrapper-fk {
- display: inline-block;
- position: relative;
- width: auto !important;
- height: auto !important;
- margin: 0 !important;
- padding: 0 !important;
- vertical-align: top;
- font-size: 0 !important; /* Set font-size and line-height to 0 to let the at the end of the autocomplete-wrapper disappear */
- line-height: 0 !important;
- background: transparent !important;
-}
-
-
-/* M2M Listing ......................................... */
-
-div.autocomplete-wrapper-m2m ul.repr {
-/* position: relative;*/
- float: left;
-/* clear: both;*/
-/* padding-right: 25px;*/
- width: 100%;
- overflow: hidden;
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
-}
-div.autocomplete-wrapper-m2m li {
-/* position: relative;*/
- float: left;
- display: inline;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-div.autocomplete-wrapper-m2m li.search {
- margin-top: 1px;
- margin-bottom: 1px;
- background: transparent;
-}
-div.autocomplete-wrapper-m2m li.search input[type=text] {
- margin: 0 0 -1px !important;
- padding: 0 4px !important;
- width: 100px;
- height: 22px !important;
- font-size: 12px !important;
- line-height: 16px !important;
- outline: 0 !important;
- border: 0 !important;
- box-shadow: none !important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important;
- background: transparent !important;
- cursor: text;
-}
-div.autocomplete-wrapper-m2m li.repr {
- margin-top: 3px;
- margin-bottom: 0;
- margin-right: 5px;
- font-weight: bold;
- line-height: 18px;
-}
-
-
-/* Autocomplete Icons ......................................... */
-
-div.autocomplete-wrapper-m2m li.repr a.m2m-remove {
- color: #666;
- padding-left: 5px;
-}
-
-div.autocomplete-wrapper-fk.autocomplete-preremove input.ui-autocomplete-input,
-div.autocomplete-wrapper-m2m.autocomplete-preremove li.repr a {
- color: #bf3030 !important;
-}
-
-div.autocomplete-wrapper-m2m li.repr.autocomplete-preremove a {
- color: #bf3030 !important;
-}
-
-div.autocomplete-wrapper-m2m a.related-lookup,
-div.autocomplete-wrapper-fk a.related-lookup {
- position: absolute;
- border: 1px solid #ccc;
-}
-div.autocomplete-wrapper-m2m a.related-lookup {
- top: -1px;
- right: -1px;
-/* border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px;*/
-}
-
-div.autocomplete-wrapper-fk a.related-lookup {
- top: 0;
- right: 0;
-}
-div.autocomplete-wrapper-fk a.related-remove,
-div.autocomplete-wrapper-m2m a.related-remove,
-div.autocomplete-wrapper-fk div.loader,
-div.autocomplete-wrapper-m2m div.loader {
- display: inline-block;
- position: absolute;
- right: 24px;
- top: 0;
- font-size: 0;
- line-height: 0;
- width: 23px;
- height: 23px;
- border: 1px solid #ccc;
-/* border-radius: 15px; -moz-border-radius: 15px; -webkit-border-radius: 15px;*/
-}
-div.autocomplete-wrapper-m2m a.related-remove + a.related-lookup {
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0;
-}
-div.autocomplete-wrapper-fk a.related-remove:link,
-div.autocomplete-wrapper-fk a.related-remove:visited,
-div.autocomplete-wrapper-m2m a.related-remove:link,
-div.autocomplete-wrapper-m2m a.related-remove:visited {
- background: #fff url('../img/icons/icon-autocomplete-fk-remove.png') 50% 50% no-repeat scroll;
-}
-div.autocomplete-wrapper-fk a.related-remove:hover,
-div.autocomplete-wrapper-fk a.related-remove:active,
-div.autocomplete-wrapper-m2m a.related-remove:hover,
-div.autocomplete-wrapper-m2m a.related-remove:active {
- background: #fff url('../img/icons/icon-autocomplete-fk-remove-hover.png') 50% 50% no-repeat scroll;
-}
-
-div.autocomplete-wrapper-m2m.state-focus a.related-lookup,
-div.autocomplete-wrapper-fk input.ui-autocomplete-input:focus + * + a.related-lookup,
-div.autocomplete-wrapper-m2m.state-focus a.related-remove,
-div.autocomplete-wrapper-fk input.ui-autocomplete-input:focus + * + * + a.related-remove,
-div.autocomplete-wrapper-m2m.state-focus .loader,
-div.autocomplete-wrapper-fk input.ui-autocomplete-input:focus + * + * + * + .loader {
- border-color: #999;
-}
-
-div.autocomplete-wrapper-fk div.loader,
-div.autocomplete-wrapper-m2m div.loader {
- /*display: inline-block !important;*/
- width: 23px;
- height: 23px;
- background: #fff url('../img/backgrounds/loading-small.gif') 50% 50% no-repeat scroll;
-}
-/*div.autocomplete-wrapper-m2m.state-focus a.related-remove,
-div.autocomplete-wrapper-fk input.ui-autocomplete-input:focus + * + * + a.related-remove,
-div.autocomplete-wrapper-m2m.state-focus .loader,
-div.autocomplete-wrapper-fk input.ui-autocomplete-input:focus + * + * + * + .loader {
- background-color: #e1f0f5;
-}
-*/
-div.autocomplete-wrapper-m2m a.related-remove,
-div.autocomplete-wrapper-m2m a.related-remove + div.loader {
- top: -1px;
- right: 23px;
-/* border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px;*/
-}
-
-
-
-/* Autocompletes in Changelists ......................................... */
-
-#changelist table div.autocomplete-wrapper-fk a.related-remove, #changelist table div.autocomplete-wrapper-m2m a.related-remove,
-#changelist table div.autocomplete-wrapper-fk div.loader, #changelist table div.autocomplete-wrapper-m2m div.loader {
- top: -5px;
-}
-
-/* we need to "hide" the input-field without display:none, because with display:none we can´t focus the field anymore */
-div.autocomplete-wrapper-m2m input.vManyToManyRawIdAdminField, div.autocomplete-wrapper-fk input.vForeignKeyRawIdAdminField, div.autocomplete-wrapper-fk input.vIntegerField {
- position: absolute;
- left: 0;
- top: -40px;
- width: 10px;
- height: 10px;
- color: transparent !important;
- border: 0 !important;
- background: transparent !important;
- box-shadow: none !important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important;
- cursor: default !important;
-}
\ No newline at end of file
diff --git a/gestioncof/static/grappelli/css/grappelli-skin-basic.css b/gestioncof/static/grappelli/css/grappelli-skin-basic.css
deleted file mode 100644
index 76d380fb..00000000
--- a/gestioncof/static/grappelli/css/grappelli-skin-basic.css
+++ /dev/null
@@ -1,1301 +0,0 @@
-
-
-
-/* TYPOGRAPHY
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-
-
-/* Paragraphs
------------------------------------------------------------------------------------------------------- */
-
-.module p.help,
-p.help {
- color: #999;
-}
-
-.fb_show + p.help a {
- border: 1px solid #309bbf;
-}
-.fb_show + p.help a:link, .fb_show + p.help a:visited {
- border: 1px solid #309bbf;
-}
-.fb_show + p.help a:hover, .fb_show + p.help a:active {
- border: 1px solid #444;
-}
-
-
-
-/* Links
------------------------------------------------------------------------------------------------------- */
-
-a:link, a:visited {
- color: #309bbf;
-}
-a:hover, a:active, a.selected {
- color: #444;
-}
-
-.dashboard h2 a:link, .dashboard h2 a:visited,
-.dashboard h3 a:link, .dashboard h3 a:visited {
- color: #444;
-}
-.dashboard h2 a:hover, .dashboard h2 a:active,
-.dashboard h3 a:hover, .dashboard h3 a:active {
- color: #309bbf;
-}
-
-#header a:link, #header a:visited {
- color: #59AFCC;
-}
-#header a:hover, #header a:active {
- color: #444;
-}
-
-
-
-/* Blockquote, Pre, Code
------------------------------------------------------------------------------------------------------- */
-
-blockquote {
- color: #777;
- border-left: 5px solid #ddd;
-}
-
-code, pre {
- color: #666;
- background: inherit;
-}
-
-pre.literal-block {
- background: #eee;
-}
-
-code strong {
- color: #930;
-}
-
-hr {
- color: #eee;
- border: 0;
- background-color: #eee;
-}
-
-
-
-/* RTE (Rich Text Edited)
------------------------------------------------------------------------------------------------------- */
-
-.rte h3 {
- border-top: 1px solid #d4d4d4;
- border-bottom: 1px solid #d4d4d4;
-}
-.rte .group h3 {
- border-top: 0;
-}
-.rte h3:last-child,
-.rte h4:last-child {
- border-bottom: 0;
-}
-.rte td {
- border-left: 1px solid #f4f4f4;
-}
-.rte td:first-of-type {
- border-left: 0;
-}
-.delete-confirmation ul.rte>li {
- border-top: 1px solid #fff;
- border-bottom: 1px solid #e0e0e0;
-}
-.delete-confirmation ul.rte>li:first-child {
- border-top: 0;
-}
-.delete-confirmation ul.rte>li:last-child {
- border-bottom: 0;
-}
-.delete-confirmation ul.rte>li>ul>li {
- border-top: 1px dashed #e0e0e0;
-}
-.rte blockquote table {
- border: 1px solid #d4d4d4;
-}
-
-
-
-/* Other Styles
------------------------------------------------------------------------------------------------------- */
-
-.warning {
- color: #bf3030;
-}
-.quiet {
- color: #999;
-}
-
-
-
-/* STRUCTURES
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-body {
- color: #444;
- background: #fff;
-}
-
-
-
-/* Header
------------------------------------------------------------------------------------------------------- */
-
-#header {
- color: #eee;
- background: #333;
-}
-#header a:hover, #header a:active {
- color: #ddd;
-}
-
-
-
-/* Branding, Bookmarks & User-Tools
------------------------------------------------------------------------------------------------------- */
-
-.branding {
- border-left: 1px solid #343434;
- background-color: #262626;
-}
-.admin-title {
- border-left: 1px solid #404040;
- border-right: 1px solid #303030;
-}
-
-
-/* User Tools ................................................... */
-
-#user-tools {
- border-left: 1px solid #303030;
-}
-#user-tools>li {
- border-left: 1px solid #404040;
- border-right: 1px solid #303030;
-}
-li.user-options-container.open a.user-options-handler {
- color: #eee !important;
-}
-li.user-options-container.open ul.user-options {
- border-top: 1px solid #262626;
- background: #333;
-}
-ul.user-options li {
- border-top: 1px solid #404040;
- border-bottom: 1px solid #292929;
-}
-ul.user-options li:last-child {
- border-bottom: 0;
-}
-
-
-
-/* Breadcrumbs
------------------------------------------------------------------------------------------------------- */
-
-div#breadcrumbs {
- color: #666;
- border-top: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
- background: #e6e6e6;
-}
-
-
-
-/* Messages
------------------------------------------------------------------------------------------------------- */
-
-ul.messagelist li {
- border-bottom: 1px solid #ccc;
- background-color: #e8f2da;
-}
-ul.messagelist.success li {
- background-color: #e8f2da;
-}
-ul.messagelist.error li {
- background-color: #f2e6e6;
-}
-
-
-
-/* Login Form
------------------------------------------------------------------------------------------------------- */
-
-.login .module {
- border: 0;
- background: #333;
-}
-.login .module .row {
- border-top: 1px solid #444;
- border-bottom: 1px solid #222;
-}
-.login .module label {
- color: #eee;
-}
-
-
-
-/* COMPONENTS
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-
-
-/* Modules
------------------------------------------------------------------------------------------------------- */
-
-.module {
- border: 1px solid #bdbdbd;
- background: #eee;
-}
-.rte .module {
- background: transparent;
-}
-
-
-/* Nested Modules Basics ......................................... */
-
-.module .module,
-.module fielset.module {
- border: 0;
-}
-
-
-
-/* Groups
------------------------------------------------------------------------------------------------------- */
-
-.group.collapse.closed {
- border: 2px solid #e0e0e0;
-}
-.group,
-.group.collapse.closed:hover {
- border: 2px solid #c7c7c7;
-}
-
-
-
-/* Elements in Modules & Groups
------------------------------------------------------------------------------------------------------- */
-
-
-/* 1st Level Borders Top (Dark/Bright) ......................................... */
-
-.group h2,
-.module h2 {
- border-bottom: 1px solid #bdbdbd;
- background: #d6d6d6;
-}
-.group h2 {
- border: 1px solid #bdbdbd;
-}
-.module h2+*,
-.module h2+.tools+* {
- border-top: 1px solid #fff;
-}
-.module h2+.module,
-.module h2+.tools,
-.module h2+.tools+.module {
- border-top: 0 !important;
-}
-
-
-/* 2nd Level Borders Top (Dark/Bright) ......................................... */
-
-.module .module {
- border-top: 1px solid #c7c7c7;
-}
-.module .module>*:first-child {
- border-top: 1px solid #eee;
-}
-#changelist .span-flexible .module .module:first-child {
- border-top: 0;
-}
-
-.group h3,
-.module h3 {
- border-bottom: 1px solid #c7c7c7;
- background: #e0e0e0;
-}
-.module h3+*,
-.module h3+.tools+* {
- border-top: 1px solid #fff;
-}
-.module h3+.module,
-.module h3+.tools,
-.module h3+.tools+.module {
- border-top: 0 !important;
-}
-
-
-/* 3rd Level Borders Top (Dark/Bright) ......................................... */
-
-.group .module .module,
-.module .module .module {
- border-top: 1px solid #d4d4d4;
-}
-.group .module .module>*:first-child,
-.module .module .module>*:first-child {
- border-top: 1px solid #f4f4f4;
-}
-
-.group h4,
-.module h4 {
- border-bottom: 1px solid #d4d4d4;
- background: #e8e8e8;
-}
-.module h4+*,
-.module h4+.tools+* {
- border-top: 1px solid #fff;
-}
-.module h4+.tools {
- border-top: 0 !important;
-}
-.module .description {
- border-bottom: 1px solid #d4d4d4;
-}
-
-
-
-/* Collapsible Structures
------------------------------------------------------------------------------------------------------- */
-
-.module.collapse.closed h2.collapse-handler,
-.module.collapse.closed h3.collapse-handler,
-.module.collapse.closed h4.collapse-handler {
- border-bottom: 0;
-}
-
-
-/* 1st Level Collapsible-Handler ......................................... */
-
-.collapse h2.collapse-handler {
- background: #a1d4e5;
-}
-.collapse h2.collapse-handler:hover,
-.collapse.open h2.collapse-handler {
- background: #bcdfeb;
-}
-
-
-/* 2nd Level Collapsible-Handler ......................................... */
-
-.group .collapse h3.collapse-handler,
-.module .collapse h3.collapse-handler {
- background: #cee9f2;
-}
-.group .collapse h3.collapse-handler:hover,
-.module .collapse h3.collapse-handler:hover,
-.group .collapse.open h3.collapse-handler,
-.module .collapse.open h3.collapse-handler {
- background: #e1f0f5;
-}
-.module .collapse h3.collapse-handler {
- border-top: 1px solid #e1f0f5;
-}
-
-
-/* 3rd Level Collapsible-Handler ......................................... */
-
-.group .module .collapse h4.collapse-handler,
-.module .module .collapse h4.collapse-handler {
- border-top: 1px solid #f0f7fa;
- background: #e1f0f5;
-}
-.group .collapse h4.collapse-handler:hover,
-.module .collapse h4.collapse-handler:hover,
-.group .collapse.open h4.collapse-handler,
-.module .collapse.open h4.collapse-handler {
- background: #ebf2f5;
-}
-
-
-
-/* Row
------------------------------------------------------------------------------------------------------- */
-
-.row {
- border-top: 1px solid #fff;
- border-bottom: 1px solid #e0e0e0;
- border-left: 0;
- border-right: 0;
-}
-.row.first,
-.row:first-child,
-.module input[type=hidden] + .row {
- border-top: 0 !important;
-}
-.row.last,
-.row:last-child,
-.row:last-of-type,
-fieldset.module > .row.last,
-fieldset.module > .row:last-child {
- border-bottom: 0 !important;
-}
-
-
-
-/* Cell
------------------------------------------------------------------------------------------------------- */
-
-.cell {
- border-right: 1px solid #e0e0e0;
- border-left: 1px solid #fff;
-}
-
-
-
-/* Fieldset Cell
------------------------------------------------------------------------------------------------------- */
-
-fieldset.module .cell:first-child {
- border-left: 0 !important;
-}
-fieldset.module .cell:last-child,
-fieldset.module .cell.last {
- border-right: 0 !important;
-}
-fieldset.module .cell.last + fieldset.module .cell {
- border-left: 0 !important;
-}
-
-
-/* Tabular Modules
------------------------------------------------------------------------------------------------------- */
-
-.module.table {
- border: 0;
- border-collapse: separate;
- border-spacing: 0 2px;
- background: transparent;
-}
-.module.thead,
-.module.tfoot {
- color: #aaa;
- background: transparent;
-}
-.module.table .tr,
-.module.tbody {
- background: transparent;
-}
-.module.table .th,
-.module.table .td {
- border-left: 1px solid #fff;
- border-right: 1px solid #e0e0e0;
-}
-.module.thead .th:last-of-type,
-.module.thead .td:last-of-type,
-.module.tfoot .td:last-of-type {
- border-right: 0;
-}
-.module.table .module.thead .th,
-.module.table .module.thead .td {
- border-top: 0;
- border-bottom: 0;
- background: none;
-}
-.module.tbody .th,
-.module.tbody .td {
- border-top: 1px solid #d4d4d4;
- border-bottom: 1px solid #d4d4d4;
- background: #eee;
-}
-.module.tbody .th:first-of-type,
-.module.tbody .td:first-of-type {
- border-left: 1px solid #ccc;
-}
-
-
-
-/* Add Items
------------------------------------------------------------------------------------------------------- */
-
-.module.add-item {
- border: 1px solid transparent;
- background: #fff;
-}
-
-
-
-/* Predelete
------------------------------------------------------------------------------------------------------- */
-
-.predelete h2, .predelete h2.collapse-handler,
-.predelete h3, .predelete h3.collapse-handler,
-.predelete h4, .predelete h4.collapse-handler {
- background: #f2e6e6 !important;
-}
-.predelete h2.collapse-handler:hover,
-.predelete h3.collapse-handler:hover,
-.predelete h4.collapse-handler:hover,
-.collapse.open .predelete h2.collapse-handler,
-.collapse.open .predelete h3.collapse-handler,
-.collapse.open .predelete h4.collapse-handler {
- background: #f2e6e6 !important;
-}
-.predelete,
-.predelete .module,
-.predelete .th,
-.predelete .td {
- background: #f2e6e6 !important;
-}
-
-
-
-/* Selectors
------------------------------------------------------------------------------------------------------- */
-
-.selector-available, .selector-chosen {
- border: 1px solid #ccc;
- background: #ddd;
-}
-.selector h2, .inline-group .selector h2,
-.inline-related fieldset .selector-available h2, .inline-related fieldset .selector-chosen h2 {
- border: 0;
- border-bottom: 1px solid #d0d0d0;
- background: transparent;
-}
-.selector .selector-filter {
- color: #666;
- border-top: 1px solid #e4e4e4;
- border-bottom: 1px solid #e4e4e4;
-}
-.selector select[multiple=multiple] {
- border-left: 0;
- border-top: 1px solid #d0d0d0;
- border-bottom: 1px solid #d0d0d0;
-}
-
-a.selector-chooseall, a.selector-clearall {
- border-top: 1px solid #e4e4e4;
-}
-
-.selector h2 + select {
- border-top: 0;
-}
-
-a.selector-chooseall, a.selector-clearall {
- border-top: 1px solid #e4e4e4;
-}
-
-
-
-/* Link-List, Actions, Feed, Table of Contents
------------------------------------------------------------------------------------------------------- */
-
-.module.link-list,
-.module.link-list .module,
-.module.actions,
-.module.actions .module,
-.module.feed,
-.module.feed .module {
- background: #fff;
-}
-.link-list ul li,
-.feed ul li,
-.actions ul li,
-.table-of-contents ul li {
- border-top: 1px solid #fff;
- border-bottom: 1px solid #e0e0e0;
-}
-.actions ul li {
- color: #999;
-}
-.actions ul li:first-child,
-.link-list ul li:first-child,
-.feed ul li:first-child,
-.table-of-contents ul li:first-child {
- border-top: 0;
-}
-.actions ul li:last-child,
-.link-list ul li:last-child,
-.feed ul li:last-child,
-.table-of-contents ul li:last-child {
- border-bottom: 0;
-}
-.link-list ul li.selected a,
-.table-of-contents ul li.selected a {
- color: #444;
-}
-a.internal:link, a.internal:visited {}
-a.internal:hover, a.internal:active,
-.actions li.delete-link {
- color: #666;
-}
-a.external:link, a.external:visited {
- color: #83c3d9;
-}
-a.external:hover, a.external:active {
- color: #666;
-}
-
-
-
-/* Module Changelist Filters
------------------------------------------------------------------------------------------------------- */
-
-.module.changelist-filters {
- color: #666;
- border: 1px solid #d4d4d4;
-}
-
-
-
-/* Module Search & Module Filter
------------------------------------------------------------------------------------------------------- */
-
-.module.search,
-.module.filter {
- border: 0;
-}
-.module.filter .pulldown-container {
- border: 1px solid #fff;
-}
-.module.filter.open .pulldown-container {
- border-color: #ccc;
- box-shadow: 0 0 10px #444; -moz-box-shadow: 0 0 10px #444; -webkit-box-shadow: 0 0 10px #444;
-}
-
-.open a.button.toggle-filters,
-.open.selected a.button.toggle-filters {
- border-color: transparent !important;
-}
-a.button.toggle-filters:link, a.button.toggle-filters:visited {
- color: #309bbf;
- border-color: #ddd;
-}
-.selected a.button.toggle-filters:link, .selected a.button.toggle-filters:visited {
- color: #444;
- background-color: #e1f0f5;
-}
-.open a.button.toggle-filters, .selected a.button.toggle-filters,
-.selected a.button.toggle-filters:hover, .selected a.button.toggle-filters:active,
-a.button.toggle-filters:hover, a.button.toggle-filters:active {
- color: #666;
- border-color: #ccc;
- background-color: #e1f0f5;
-}
-.selected a.button.toggle-filters:link, .selected a.button.toggle-filters:visited {
- color: #666;
- border-color: #ddd;
- background-color: #e1f0f5;
-}
-.open a.button.toggle-filters,
-.open.selected a.button.toggle-filters,
-.selected a.button.toggle-filters:hover, .selected a.button.toggle-filters:active,
-a.button.toggle-filters:hover, a.button.toggle-filters:active {
- color: #666;
- border-color: #ccc;
- background-color: #e1f0f5;
-}
-
-.filter-pulldown {
- border: 1px solid transparent;
- border-top: 0;
- background: #e1f0f5;
-}
-.filter-pulldown label {
- color: #999;
-}
-
-
-
-/* Module Date Hierarchy
------------------------------------------------------------------------------------------------------- */
-
-.module.date-hierarchy {
- border: 1px solid #d9d9d9;
- background: #eee;
-}
-.module + .module.date-hierarchy .row {
- border-top: 1px solid #fff !important;
-}
-.date-hierarchy a:link, .date-hierarchy a:visited {
- color: #59afcc;
-}
-.date-hierarchy a:hover, .date-hierarchy a:active {
- color: #444;
-}
-.date-hierarchy a.date-hierarchy-back:hover, .date-hierarchy a.date-hierarchy-back:active {
- color: #666;
-}
-
-
-
-/* Pagination
------------------------------------------------------------------------------------------------------- */
-
-.module.pagination {
- border: 1px solid #d9d9d9;
-}
-.module .module.pagination {
- border: 0;
-}
-ul.pagination {
- border-top: 0 !important;
-}
-ul.pagination li {
- border: 1px solid #fff;
-}
-
-ul.pagination span,
-ul.pagination a {
- border: 1px solid;
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
-}
-ul.pagination a:link, .pagination a:visited {
- color: #59afcc;
- border-color: #d9d9d9;
-}
-ul.pagination a:hover, .pagination a:active {
- color: #444;
- border-color: #bdbdbd;
- background: #e0e0e0;
-}
-ul.pagination span {
- color: #444;
- border-color: #bdbdbd;
- background: #e0e0e0;
-}
-ul.pagination li.separator span {
- border-color: transparent;
- background: transparent;
-}
-
-
-
-/* Module Changelist-Results
------------------------------------------------------------------------------------------------------- */
-
-.module.changelist-results {
- background-color: #eee !important;
-}
-
-
-
-/* Module Changelist Actions
------------------------------------------------------------------------------------------------------- */
-
-.module.changelist-actions {
- color: #ccc;
- background: #eee;
-}
-.module.changelist-actions.all-selected,
-.module.changelist-actions.all-selected + .module.changelist-results {
- background: #ffffe6 !important;
-}
-.module.changelist-actions ul li {
- border: 1px solid #444;
-}
-.module.changelist-actions ul a,
-.module.changelist-actions ul span {
- border: 1px solid;
-}
-.module.changelist-actions ul a:link, .module.changelist-actions ul a:visited {
- color: #59afcc;
- border-color: #333;
- background: #333;
-}
-.module.changelist-actions ul a:hover, .module.changelist-actions ul a:active {
- color: #ccc;
- border-color: #333;
- background: #555;
-}
-.module.changelist-actions ul span {
- color: #ccc;
- border-color: #333;
-}
-.module.changelist-actions ul span span {
- border: 0;
-}
-
-
-
-/* Module Footer
------------------------------------------------------------------------------------------------------- */
-
-.module.footer {
- border: 0;
- border-top: 1px solid #bdbdbd;
- background: #333;
-}
-
-
-
-/* Submit Row
------------------------------------------------------------------------------------------------------- */
-
-.module.submit-row {
- border: 0;
- background: transparent;
-}
-
-
-
-/* Tooltips
------------------------------------------------------------------------------------------------------- */
-
-.module.search .tooltip .tooltip-content {
- border: 1px solid #ccc;
- background: #fff;
-}
-
-
-
-/* TOOLS
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-ul.tools li {
- border-top: 0 !important;
- border-bottom: 0 !important;
-}
-
-
-
-/* H1 + Tools
------------------------------------------------------------------------------------------------------- */
-
-h1 + .tools a {
- color: #fff;
- border-radius: 15px; -moz-border-radius: 15px; -webkit-border-radius: 15px;
-}
-h1 + .tools a:link, h1 + .tools a:visited {
- background: #444;
-}
-h1 + .tools a:hover, h1 + .tools a:active {
- border-color: transparent;
- background: #309bbf;
-}
-h1 + .tools a.add-handler:link, h1 + .tools a.add-handler:visited {
- background-color: #444;
-}
-h1 + .tools a.add-handler:hover, h1 + .tools a.add-handler:active {
- background-color: #309bbf;
-}
-
-
-
-/* FORMS
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-
-
-/* Errors
------------------------------------------------------------------------------------------------------- */
-
-.errornote {
- color: #f7f7f7;
- background: #bf3030;
-}
-ul.errorlist {
- color: #bf3030;
-}
-.error input, .error select, .errors input, .errors select, .errors textarea {
- border: 1px solid #bf3030 !important;
-}
-
-
-
-/* Labels & Other Typographic Elements in Forms
------------------------------------------------------------------------------------------------------- */
-
-label {
- color: #444;
-}
-
-
-
-/* Form Elements
------------------------------------------------------------------------------------------------------- */
-
-input, textarea, select, button {
- color: #666;
- border: 1px solid #bbb;
- border-color: #ccc #ddd #ddd #ccc;
- outline: 0;
-}
-input, textarea, select {
- box-shadow: 0 1px 3px #eaeaea inset; -moz-box-shadow: 0 1px 3px #eaeaea inset; -webkit-box-shadow: 0 1px 3px #eaeaea inset;
-}
-
-*:focus, input:focus, textarea:focus, select:focus {
- border-color: #999 #bbb #bbb #999;
-}
-select:focus * {
- border: 0 !important;
- outline: 0 !important;
-}
-
-
-/* Searchbar ................................................... */
-
-form#changelist-search {
- border: 1px solid #fff;
- border-radius: 15px; -moz-border-radius: 15px; -webkit-border-radius: 15px;
-}
-input#searchbar {
- border-radius: 14px; -moz-border-radius: 14px; -webkit-border-radius: 14px;
-}
-
-
-/* Select ................................................... */
-
-option,
-select[multiple=multiple] option {
- border-bottom: 1px dotted #ddd !important;
-}
-option:last-child {
- border-bottom: 0;
-}
-
-
-/* Autocomplete Fields ................................................... */
-
-.vAutocompleteSearchField,
-.vM2MAutocompleteSearchField {
- background: #eaf5f8;
-}
-
-
-/* Read Only ................................................... */
-
-input[readonly],
-textarea[readonly],
-select[readonly] {
- background: #f4f4f4;
-}
-
-
-
-/* BUTTONS
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-input[type=submit], input[type=reset], input[type=button], button {
- color: #fff;
- border: 0;
- background: #acd7e5;
-}
-
-
-/* Button Containers ................................................... */
-
-.submit-row>*[class*="-container"] {
- box-shadow: 0 0 5px #666; -moz-box-shadow: 0 0 5px #666; -webkit-box-shadow: 0 0 5px #666;
- background: #d6d6d6;
-}
-.submit-row>*[class*="-container"]:hover {
- box-shadow: 0 0 5px #777; -moz-box-shadow: 0 0 5px #777; -webkit-box-shadow: 0 0 5px #777;
- background: #d6d6d6;
-}
-.submit-row>*[class*="cancel-button-container"] {
- box-shadow: 0 0 5px #aaa; -moz-box-shadow: 0 0 5px #aaa; -webkit-box-shadow: 0 0 5px #aaa;
-}
-.footer .submit-row>*[class*="-container"],
-.footer .submit-row>*[class*="cancel-button-container"] {
- border: 1px solid #666;
- box-shadow: 0 0 5px #666; -moz-box-shadow: 0 0 5px #666; -webkit-box-shadow: 0 0 5px #666;
- background: #666;
-}
-.submit-row>*[class*="cancel-button-container"] {
- box-shadow: 0 0 5px #aaa; -moz-box-shadow: 0 0 5px #aaa; -webkit-box-shadow: 0 0 5px #aaa;
-}
-.footer .submit-row>*[class*="-container"]:hover,
-.footer .submit-row>*[class*="cancel-button-container"]:hover {
- border: 1px solid #777;
- box-shadow: 0 0 5px #777; -moz-box-shadow: 0 0 5px #777; -webkit-box-shadow: 0 0 5px #777;
- background: #777;
-}
-
-
-
-/* Buttons & Buttonlike Links
------------------------------------------------------------------------------------------------------- */
-
-.submit-row input[type=submit],
-.submit-row a.submit-link:link, .submit-row a.submit-link:visited {
- border: 1px solid #267c99;
-}
-
-input[type=submit],
-#bookmark-add-cancel,
-.submit-row a.delete-link:link, .submit-row a.delete-link:visited,
-.submit-row a.cancel-link:link, .submit-row a.cancel-link:visited,
-.submit-row input[type=button] {
- box-shadow: none !important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important;
-}
-
-.submit-row a.delete-link:link, .submit-row a.delete-link:visited {
- color: #fff;
- border: 1px solid #992626;
- background: #bf3030;
-}
-#bookmark-add-cancel,
-.submit-row a.cancel-link:link, .submit-row a.cancel-link:visited,
-.submit-row input.cancel:hover {
- color: #fff;
- border: 1px solid #444;
- background: #666;
-}
-
-input[type=submit],
-.submit-row a.submit-link:hover, .submit-row a.submit-link:active {
- color: #fff;
- background: #309bbf;
-}
-input[type=submit]:hover,
-#bookmark-add-cancel:hover,
-.submit-row a.submit-link:hover, .submit-row a.submit-link:active,
-.submit-row a.delete-link:hover, .submit-row a.delete-link:active,
-.submit-row a.cancel-link:hover, .submit-row a.cancel-link:active,
-.submit-row input.cancel {
- color: #444;
- border: 1px solid #aaa;
- background: #d6d6d6;
-}
-.footer input[type=submit]:hover,
-.footer #bookmark-add-cancel:hover,
-.footer .submit-row a.delete-link:hover, .footer .submit-row a.delete-link:active,
-.footer .submit-row a.cancel-link:hover, .footer .submit-row a.cancel-link:active {
- border: 1px solid #666;
-}
-
-button {
- background: #309bbf;
-}
-button:hover {
- background: #666;
-}
-
-button.fb_show,
-button.ui-gAutocomplete-browse,
-button.ui-gFacelist-browse,
-button.ui-gAutoSlugField-toggle,
-button.ui-datepicker-trigger,
-button.ui-timepicker-trigger,
-.tinyMCE .browse span {
- border: 1px solid #ccc;
- background-color: #e1f0f5;
-}
-button.fb_show:hover,
-button.ui-gAutocomplete-browse:hover,
-button.ui-gFacelist-browse:hover,
-button.ui-gAutoSlugField-toggle:hover,
-button.ui-datepicker-trigger:hover,
-button.ui-timepicker-trigger:hover,
-.tinyMCE .browse span:hover {
- background-color: #e1e1e1;
-}
-button.fb_show[disabled],
-button.ui-gAutocomplete-browse[disabled],
-button.ui-gFacelist-browse[disabled],
-button.ui-gAutoSlugField-toggle[disabled],
-button.ui-datepicker-trigger[disabled],
-button.ui-timepicker-trigger[disabled],
-input[disabled] + a {
- background-color: transparent !important;
- opacity: 0.3;
- cursor: auto !important;
-}
-
-
-/* Search Button ......................................... */
-
-button.search {
- border-color: transparent !important;
- background-color: transparent;
-}
-
-
-
-/* Links as Buttons
------------------------------------------------------------------------------------------------------- */
-
-a.button,
-.datecrumbs a,
-.datecrumbs span {
- border: 1px solid #e0e0e0;
-}
-
-
-/* Drop-Down Button ......................................... */
-
-a.button.drop-down[class*="selected"] {
- color: #444 !important;
- border-color: #b0b0b0;
- border-bottom-width: 0 !important;
- box-shadow: 0 -2px 3px #bbb, -2px -2px 3px #bbb, 2px -2px 3px #bbb;
- -moz-box-shadow: 0 -2px 3px #bbb, -2px -2px 3px #bbb, 2px -2px 3px #bbb;
- -webkit-box-shadow: 0 -2px 3px #bbb, -2px -2px 3px #bbb, 2px -2px 3px #bbb;
-}
-a.button.drop-down:link, a.button.drop-down:visited {
- color: #309bbf;
- background-color: #fff;
-}
-a.button.drop-down[class*="selected"],
-a.button.drop-down:hover, a.button.drop-down:active {
- color: #666;
- background-color: #e1f0f5;
-}
-
-
-/* Filebrowser & Related Lookup ......................................... */
-
-a.fb_show,
-a.related-lookup {
- border: 1px solid #ccc;
-}
-a.fb_show:link, a.fb_show:visited,
-a.related-lookup:link, a.related-lookup:visited {
- background-color: #e1f0f5;
-}
-a.fb_show:hover, a.fb_show:active,
-a.related-lookup:hover, a.related-lookup:active {
- background-color: #e1e1e1;
-}
-a.related-lookup + strong {
- color: #555;
-}
-
-
-/* Buttons & Button Links in Errors ......................................... */
-
-.error input + button,
-.error .vDateField + button,
-.error .vTimeField + button,
-.error input + a.fb_show,
-.error input + a.related-lookup,
-.error input + a.add-another,
-.errors input + button,
-.errors .vDateField + button,
-.errors .vTimeField + button,
-.errors input + a.fb_show,
-.errors input + a.related-lookup,
-.errors input + a.add-another {
- border-color: #bf3030;
-}
-
-
-/* Focused Buttons & Button Links ......................................... */
-
-input:focus + button,
-.vDateField:focus + span a,
-.vTimeField:focus + span a,
-input:focus + a.fb_show,
-input:focus + a.related-lookup,
-input:focus + a.add-another {
- border-color: #bbb;
- border-left-color: #ccc;
-}
-
-
-
-/* TABLES
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-tr.alt th, tr.alt td {
- background: #f4f4f4;
-}
-.row1 th, .row1 td {
- background: #f4f4f4;
-}
-.row2 th, .row2 td {
- background: #fff;
-}
-.selected th, .selected td {
- background: #ffd;
-}
-
-
-/* Thead ................................................... */
-
-thead th,
-tfoot td {
- color: #aaa;
- border-left: 1px solid #d4d4d4;
- border-bottom: 1px solid #d4d4d4;
- background: #eee;
-}
-thead th.sorted {
- border-bottom: 1px solid #ccc;
- background: #e0e0e0;
-}
-
-thead th a:link, thead th a:visited {
- color: #59afcc;
- border-top: 1px solid #fff;
-}
-thead th a:hover, thead th a:active,
-thead th.sorted a {
- color: #444;
-}
-thead th.sorted a {
- border-top: 1px solid #ececec;
-}
-
-
-/* Tbody ................................................... */
-
-tbody th, tbody td {
- border-top: 1px solid #fff;
- border-bottom: 1px solid #e0e0e0;
-}
-
-tfoot td {
- border-bottom: 0;
- border-top: 1px solid #d4d4d4;
-}
-
-thead th:first-child,
-tfoot td:first-child {
- border-left: 0;
-}
-
-fieldset table {
- border-right: 1px solid #eee;
-}
-
-tr.row-label td {
- border-bottom: 0;
- color: #666;
-}
-
-
-
-/* Changelist Table
------------------------------------------------------------------------------------------------------- */
-
-#changelist table {
- border: 1px solid #bdbdbd;
-}
-#changelist tbody th, #changelist tbody td {
- border: 0;
- border-top: 1px solid #e8e8e8;
- border-left: 1px solid #e0e0e0;
-}
-#changelist tbody tr:first-child th, #changelist tbody tr:first-child td {
- border-top: 1px solid #fff;
-}
-#changelist tbody tr th:first-child, #changelist tbody tr td:first-child {
- border-left: 0;
-}
-#changelist thead *[style^="display: none"] + *,
-#changelist tbody tr *[style^="display: none"] + * {
- border-left: 0;
-}
-
-
-
-/* Overrides
------------------------------------------------------------------------------------------------------- */
-
-tbody th:first-child, tbody td:first-child {
- border-left: 0;
-}
-tbody tr:last-child td, tbody tr:last-child th {
- border-bottom: 0;
-}
diff --git a/gestioncof/static/grappelli/css/grappelli-skin-default.css b/gestioncof/static/grappelli/css/grappelli-skin-default.css
deleted file mode 100644
index 186e8ae6..00000000
--- a/gestioncof/static/grappelli/css/grappelli-skin-default.css
+++ /dev/null
@@ -1,1892 +0,0 @@
-
-
-
-/* TYPOGRAPHY
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-
-
-/* Paragraphs
------------------------------------------------------------------------------------------------------- */
-
-.module p.help,
-p.help {
- color: #999;
-}
-
-p.preview a {
- display: inline-block;
- padding: 3px;
- line-height: 1px;
- border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
-}
-p.preview a:link, p.preview a:visited {
- border: 1px solid #309bbf;
-}
-p.preview a:hover, p.preview a:active {
- border: 1px solid #444;
-}
-
-
-
-/* Links
------------------------------------------------------------------------------------------------------- */
-
-a:link, a:visited {
- color: #309bbf;
-}
-a:hover, a:active, a.selected {
- color: #444;
-}
-
-.dashboard h2 a:link, .dashboard h2 a:visited,
-.dashboard h3 a:link, .dashboard h3 a:visited {
- color: #444;
-}
-.dashboard h2 a:hover, .dashboard h2 a:active,
-.dashboard h3 a:hover, .dashboard h3 a:active {
- color: #309bbf;
-}
-
-.dashboard h4 a:link, .dashboard h4 a:visited {
- color: #666;
-}
-.dashboard h4 a:hover, .dashboard h4 a:active {
- color: #309bbf;
-}
-
-#header a:link, #header a:visited {
- color: #59AFCC;
-}
-#header a:hover, #header a:active {
- color: #444;
-}
-
-
-
-/* Blockquote, Pre, Code
------------------------------------------------------------------------------------------------------- */
-
-blockquote {
- color: #777;
- border-left: 5px solid #ddd;
-}
-
-code, pre {
- color: #666;
- background: inherit;
-}
-
-pre.literal-block {
- background: #eee;
-}
-
-code strong {
- color: #930;
-}
-
-hr {
- color: #eee;
- border: 0;
- background-color: #eee;
-}
-
-
-
-/* RTE (Rich Text Edited)
------------------------------------------------------------------------------------------------------- */
-
-.rte h3 {
- border-top: 1px solid #d4d4d4;
- border-bottom: 1px solid #d4d4d4;
-}
-.rte .group h3 {
- border-top: 0;
-}
-.rte h3:last-child,
-.rte h4:last-child {
- border-bottom: 0;
- border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px;
-}
-.rte td {
- border-left: 1px solid #f4f4f4;
-}
-.rte td:first-of-type {
- border-left: 0;
-}
-.delete-confirmation ul.rte>li {
- border-top: 1px solid #fff;
- border-bottom: 1px solid #e0e0e0;
-}
-.delete-confirmation ul.rte>li:first-child {
- border-top: 0;
-}
-.delete-confirmation ul.rte>li:last-child {
- border-bottom: 0;
-}
-.delete-confirmation ul.rte>li>ul>li {
- border-top: 1px dashed #e0e0e0;
-}
-.rte blockquote table {
- border: 1px solid #d4d4d4;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
-}
-
-
-
-/* Other Styles
------------------------------------------------------------------------------------------------------- */
-
-.warning {
- color: #bf3030;
-}
-.quiet {
- color: #999;
-}
-
-
-
-/* STRUCTURES
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-body {
- color: #444;
- background: #fff;
-}
-
-
-
-/* Header
------------------------------------------------------------------------------------------------------- */
-
-#header {
- color: #eee;
- background: #333;
- background: -moz-linear-gradient(top, #444, #333);
- background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#333));
- background: -o-linear-gradient(top, #444, #333);
-}
-#header a:hover, #header a:active {
- color: #ddd;
-}
-
-
-
-/* Branding, Bookmarks & User-Tools
------------------------------------------------------------------------------------------------------- */
-
-.branding {
- border-left: 1px solid #343434;
- background-color: #262626;
-}
-.admin-title {
- border-left: 1px solid #404040;
- border-right: 1px solid #303030;
-}
-
-
-/* User Tools ................................................... */
-
-#user-tools {
- border-left: 1px solid #303030;
-}
-#user-tools>li {
- border-left: 1px solid #404040;
- border-right: 1px solid #303030;
-}
-li.user-options-container.open a.user-options-handler {
- color: #eee !important;
-}
-li.user-options-container.open ul.user-options {
- border-top: 1px solid #262626;
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
- background: #333;
-}
-ul.user-options li {
- border-top: 1px solid #404040;
- border-bottom: 1px solid #292929;
-}
-ul.user-options li:last-child {
- border-bottom: 0;
-}
-
-
-/* Navigation Menu (UL Navigation-Menu of Admin-Tools) ................................................... */
-
-ul.navigation-menu>li>a {
- border-left: 1px solid #404040;
- border-right: 1px solid #303030;
-}
-ul.navigation-menu>li.bookmark>a {
- border-right: 0;
-}
-ul.navigation-menu li ul {
- border-top: 1px solid #2a2a2a;
- border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px;
- background: #333;
-}
-ul.navigation-menu li li {
- border-top: 1px solid #404040;
- border-bottom: 1px solid #2a2a2a;
-}
-
-ul.navigation-menu li li li {
- border-top: 1px solid #303030;
- border-bottom: 1px solid #303030;
- border-bottom: 0;
-}
-ul.navigation-menu li li li li {
- border-top: 1px solid #383838;
- border-bottom: 1px solid #383838;
- border-bottom: 0;
-}
-ul.navigation-menu li li li li li {
- border-top: 1px solid #404040;
- border-bottom: 1px solid #383838;
- border-bottom: 0;
-}
-ul.navigation-menu>li>ul>li.parent {
- border-top: 1px solid #404040;
- border-bottom: 1px solid #2a2a2a;
-}
-ul.navigation-menu li ul ul {
- border-top: 0;
- border-bottom: 0;
- background: transparent;
-}
-ul.navigation-menu li.menu-item.last {
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
-}
-
-ul.navigation-menu li ul ul>li:first-child a {
- border-bottom: 0;
-}
-ul.navigation-menu li ul ul ul>li:first-child a {
- border-bottom: 0;
-}
-ul.navigation-menu li ul ul ul ul>li:first-child a {
- border-bottom: 0;
-}
-ul.navigation-menu li ul ul ul ul>li:first-child a {
- border-bottom: 0;
-}
-ul.navigation-menu li.collapse.open>a.collapse-handler,
-ul.navigation-menu li.bookmark.disabled>a,
-ul.navigation-menu li.collapse.open + li.actions {
- color: #eee !important;
-}
-ul.navigation-menu li.bookmark.disabled>a {
- cursor: default !important;
-}
-
-form#bookmark-form {
- border-right: 1px solid #303030;
-}
-form#bookmark-form button {
-/* border: 1px solid #2e2e2e;*/
-/* border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px;*/
- background-position: 50% 3px;
- background-repeat: no-repeat;
- background-color: transparent !important;
-}
-form#bookmark-form button {
- background-image: url('../img/icons/icon-bookmark_add.png');
-}
-form#bookmark-form button:hover {
-/* border: 1px solid #ccc;*/
- background-image: url('../img/icons/icon-bookmark_add-hover.png');
-/* background-color: #e6e6e6 !important;*/
-}
-form#bookmark-form button.bookmarked {
- background-image: url('../img/icons/icon-bookmark_remove.png');
-}
-form#bookmark-form button.bookmarked:hover {
- background-image: url('../img/icons/icon-bookmark_remove-hover.png');
-}
-
-
-
-/* Breadcrumbs
------------------------------------------------------------------------------------------------------- */
-
-div#breadcrumbs {
- color: #666;
- border-top: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
- background: #e6e6e6;
-}
-
-
-
-/* Messages
------------------------------------------------------------------------------------------------------- */
-
-ul.messagelist li {
- color: #fff;
- border-top: 1px solid #949494;
- border-bottom: 1px solid #949494;
- background-color: #a6a6a6;
-}
-ul.messagelist li.success {
- border-top-color: #72a629;
- border-bottom-color: #72a629;
- background-color: #83bf30;
-}
-ul.messagelist li.error,
-ul.messagelist li.warning {
- border-top-color: #a62929;
- border-bottom-color: #a62929;
- background-color: #bf3030;
-}
-ul.messagelist li + li {
- border-top: 0;
-}
-
-
-
-/* Login Form
------------------------------------------------------------------------------------------------------- */
-
-.login .module {
- border: 0;
- border-top-left-radius: 0; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0;
- border-top-right-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0;
- background: #333;
-}
-.login .module .row {
- border-top: 1px solid #444;
- border-bottom: 1px solid #222;
-}
-.login .module .row:after {
- clear: both;
- content: " ";
- display: block;
- font-size: 0;
- height: 0;
- visibility: hidden;
-}
-.login .module label {
- color: #eee;
-}
-
-
-
-/* COMPONENTS
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-
-
-/* Modules
------------------------------------------------------------------------------------------------------- */
-
-.module {
- border: 1px solid #bdbdbd;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
- background: #eee;
-}
-.rte .module {
- background: transparent;
-}
-
-
-/* Nested Modules Basics ......................................... */
-
-.module .module,
-.module fielset.module {
- border: 0;
- border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0;
-}
-.module .module:first-child {
- border-top-left-radius: 4px; -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px;
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
-}
-
-
-
-/* Groups
------------------------------------------------------------------------------------------------------- */
-
-.group {
- border-radius: 7px; -moz-border-radius: 7px; -webkit-border-radius: 7px;
-}
-
-.group.collapse.closed {
- border: 2px solid #e0e0e0;
-}
-.group,
-.group.collapse.closed:hover {
- border: 2px solid #c7c7c7;
-}
-
-
-
-/* Elements in Modules & Groups
------------------------------------------------------------------------------------------------------- */
-
-
-/* 1st Level Borders Top (Dark/Bright) ......................................... */
-
-.group h2,
-.module h2 {
- border-bottom: 1px solid #bdbdbd;
- border-top-left-radius: 4px; -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px;
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
- background: #d6d6d6;
- background: -moz-linear-gradient(top, #e3e3e3, #d6d6d6);
- background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#d6d6d6));
- background: -o-linear-gradient(top, #e3e3e3, #d6d6d6);
-}
-.group h2 {
- border: 1px solid #bdbdbd;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
-}
-.module h2+*,
-.module h2+.tools+* {
- border-top: 1px solid #fff;
-}
-.module h2+.module,
-.module h2+.tools,
-.module h2+.tools+.module {
- border-top: 0 !important;
-}
-
-
-/* 2nd Level Borders Top (Dark/Bright) ......................................... */
-
-.module .module {
- border-top: 1px solid #c7c7c7;
-}
-.module .module>*:first-child {
- border-top: 1px solid #eee;
-}
-#changelist .span-flexible .module .module:first-child {
- border-top: 0;
-}
-
-.group h3,
-.module h3 {
- border-bottom: 1px solid #c7c7c7;
- background: #e0e0e0;
- background: -moz-linear-gradient(top, #e9e9e9, #e0e0e0);
- background: -webkit-gradient(linear, left top, left bottom, from(#e9e9e9), to(#e0e0e0));
- background: -o-linear-gradient(top, #e9e9e9, #e0e0e0);
-}
-.group h3 {
- border-top-left-radius: 4px; -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px;
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
-}
-.module h3+*,
-.module h3+.tools+* {
- border-top: 1px solid #fff;
-}
-.module h3+.module,
-.module h3+.tools,
-.module h3+.tools+.module {
- border-top: 0 !important;
-}
-
-
-/* 3rd Level Borders Top (Dark/Bright) ......................................... */
-
-.group .module .module,
-.module .module .module {
- border-top: 1px solid #d4d4d4;
-}
-.group .module .module>*:first-child,
-.module .module .module>*:first-child {
- border-top: 1px solid #f4f4f4;
-}
-
-.group h4,
-.module h4 {
- border-bottom: 1px solid #d4d4d4;
- background: #e8e8e8;
- background: -moz-linear-gradient(top, #ededed, #e8e8e8);
- background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#e8e8e8));
- background: -o-linear-gradient(top, #ededed, #e8e8e8);
-}
-.module h4+*,
-.module h4+.tools+* {
- border-top: 1px solid #fff;
-}
-.module h4+.tools {
- border-top: 0 !important;
-}
-.module .description {
- border-bottom: 1px solid #d4d4d4;
-}
-.module .row.description,
-.module.table .description {
- border-bottom: 0;
-}
-
-
-
-/* Modules & Groups Overrides
------------------------------------------------------------------------------------------------------- */
-
-.module .module:last-of-type {
- border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px;
-}
-
-
-
-/* Collapsible Structures
------------------------------------------------------------------------------------------------------- */
-
-.group .module.collapse.closed h3.collapse-handler,
-.group .module.collapse.closed h4.collapse-handler,
-.collapse.closed h2.collapse-handler,
-.module .module.collapse.closed.last .collapse-handler,
-.module .module.collapse.closed:last-child .collapse-handler {
- border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px;
-}
-.module.collapse.closed h2.collapse-handler,
-.module.collapse.closed h3.collapse-handler,
-.module.collapse.closed h4.collapse-handler {
- border-bottom: 0;
-}
-
-
-/* 1st Level Collapsible-Handler ......................................... */
-
-.collapse h2.collapse-handler {
- background: #a1d4e5;
- background: -moz-linear-gradient(top, #bcdfeb, #a1d4e5);
- background: -webkit-gradient(linear, left top, left bottom, from(#bcdfeb), to(#a1d4e5));
- background: -o-linear-gradient(top, #bcdfeb, #a1d4e5);
-}
-.collapse h2.collapse-handler:hover,
-.collapse.open h2.collapse-handler {
- background: #bcdfeb;
- background: -moz-linear-gradient(top, #a1d4e5, #bcdfeb);
- background: -webkit-gradient(linear, left top, left bottom, from(#a1d4e5), to(#bcdfeb));
- background: -o-linear-gradient(top, #a1d4e5, #bcdfeb);
-}
-
-
-/* 2nd Level Collapsible-Handler ......................................... */
-
-.group .collapse h3.collapse-handler,
-.module .collapse h3.collapse-handler {
- background: #cee9f2;
- background: -moz-linear-gradient(top, #e1f0f5, #cee9f2);
- background: -webkit-gradient(linear, left top, left bottom, from(#e1f0f5), to(#cee9f2));
- background: -o-linear-gradient(top, #e1f0f5, #cee9f2);
-}
-.group .collapse h3.collapse-handler:hover,
-.module .collapse h3.collapse-handler:hover,
-.group .collapse.open h3.collapse-handler,
-.module .collapse.open h3.collapse-handler {
- background: #e1f0f5;
- background: -moz-linear-gradient(top, #cee9f2, #e1f0f5);
- background: -webkit-gradient(linear, left top, left bottom, from(#cee9f2), to(#e1f0f5));
- background: -o-linear-gradient(top, #cee9f2, #e1f0f5);
-}
-.module .collapse h3.collapse-handler {
- border-top: 1px solid #e1f0f5;
-}
-
-
-/* 3rd Level Collapsible-Handler ......................................... */
-
-.group .module .collapse > h4.collapse-handler,
-.module .module .collapse > h4.collapse-handler {
- border-top: 1px solid #f0f7fa;
- background: #e1f0f5;
- background: -moz-linear-gradient(top, #ebf2f5, #e1f0f5);
- background: -webkit-gradient(linear, left top, left bottom, from(#ebf2f5), to(#e1f0f5));
- background: -o-linear-gradient(top, #ebf2f5, #e1f0f5);
-}
-.group .collapse > h4.collapse-handler:hover,
-.module .collapse > h4.collapse-handler:hover,
-.group .collapse.open > h4.collapse-handler,
-.module .collapse.open > h4.collapse-handler {
- background: #ebf2f5;
- background: -moz-linear-gradient(top, #e1f0f5, #ebf2f5);
- background: -webkit-gradient(linear, left top, left bottom, from(#e1f0f5), to(#ebf2f5));
- background: -o-linear-gradient(top, #e1f0f5, #ebf2f5);
-}
-
-
-
-/* Row
------------------------------------------------------------------------------------------------------- */
-
-.row {
- margin: 0;
- border-top: 1px solid #fff;
- border-bottom: 1px solid #e0e0e0;
- border-left: 0;
- border-right: 0;
-}
-.row.first,
-.row:first-child,
-.module input[type=hidden] + .row {
- border-top: 0 !important;
- border-top-left-radius: 5px; -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px;
- border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;
-}
-.row.last,
-.row:last-child,
-.row:last-of-type,
-fieldset.module > .row.last,
-fieldset.module > .row:last-child {
- border-bottom: 0 !important;
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
-}
-
-
-
-/* Cell
------------------------------------------------------------------------------------------------------- */
-
-.cell {
- border-right: 1px solid #e0e0e0;
- border-left: 1px solid #fff;
-}
-
-
-
-/* Fieldset Cell
------------------------------------------------------------------------------------------------------- */
-
-fieldset.module .cell:first-child {
- border-left: 0 !important;
-}
-fieldset.module .cell:last-child,
-fieldset.module .cell.last {
- border-right: 0 !important;
-}
-fieldset.module .cell.last + fieldset.module .cell {
- border-left: 0 !important;
-}
-
-
-
-/* Tabular Modules
------------------------------------------------------------------------------------------------------- */
-
-.module.table {
- border: 0;
- border-collapse: separate;
- border-spacing: 0 2px;
- background: transparent;
-}
-.module.thead,
-.module.tfoot {
- color: #aaa;
- background: transparent;
-}
-.module.table .tr,
-.module.tbody {
- background: transparent;
-}
-.module.table .th,
-.module.table .td {
- border-left: 1px solid #fff;
- border-right: 1px solid #e0e0e0;
-}
-.module.thead .th:last-of-type,
-.module.thead .td:last-of-type,
-.module.tfoot .td:last-of-type {
- border-right: 0;
-}
-.module.table .module.thead .th,
-.module.table .module.thead .td {
- border-top: 0;
- border-bottom: 0;
- background: none;
-}
-.module.tbody .th,
-.module.tbody .td {
- border-top: 1px solid #d4d4d4;
- border-bottom: 1px solid #d4d4d4;
- background: #eee;
-}
-.module.tbody .th:first-of-type,
-.module.tbody .td:first-of-type {
- border-left: 1px solid #ccc;
- border-top-left-radius: 5px; -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px;
- border-top-right-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0;
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
-}
-.module.tbody .th:last-of-type,
-.module.tbody .td:last-of-type {
- border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
-}
-
-
-
-/* Add Items
------------------------------------------------------------------------------------------------------- */
-
-.module.add-item {
- border: 1px solid transparent;
- background: #fff;
-}
-
-
-
-/* Predelete
------------------------------------------------------------------------------------------------------- */
-
-.predelete h2, .collapse.predelete > h2.collapse-handler,
-.predelete h3, .collapse.predelete > h3.collapse-handler,
-.predelete h4, .collapse.predelete .collapse > h4.collapse-handler {
- background: #f2e6e6;
- background: -moz-linear-gradient(top, #fff2f2, #f2e6e6);
- background: -webkit-gradient(linear, left top, left bottom, from(#fff2f2), to(#f2e6e6));
- background: -o-linear-gradient(top, #fff2f2, #f2e6e6);
-}
-.collapse.predelete > h2.collapse-handler:hover,
-.collapse.predelete > h3.collapse-handler:hover,
-.predelete .collapse > h4.collapse-handler:hover,
-.collapse.open.predelete > h2.collapse-handler,
-.collapse.open.predelete > h3.collapse-handler,
-.predelete .collapse.open > h4.collapse-handler {
- background: #f2e6e6 !important;
- background: -moz-linear-gradient(top, #f2e6e6, #fff2f2) !important;
- background: -webkit-gradient(linear, left top, left bottom, from(#f2e6e6), to(#fff2f2)) !important;
- background: -o-linear-gradient(top, #f2e6e6, #fff2f2) !important;
-}
-.predelete,
-.predelete .module,
-.predelete .th,
-.predelete .td {
- background: #f2e6e6 !important;
-}
-
-
-
-/* Selectors
------------------------------------------------------------------------------------------------------- */
-
-.selector-available, .selector-chosen {
- border: 1px solid #ccc;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
- background: #ddd;
-}
-.selector h2, .inline-group .selector h2,
-.inline-related fieldset .selector-available h2, .inline-related fieldset .selector-chosen h2 {
- border: 0;
- border-bottom: 1px solid #d0d0d0;
- background: transparent;
-}
-.selector .selector-filter {
- color: #666;
- border-top: 1px solid #e4e4e4;
- border-bottom: 1px solid #e4e4e4;
- border-top-left-radius: 5px;-moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px;
- border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;
-}
-.selector h2 + .selector-filter {
- border-radius-topleft: 0; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0;
- border-radius-topright: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0;
-}
-.selector select[multiple=multiple] {
- border-left: 0;
- border-top: 1px solid #d0d0d0;
- border-bottom: 1px solid #d0d0d0;
- border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0;
-}
-
-a.selector-chooseall, a.selector-clearall {
- border-top: 1px solid #e4e4e4;
-}
-
-.selector h2 + select {
- border-top: 0;
-}
-
-a.selector-chooseall, a.selector-clearall {
- border-top: 1px solid #e4e4e4;
-}
-
-
-
-/* Link-List, Actions, Feed, Table of Contents
------------------------------------------------------------------------------------------------------- */
-
-.module.link-list,
-.module.link-list .module,
-.module.actions,
-.module.actions .module,
-.module.feed,
-.module.feed .module {
- background: #fff;
-}
-.link-list ul li,
-.feed ul li,
-.actions ul li,
-.table-of-contents ul li {
- border-top: 1px solid #fff;
- border-bottom: 1px solid #e0e0e0;
-}
-.actions ul li {
- color: #999;
-}
-.actions ul li:first-child,
-.link-list ul li:first-child,
-.feed ul li:first-child,
-.table-of-contents ul li:first-child {
- border-top: 0;
-}
-.actions ul li:last-child,
-.link-list ul li:last-child,
-.feed ul li:last-child,
-.table-of-contents ul li:last-child {
- border-bottom: 0;
-}
-.link-list ul li.selected a,
-.table-of-contents ul li.selected a {
- color: #444;
-}
-a.internal:link, a.internal:visited {}
-a.internal:hover, a.internal:active,
-.actions li.delete-link {
- color: #666;
-}
-a.external:link, a.external:visited {
- color: #83c3d9;
-}
-a.external:hover, a.external:active {
- color: #666;
-}
-
-
-
-/* Module Changelist Filters
------------------------------------------------------------------------------------------------------- */
-
-.module.changelist-filters {
- color: #666;
- border: 1px solid #d4d4d4;
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0;
- border-bottom-right-radius: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0;
-}
-.module.changelist-filters:last-of-type,
-body.filebrowser .module.changelist-filters {
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
-}
-
-
-
-/* Module Search & Module Filter
------------------------------------------------------------------------------------------------------- */
-
-.module.search,
-.module.filter {
- border: 0;
- border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;
-}
-.module.filter .pulldown-container {
- border: 1px solid #fff;
- border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px;
-}
-.module.filter.open .pulldown-container {
- border-color: #ccc;
- box-shadow: 0 0 10px #444; -moz-box-shadow: 0 0 10px #444; -webkit-box-shadow: 0 0 10px #444;
-}
-
-.open a.button.toggle-filters,
-.open.selected a.button.toggle-filters {
- border-color: transparent !important;
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0 !important; -webkit-border-bottom-left-radius: 0;
- border-bottom-right-radius: 0; -moz-border-radius-bottomright: 0 !important; -webkit-border-bottom-right-radius: 0;
-}
-a.button.toggle-filters:link, a.button.toggle-filters:visited {
- color: #309bbf;
- border-color: #ddd;
-}
-.selected a.button.toggle-filters:link, .selected a.button.toggle-filters:visited {
- color: #444;
- background-color: #e1f0f5;
- background: #e1f0f5 url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat;
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -moz-linear-gradient(top, #eee, #e0e0e0);
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#eee), to(#e0e0e0));
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -o-linear-gradient(top, #eee, #e0e0e0);
-}
-.open a.button.toggle-filters, .selected a.button.toggle-filters,
-.selected a.button.toggle-filters:hover, .selected a.button.toggle-filters:active,
-a.button.toggle-filters:hover, a.button.toggle-filters:active {
- color: #666;
- border-color: #ccc;
- background-color: #e1f0f5;
- background: #e1f0f5 url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat;
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -moz-linear-gradient(top, #f0f7fa, #e1f0f5);
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#f0f7fa), to(#e1f0f5));
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -o-linear-gradient(top, #f0f7fa, #e1f0f5);
-}
-.selected a.button.toggle-filters:link, .selected a.button.toggle-filters:visited {
- color: #666;
- border-color: #ddd;
- background-color: #e1f0f5;
- background: #e1f0f5 url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat;
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -moz-linear-gradient(top, #f0f7fa, #e1f0f5);
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#f0f7fa), to(#e1f0f5));
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -o-linear-gradient(top, #f0f7fa, #e1f0f5);
-}
-.open a.button.toggle-filters,
-.open.selected a.button.toggle-filters,
-.selected a.button.toggle-filters:hover, .selected a.button.toggle-filters:active,
-a.button.toggle-filters:hover, a.button.toggle-filters:active {
- color: #666;
- border-color: #ccc;
- background-color: #e1f0f5;
- background: #e1f0f5 url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat;
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -moz-linear-gradient(top, #f0f7fa, #e1f0f5);
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#f0f7fa), to(#e1f0f5));
- background: url('../img/icons/icon-dropdown-hover.png') 100% 3px no-repeat, -o-linear-gradient(top, #f0f7fa, #e1f0f5);
-}
-
-.filter-pulldown {
- border: 1px solid transparent;
- border-top: 0;
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
- background: #e1f0f5;
-}
-.filter-pulldown label {
- color: #999;
-}
-
-
-
-/* Module Date Hierarchy
------------------------------------------------------------------------------------------------------- */
-
-.module.date-hierarchy {
- border: 1px solid #d9d9d9;
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
- background: #eee;
- background: -moz-linear-gradient(top, #eee, #e7e7e7);
- background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#e7e7e7));
- background: -o-linear-gradient(top, #eee, #e7e7e7);
-}
-.module + .module.date-hierarchy {
- border-top-left-radius: 0; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0;
- border-top-right-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0;
-}
-.module + .module.date-hierarchy .row {
- border-top: 1px solid #fff !important;
- border-top-left-radius: 0; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0;
- border-top-right-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0;
-}
-.date-hierarchy a:link, .date-hierarchy a:visited {
- color: #59afcc;
-}
-.date-hierarchy a:hover, .date-hierarchy a:active {
- color: #444;
-}
-.date-hierarchy a.date-hierarchy-back:hover, .date-hierarchy a.date-hierarchy-back:active {
- color: #666;
-}
-
-
-
-/* Pagination
------------------------------------------------------------------------------------------------------- */
-
-.module.pagination {
- border: 1px solid #d9d9d9;
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
-}
-.module .module.pagination {
- border: 0;
-}
-ul.pagination {
- border-top: 0 !important;
-}
-ul.pagination li {
- border: 1px solid #fff;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
-}
-
-ul.pagination span,
-ul.pagination a {
- border: 1px solid;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
-}
-ul.pagination a:link, .pagination a:visited {
- color: #59afcc;
- border-color: #d9d9d9;
-}
-ul.pagination a:hover, .pagination a:active {
- color: #444;
- border-color: #bdbdbd;
- background: #e0e0e0;
- background: -moz-linear-gradient(top, #eee, #e0e0e0);
- background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#e0e0e0));
- background: -o-linear-gradient(top, #eee, #e0e0e0);
-}
-ul.pagination span {
- color: #444;
- border-color: #bdbdbd;
- background: #e0e0e0;
- background: -moz-linear-gradient(top, #eee, #e0e0e0);
- background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#e0e0e0));
- background: -o-linear-gradient(top, #eee, #e0e0e0);
-}
-ul.pagination li.separator span {
- border-color: transparent;
- background: transparent;
-}
-
-
-
-/* Module Changelist-Results
------------------------------------------------------------------------------------------------------- */
-
-.module.changelist-results {
- border-bottom-right-radius: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0;
- background-color: #eee !important;
-}
-
-
-
-/* Module Changelist Actions
------------------------------------------------------------------------------------------------------- */
-
-.changelist-actions {
- color: #ccc;
-}
-.changelist-actions.all-selected,
-.changelist-actions.all-selected + .changelist-results {
- background: #ffffe6 !important;
-}
-.changelist-actions ul li {
- border: 1px solid #444;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
-}
-.changelist-actions ul a,
-.changelist-actions ul span {
- border: 1px solid;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
-}
-.changelist-actions ul a:link, .changelist-actions ul a:visited {
- color: #59afcc;
- border-color: #333;
- background: #333;
- background: -moz-linear-gradient(top, #444, #333);
- background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#333));
- background: -o-linear-gradient(top, #444, #333);
-}
-.changelist-actions ul a:hover, .changelist-actions ul a:active {
- color: #ccc;
- border-color: #333;
- background: #555;
- background: -moz-linear-gradient(top, #666, #555);
- background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#555));
- background: -o-linear-gradient(top, #666, #555);
-}
-.changelist-actions ul span {
- color: #ccc;
- border-color: #333;
-}
-.changelist-actions ul span span {
- border: 0;
-}
-
-
-
-/* Module Footer
------------------------------------------------------------------------------------------------------- */
-
-.module.footer {
- border: 0;
- border-top: 1px solid #bdbdbd;
- border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0;
- background: #333;
- background: -moz-linear-gradient(top, #444, #333);
- background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#333));
- background: -o-linear-gradient(top, #444, #333);
-}
-
-
-
-/* Submit Row
------------------------------------------------------------------------------------------------------- */
-
-.module.submit-row {
- border: 0;
- background: transparent;
-}
-
-
-
-/* Tooltips
------------------------------------------------------------------------------------------------------- */
-
-.module.search .tooltip .tooltip-content {
- border: 1px solid #ccc;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
- background: #fff;
- box-shadow: 0 10px 50px #333; -moz-box-shadow: 0 10px 50px #333; -webkit-box-shadow: 0 10px 50px #333;
-}
-
-
-
-/* TOOLS
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-ul.tools > li {
- border-top: 0 !important;
- border-bottom: 0 !important;
-}
-
-
-
-/* H1 + Tools
------------------------------------------------------------------------------------------------------- */
-
-h1 + .tools a {
- color: #fff;
- border-radius: 15px; -moz-border-radius: 15px; -webkit-border-radius: 15px;
-}
-h1 + .tools a:link, h1 + .tools a:visited {
- background: #444;
- background: -moz-linear-gradient(top, #666, #444);
- background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
- background: -o-linear-gradient(top, #666, #444);
-}
-h1 + .tools a:hover, h1 + .tools a:active {
- border-color: transparent;
- background: #309bbf;
- background: -moz-linear-gradient(top, #39bae5, #309bbf);
- background: -webkit-gradient(linear, left top, left bottom, from(#39bae5), to(#309bbf));
- background: -o-linear-gradient(top, #39bae5, #309bbf);
-}
-
-.tools-active {
- border-color: transparent !important;
- background: #309bbf !important;
- background: -moz-linear-gradient(top, #39bae5, #309bbf) !important;
- background: -webkit-gradient(linear, left top, left bottom, from(#39bae5), to(#309bbf)) !important;
- background: -o-linear-gradient(top, #39bae5, #309bbf) !important;
-}
-
-h1 + .tools a.add-handler:link, h1 + .tools a.add-handler:visited {
- background-color: #444;
- background: #444 0 50% no-repeat scroll;
- background-image: url('../img/icons/icon-object-tools-add-handler.png'), -moz-linear-gradient(top, #666, #444);
- background-image: url('../img/icons/icon-object-tools-add-handler.png'), -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
- background-image: url('../img/icons/icon-object-tools-add-handler.png'), -o-linear-gradient(top, #666, #444);
-}
-h1 + .tools a.add-handler:hover, h1 + .tools a.add-handler:active {
- background-color: #309bbf;
- background: #309bbf 0 50% no-repeat scroll;
- background-image: url('../img/icons/icon-object-tools-add-handler.png'), -moz-linear-gradient(top, #39bae5, #309bbf);
- background-image: url('../img/icons/icon-object-tools-add-handler.png'), -webkit-gradient(linear, left top, left bottom, from(#39bae5), to(#309bbf));
- background-image: url('../img/icons/icon-object-tools-add-handler.png'), -o-linear-gradient(top, #39bae5, #309bbf);
-}
-
-
-/* 1st Level H2 + Tools ......................................... */
-
-.group h2+.tools,
-.module h2+.tools {
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
-}
-
-.module h2+.tools li {
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
-}
-.group h2+.tools,
-.module.collapse.closed h2+.tools {
- border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px;
-}
-
-
-/* 2nd Level H3 + Tools ......................................... */
-
-.group .module.collapse.closed h3+.tools,
-.group .module.collapse.closed h3+.tools li,
-.module.collapse.closed:last-child h3+.tools,
-.module.collapse.closed:last-child h3+.tools li {
- border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px;
-}
-.group h3+.tools,
-.group h3+.tools li {
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
-}
-
-
-/* 3rd Level H4 + Tools ......................................... */
-
-.module.collapse.closed:last-child h4+.tools,
-.module.collapse.closed:last-child h4+.tools li {
- border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px;
-}
-
-
-
-/* FORMS
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-
-
-/* Errors
------------------------------------------------------------------------------------------------------- */
-
-.errornote {
- color: #f7f7f7;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
- background: #bf3030;
-}
-/* little fix to accomodate the top aligned login form .. */
-.login .errornote,
-.errornote.login-errors {
- margin-bottom: 0 !important;
- padding: 8px 10px 6px !important;
- border-radius: 0px; -moz-border-radius: 0px; -webkit-border-radius: 0px;
-}
-ul.errorlist {
- color: #bf3030;
-}
-.error input, .error select, .errors input, .errors select, .errors textarea {
- border: 1px solid #bf3030 !important;
-}
-.login ul.errorlist {
- color: #d93636;
-}
-
-
-
-/* Labels & Other Typographic Elements in Forms
------------------------------------------------------------------------------------------------------- */
-
-label {
- color: #444;
-}
-
-
-
-/* Form Elements
------------------------------------------------------------------------------------------------------- */
-
-input, textarea, select, button {
- color: #666;
- border: 1px solid #ccc;
-/* border-color: #ccc #ddd #ddd #ccc;*/
- border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
- outline: 0;
-}
-input, textarea, select {
- box-shadow: 0 1px 3px #eaeaea inset; -moz-box-shadow: 0 1px 3px #eaeaea inset; -webkit-box-shadow: 0 1px 3px #eaeaea inset;
- background-color: #fff;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- input[type=file] {
- background-color: transparent;
- }
-}
-
-*:focus, input:focus, textarea:focus, select:focus {
- border-color: #999;
-}
-select:focus * {
- border: 0 !important;
- outline: 0 !important;
-}
-
-
-/* Searchbar ................................................... */
-
-form#changelist-search {
- border: 1px solid #fff;
- border-radius: 15px; -moz-border-radius: 15px; -webkit-border-radius: 15px;
-}
-input#searchbar {
- border-radius: 14px; -moz-border-radius: 14px; -webkit-border-radius: 14px;
-}
-
-
-/* Select ................................................... */
-
-option,
-select[multiple=multiple] option {
- border-bottom: 1px dotted #ddd !important;
-}
-option:last-child {
- border-bottom: 0;
-}
-
-
-/* Autocomplete Fields ................................................... */
-
-.vAutocompleteSearchField,
-.vM2MAutocompleteSearchField {
- background: #eaf5f8;
-}
-
-
-/* Read Only ................................................... */
-
-input[readonly],
-textarea[readonly],
-select[readonly] {
- background: #f4f4f4;
-}
-
-
-
-/* BUTTONS
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-input[type=submit], input[type=reset], input[type=button], button {
- color: #fff;
- border: 0;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
- background: #acd7e5;
-}
-
-
-/* Button Containers ................................................... */
-
-.submit-row>*[class*="-container"] {
- border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px;
- box-shadow: 0 0 5px #666; -moz-box-shadow: 0 0 5px #666; -webkit-box-shadow: 0 0 5px #666;
- background: #d6d6d6;
-}
-.submit-row>*[class*="-container"]:hover {
- box-shadow: 0 0 5px #777; -moz-box-shadow: 0 0 5px #777; -webkit-box-shadow: 0 0 5px #777;
- background: #d6d6d6;
-}
-.submit-row>*[class*="cancel-button-container"] {
- box-shadow: 0 0 5px #aaa; -moz-box-shadow: 0 0 5px #aaa; -webkit-box-shadow: 0 0 5px #aaa;
-}
-.footer .submit-row>*[class*="-container"],
-.footer .submit-row>*[class*="cancel-button-container"] {
- border: 1px solid #666;
- box-shadow: 0 0 5px #666; -moz-box-shadow: 0 0 5px #666; -webkit-box-shadow: 0 0 5px #666;
- background: #666;
-}
-.submit-row>*[class*="cancel-button-container"] {
- box-shadow: 0 0 5px #aaa; -moz-box-shadow: 0 0 5px #aaa; -webkit-box-shadow: 0 0 5px #aaa;
-}
-.footer .submit-row>*[class*="-container"]:hover,
-.footer .submit-row>*[class*="cancel-button-container"]:hover {
- border: 1px solid #777;
- box-shadow: 0 0 5px #777; -moz-box-shadow: 0 0 5px #777; -webkit-box-shadow: 0 0 5px #777;
- background: #777;
-}
-
-
-/* Buttons & Buttonlike Links
------------------------------------------------------------------------------------------------------- */
-
-.submit-row a.submit-link,
-.submit-row a.delete-link,
-.submit-row a.cancel-link {
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
-}
-.submit-row a.submit-link,
-.submit-row input[type=submit] {
- border: 1px solid #267c99;
-}
-
-input[type=submit],
-#bookmark-add-cancel,
-.submit-row a.delete-link:link, .submit-row a.delete-link:visited,
-.submit-row a.cancel-link:link, .submit-row a.cancel-link:visited,
-.submit-row input[type=button] {
- box-shadow: none !important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important;
-}
-
-.submit-row a.delete-link:link, .submit-row a.delete-link:visited {
- color: #fff;
- border: 1px solid #992626;
- background: #bf3030;
- background: -moz-linear-gradient(top, #d93636, #bf3030);
- background: -webkit-gradient(linear, left top, left bottom, from(#d93636), to(#bf3030));
- background: -o-linear-gradient(top, #d93636, #bf3030);
-}
-#bookmark-add-cancel,
-.submit-row a.cancel-link:link, .submit-row a.cancel-link:visited,
-.submit-row input.cancel:hover {
- color: #fff;
- border: 1px solid #444;
- background: #666;
- background: -moz-linear-gradient(top, #666, #444);
- background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
- background: -o-linear-gradient(top, #666, #444);
-}
-
-input[type=submit],
-.submit-row a.submit-link:link, .submit-row a.submit-link:visited {
- color: #fff;
- background: #309bbf;
- background: -moz-linear-gradient(top, #39bae5, #309bbf);
- background: -webkit-gradient(linear, left top, left bottom, from(#39bae5), to(#309bbf));
- background: -o-linear-gradient(top, #39bae5, #309bbf);
-}
-input[type=submit]:hover,
-#bookmark-add-cancel:hover,
-.submit-row a.submit-link:hover, .submit-row a.submit-link:active,
-.submit-row a.delete-link:hover, .submit-row a.delete-link:active,
-.submit-row a.cancel-link:hover, .submit-row a.cancel-link:active,
-.submit-row input.cancel {
- color: #444;
- border: 1px solid #aaa;
- background: #d6d6d6;
- background: -moz-linear-gradient(top, #e3e3e3, #d6d6d6);
- background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#d6d6d6));
- background: -o-linear-gradient(top, #e3e3e3, #d6d6d6);
-}
-.footer input[type=submit]:hover,
-.footer #bookmark-add-cancel:hover,
-.footer .submit-row a.delete-link:hover, .footer .submit-row a.delete-link:active,
-.footer .submit-row a.cancel-link:hover, .footer .submit-row a.cancel-link:active {
- border: 1px solid #666;
-}
-
-button.fb_show,
-button.ui-datepicker-trigger,
-button.ui-timepicker-trigger,
-button.ui-gAutocomplete-browse,
-button.ui-gAutoSlugField-toggle,
-button.ui-gFacelist-browse,
-a.button,
-.vDateField + span a,
-.vTimeField + span a,
-a.fb_show,
-a.related-lookup,
-a.add-another,
-.tinyMCE .browse span {
- border-top-left-radius: 0; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0;
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0;
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
- border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px;
-}
-
-button {
- background: #309bbf;
- background-image: -moz-linear-gradient(top, #33a6cc, #309bbf);
- background-image: -webkit-gradient(linear, left top, left bottom, from(#33a6cc), to(#309bbf));
- background-image: -o-linear-gradient(top, #33a6cc, #309bbf);
-}
-button:hover {
- background: #666;
- background-image: -moz-linear-gradient(top, #555, #444);
- background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#444));
- background-image: -o-linear-gradient(top, #555, #444);
-}
-
-button.fb_show,
-button.ui-gAutocomplete-browse,
-button.ui-gFacelist-browse,
-button.ui-gAutoSlugField-toggle,
-button.ui-datepicker-trigger,
-button.ui-timepicker-trigger,
-.tinyMCE .browse span {
- border: 1px solid #ccc;
- background-color: #e1f0f5;
-}
-button.fb_show:hover,
-button.ui-gAutocomplete-browse:hover,
-button.ui-gFacelist-browse:hover,
-button.ui-gAutoSlugField-toggle:hover,
-button.ui-datepicker-trigger:hover,
-button.ui-timepicker-trigger:hover,
-.tinyMCE .browse span:hover {
- background-color: #e1e1e1;
-}
-button.fb_show[disabled],
-button.ui-gAutocomplete-browse[disabled],
-button.ui-gFacelist-browse[disabled],
-button.ui-gAutoSlugField-toggle[disabled],
-button.ui-datepicker-trigger[disabled],
-button.ui-timepicker-trigger[disabled],
-input[disabled] + a {
- background-color: transparent !important;
- opacity: 0.3;
- cursor: auto !important;
-}
-
-
-/* Autocomplete Button ......................................... */
-
-button.ui-gAutocomplete-browse,
-button.ui-gFacelist-browse {
- background-image: url('../img/icons/icon-related-lookup.png'), -moz-linear-gradient(top, #ebf2f5, #e1f0f5);
- background-image: url('../img/icons/icon-related-lookup.png'), -webkit-gradient(linear, left top, left bottom, from(#ebf2f5), to(#e1f0f5));
- background-image: url('../img/icons/icon-related-lookup.png'), -o-linear-gradient(top, #ebf2f5, #e1f0f5);
-}
-button.ui-gAutocomplete-browse:hover,
-button.ui-gFacelist-browse:hover {
- background-image: url('../img/icons/icon-related-lookup-hover.png'), -moz-linear-gradient(top, #e1e1e1, #eee);
- background-image: url('../img/icons/icon-related-lookup-hover.png'), -webkit-gradient(linear, left top, left bottom, from(#e1e1e1), to(#eee));
- background-image: url('../img/icons/icon-related-lookup-hover.png'), -o-linear-gradient(top, #e1e1e1, #eee);
-}
-
-.errors button.ui-gAutocomplete-browse,
-.errors button.ui-gFacelist-browse {
- border-color: #bf3030 #bf3030 #bf3030 #ccc;
-}
-
-
-/* AutoSlugField Button ......................................... */
-
-/* TODO: lock/unlock icons .. */
-
-button.ui-gAutoSlugField-toggle {
- background-image: url('../img/icons/icon-related-lookup.png'), -moz-linear-gradient(top, #ebf2f5, #e1f0f5);
- background-image: url('../img/icons/icon-related-lookup.png'), -webkit-gradient(linear, left top, left bottom, from(#ebf2f5), to(#e1f0f5));
- background-image: url('../img/icons/icon-related-lookup.png'), -o-linear-gradient(top, #ebf2f5, #e1f0f5);
-}
-button.ui-gAutoSlugField-toggle:hover {
- background-image: url('../img/icons/icon-related-lookup-hover.png'), -moz-linear-gradient(top, #e1e1e1, #eee);
- background-image: url('../img/icons/icon-related-lookup-hover.png'), -webkit-gradient(linear, left top, left bottom, from(#e1e1e1), to(#eee));
- background-image: url('../img/icons/icon-related-lookup-hover.png'), -o-linear-gradient(top, #e1e1e1, #eee);
-}
-.errors button.ui-gAutoSlugField-toggle {
- border-color: #bf3030 #bf3030 #bf3030 #ccc;
-}
-
-
-/* Datepicker Button ......................................... */
-
-button.ui-datepicker-trigger {
- background-image: url('../img/icons/icon-datepicker.png'), -moz-linear-gradient(top, #ebf2f5, #e1f0f5);
- background-image: url('../img/icons/icon-datepicker.png'), -webkit-gradient(linear, left top, left bottom, from(#ebf2f5), to(#e1f0f5));
- background-image: url('../img/icons/icon-datepicker.png'), -o-linear-gradient(top, #ebf2f5, #e1f0f5);
-}
-button.ui-datepicker-trigger:hover {
- background-image: url('../img/icons/icon-datepicker-hover.png'), -moz-linear-gradient(top, #e1e1e1, #eee);
- background-image: url('../img/icons/icon-datepicker-hover.png'), -webkit-gradient(linear, left top, left bottom, from(#e1e1e1), to(#eee));
- background-image: url('../img/icons/icon-datepicker-hover.png'), -o-linear-gradient(top, #e1e1e1, #eee);
-}
-
-
-/* Timepicker Button ......................................... */
-
-button.ui-timepicker-trigger {
- background-image: url('../img/icons/icon-timepicker.png'), -moz-linear-gradient(top, #ebf2f5, #e1f0f5);
- background-image: url('../img/icons/icon-timepicker.png'), -webkit-gradient(linear, left top, left bottom, from(#ebf2f5), to(#e1f0f5));
- background-image: url('../img/icons/icon-timepicker.png'), -o-linear-gradient(top, #ebf2f5, #e1f0f5);
-}
-button.ui-timepicker-trigger:hover {
- background-image: url('../img/icons/icon-timepicker-hover.png'), -moz-linear-gradient(top, #e1e1e1, #eee);
- background-image: url('../img/icons/icon-timepicker-hover.png'), -webkit-gradient(linear, left top, left bottom, from(#e1e1e1), to(#eee));
- background-image: url('../img/icons/icon-timepicker-hover.png'), -o-linear-gradient(top, #e1e1e1, #eee);
-}
-
-
-/* Search Button ......................................... */
-
-button.search {
- border-color: transparent !important;
- background-color: transparent;
-}
-
-
-
-/* Links as Buttons
------------------------------------------------------------------------------------------------------- */
-
-a.button,
-.datecrumbs a,
-.datecrumbs span {
- border: 1px solid #e0e0e0;
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
-}
-
-
-/* Drop-Down Button ......................................... */
-
-a.button.drop-down[class*="selected"] {
- color: #444 !important;
- border-color: #b0b0b0;
- border-bottom-width: 0 !important;
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0 !important; -webkit-border-bottom-left-radius: 0;
- border-bottom-right-radius: 0; -moz-border-radius-bottomright: 0 !important; -webkit-border-bottom-right-radius: 0;
- box-shadow: 0 -2px 3px #bbb, -2px -2px 3px #bbb, 2px -2px 3px #bbb;
- -moz-box-shadow: 0 -2px 3px #bbb, -2px -2px 3px #bbb, 2px -2px 3px #bbb;
- -webkit-box-shadow: 0 -2px 3px #bbb, -2px -2px 3px #bbb, 2px -2px 3px #bbb;
-}
-a.button.drop-down:link, a.button.drop-down:visited {
- color: #309bbf;
- background-color: #fff;
-}
-a.button.drop-down[class*="selected"],
-a.button.drop-down:hover, a.button.drop-down:active {
- color: #666;
- background-color: #e1f0f5;
- background: #e1f0f5 url('../img/icons/icon-dropdown-hover.png') 3px 3px no-repeat;
- background: url('../img/icons/icon-dropdown-hover.png') 3px 3px no-repeat, -moz-linear-gradient(top, #f0f7fa, #e1f0f5) !important;
- background: url('../img/icons/icon-dropdown-hover.png') 3px 3px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#f0f7fa), to(#e1f0f5));
- background: url('../img/icons/icon-dropdown-hover.png') 3px 3px no-repeat, -o-linear-gradient(top, #f0f7fa, #e1f0f5) !important;
-}
-
-
-/* Filebrowser & Related Lookup ......................................... */
-
-a.fb_show,
-a.related-lookup {
- border: 1px solid #ccc;
-}
-a.fb_show:link, a.fb_show:visited,
-a.related-lookup:link, a.related-lookup:visited {
- background-color: #e1f0f5;
-}
-a.fb_show:hover, a.fb_show:active,
-a.related-lookup:hover, a.related-lookup:active {
- background-color: #e1e1e1;
-}
-
-a.fb_show:link, a.fb_show:visited,
-.tinyMCE .browse span {
- background-image: url('../img/icons/icon-fb-show.png'), -moz-linear-gradient(top, #ebf2f5, #e1f0f5);
- background-image: url('../img/icons/icon-fb-show.png'), -webkit-gradient(linear, left top, left bottom, from(#ebf2f5), to(#e1f0f5));
- background-image: url('../img/icons/icon-fb-show.png'), -o-linear-gradient(top, #ebf2f5, #e1f0f5);
-}
-a.fb_show:hover, a.fb_show:active,
-.tinyMCE .browse span:hover {
- background-image: url('../img/icons/icon-fb-show-hover.png'), -moz-linear-gradient(top, #e1e1e1, #eee);
- background-image: url('../img/icons/icon-fb-show-hover.png'), -webkit-gradient(linear, left top, left bottom, from(#e1e1e1), to(#eee));
- background-image: url('../img/icons/icon-fb-show-hover.png'), -o-linear-gradient(top, #e1e1e1, #eee);
-}
-a.related-lookup:link, a.related-lookup:visited {
- background-image: url('../img/icons/icon-related-lookup.png'), -moz-linear-gradient(top, #ebf2f5, #e1f0f5);
- background-image: url('../img/icons/icon-related-lookup.png'), -webkit-gradient(linear, left top, left bottom, from(#ebf2f5), to(#e1f0f5));
- background-image: url('../img/icons/icon-related-lookup.png'), -o-linear-gradient(top, #ebf2f5, #e1f0f5);
-}
-a.related-lookup:hover, a.related-lookup:active {
- background-image: url('../img/icons/icon-related-lookup-hover.png'), -moz-linear-gradient(top, #e1e1e1, #eee);
- background-image: url('../img/icons/icon-related-lookup-hover.png'), -webkit-gradient(linear, left top, left bottom, from(#e1e1e1), to(#eee));
- background-image: url('../img/icons/icon-related-lookup-hover.png'), -o-linear-gradient(top, #e1e1e1, #eee);
-}
-
-
-/* Related Lookup M2M ......................................... */
-
-a.related-lookup.m2m:link, a.related-lookup.m2m:visited,
-div.autocomplete-wrapper-m2m a.related-lookup:link, div.autocomplete-wrapper-m2m a.related-lookup:visited {
- background-image: url('../img/icons/icon-related-lookup-m2m.png'), -moz-linear-gradient(top, #ebf2f5, #e1f0f5);
- background-image: url('../img/icons/icon-related-lookup-m2m.png'), -webkit-gradient(linear, left top, left bottom, from(#ebf2f5), to(#e1f0f5));
- background-image: url('../img/icons/icon-related-lookup-m2m.png'), -o-linear-gradient(top, #ebf2f5, #e1f0f5);
-}
-a.related-lookup.m2m:hover, a.related-lookup.m2m:active,
-div.autocomplete-wrapper-m2m a.related-lookup:hover, div.autocomplete-wrapper-m2m a.related-lookup:active {
- background-image: url('../img/icons/icon-related-lookup-m2m-hover.png'), -moz-linear-gradient(top, #e1e1e1, #eee);
- background-image: url('../img/icons/icon-related-lookup-m2m-hover.png'), -webkit-gradient(linear, left top, left bottom, from(#e1e1e1), to(#eee));
- background-image: url('../img/icons/icon-related-lookup-m2m-hover.png'), -o-linear-gradient(top, #e1e1e1, #eee);
-}
-
-a.related-lookup + strong {
- color: #555;
-}
-
-
-/* Add Another ......................................... */
-
-a.add-another {
- border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
-}
-
-
-/* Buttons & Button Links in Errors ......................................... */
-
-.error input + button,
-.error .vDateField + button,
-.error .vTimeField + button,
-.error input + a.fb_show,
-.error input + a.related-lookup,
-.error input + a.add-another,
-.errors input + button,
-.errors .vDateField + button,
-.errors .vTimeField + button,
-.errors input + a.fb_show,
-.errors input + a.related-lookup,
-.errors input + a.add-another,
-.errors .autocomplete-wrapper-m2m {
- border-color: #bf3030;
-}
-
-
-/* Focused Buttons & Button Links ......................................... */
-
-input:focus + button,
-.vDateField:focus + span a,
-.vTimeField:focus + span a,
-input:focus + a.fb_show,
-input:focus + a.related-lookup,
-input:focus + a.add-another {
- border-color: #999;
- /*border-left-color: #ccc;*/
-}
-/* Reset the style for focused links in autocompletes as there is an automatically
- focused (invisible) input which causes the a.related-lookup to be "focused" though it's not */
-div.autocomplete-wrapper-fk input:focus + a.related-lookup,
-div.autocomplete-wrapper-m2m input:focus + a.related-lookup {
- border-color: #ccc !important;
-}
-
-
-/* TABLES
-–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
-
-tr.alt th, tr.alt td {
- background: #f4f4f4;
-}
-.row1 th, .row1 td {
- background: #f4f4f4;
-}
-.row2 th, .row2 td {
- background: #fff;
-}
-.selected th, .selected td {
- background: #ffd;
-}
-
-
-/* Thead ................................................... */
-
-thead th,
-tfoot td {
- color: #aaa;
- border-left: 1px solid #d4d4d4;
- border-bottom: 1px solid #d4d4d4;
- background: #eee;
- background: -moz-linear-gradient(top, #eee, #e0e0e0);
- background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#e0e0e0));
- background: -o-linear-gradient(top, #eee, #e0e0e0);
-}
-thead th:first-of-type {
- border-top-left-radius: 4px; -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px;
-}
-thead th:last-of-type {
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
-}
-thead th.sorted {
- border-bottom: 1px solid #ccc;
- background: #e0e0e0;
- background: -moz-linear-gradient(top, #e0e0e0, #eee);
- background: -webkit-gradient(linear, left top, left bottom, from(#e0e0e0), to(#eee));
- background: -o-linear-gradient(top, #e0e0e0, #eee);
-}
-
-thead th a:link, thead th a:visited {
- color: #59afcc;
- border-top: 1px solid #fff;
-}
-thead th a:hover, thead th a:active,
-thead th.sorted a {
- color: #444;
-}
-thead th.sorted a {
- border-top: 1px solid #ececec;
-}
-
-
-/* Tbody ................................................... */
-
-tbody th, tbody td {
- border-top: 1px solid #fff;
- border-bottom: 1px solid #e0e0e0;
-}
-
-tfoot td {
- border-bottom: 0;
- border-top: 1px solid #d4d4d4;
-}
-
-thead th:first-child,
-tfoot td:first-child {
- border-left: 0;
-}
-
-fieldset table {
- border-right: 1px solid #eee;
-}
-
-tr.row-label td {
- border-bottom: 0;
- color: #666;
-}
-
-
-
-/* Changelist Table
------------------------------------------------------------------------------------------------------- */
-
-#changelist table {
- border: 1px solid #bdbdbd;
-}
-#changelist tbody th, #changelist tbody td {
- border: 0;
- border-top: 1px solid #e8e8e8;
- border-left: 1px solid #e0e0e0;
-}
-#changelist tbody tr:first-child th, #changelist tbody tr:first-child td {
- border-top: 1px solid #fff;
-}
-#changelist tbody tr th:first-child, #changelist tbody tr td:first-child {
- border-left: 0;
-}
-
-#changelist .changelist-results,
-#changelist table {
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
-}
-
-#changelist thead th:first-of-type,
-#changelist thead th:first-of-type a,
-#changelist thead *:first-child[style^="display: none"] + *,
-#changelist thead *:first-child[style^="display: none"] + * a {
- border-top-left-radius: 5px; -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px;
-}
-#changelist thead th:last-of-type,
-#changelist thead th:last-of-type a {
- border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;
-}
-#changelist tbody tr:last-of-type>*:first-child,
-#changelist tbody tr:last-of-type>*:first-child[style^="display: none"] + * {
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
-}
-#changelist tbody tr:last-of-type>*:last-child,
-#changelist.editable tbody tr:last-of-type td:nth-last-child(-n+2) {
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
-}
-
-#changelist thead *[style^="display: none"] + *,
-#changelist tbody tr *[style^="display: none"] + * {
- border-left: 0;
-}
-
-
-
-/* Change History
------------------------------------------------------------------------------------------------------- */
-
-table#change-history thead th:first-child {
- border-top-left-radius: 5px; -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px;
-}
-table#change-history thead th:last-child {
- border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;
-}
-
-
-
-/* Overrides
------------------------------------------------------------------------------------------------------- */
-
-tbody th:first-child, tbody td:first-child {
- border-left: 0;
-}
-tbody tr:last-child td, tbody tr:last-child th {
- border-bottom: 0;
-}
diff --git a/gestioncof/static/grappelli/css/jquery-ui-grappelli-extensions.css b/gestioncof/static/grappelli/css/jquery-ui-grappelli-extensions.css
deleted file mode 100644
index ff519a64..00000000
--- a/gestioncof/static/grappelli/css/jquery-ui-grappelli-extensions.css
+++ /dev/null
@@ -1,611 +0,0 @@
-
-
-
-/* Widget Basics
------------------------------------------------------------------------------------------------------- */
-
-.module.ui-widget {
- border: none;
- background: #fff;
-}
-.ui-widget-content {
- border: 1px solid #ccc;
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
- background: #eee;
-}
-
-
-
-/* Sortable
------------------------------------------------------------------------------------------------------- */
-
-.ui-sortable-helper,
-.ui-sortable-placeholder {
- opacity: .8;
-}
-
-.ui-sortable-placeholder,
-.ui-sortable .module.ui-sortable-placeholder {
- border: 1px solid #bdbdbd;
- border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px;
- background: transparent url('../img/backgrounds/ui-sortable-placeholder.png') 0 0 repeat scroll !important;
-}
-.group.stacked div.ui-sortable-placeholder {
- display: block;
- margin-top: 2px !important;
-}
-.group.tabular div.ui-sortable-placeholder {
- border: 0 !important;
- overflow: hidden;
-}
-.group.tabular .ui-sortable .module.ui-sortable-placeholder .td {
- background: transparent;
-}
-.group.tabular .ui-sortable .module.ui-sortable-placeholder .th,
-.group.tabular .ui-sortable .module.ui-sortable-placeholder .td {
- padding-top: 0 !important;
- padding-bottom: 0 !important;
-}
-.group.tabular .module.ui-sortable-helper {
- border-top: 0 !important;
-}
-.group.tabular .ui-sortable-helper .th, .group.tabular .ui-sortable-helper .td {
- background: #ffffcc !important;
-}
-.group.stacked .ui-sortable-helper, .group.stacked .ui-sortable-helper .module, .group.stacked .ui-sortable-helper h2, .group.stacked .ui-sortable-helper h3, .group.stacked .ui-sortable-helper h4,
-.group.stacked .collapse.predelete.ui-sortable-helper > h3.collapse-handler,
-.group.stacked .collapse.open.predelete.ui-sortable-helper > h3.collapse-handler,
-.group.stacked .collapse.predelete.ui-sortable-helper h4.collapse-handler,
-.group.stacked .collapse.open.predelete.ui-sortable-helper h4.collapse-handler {
- background: #ffffcc !important;
-}
-
-
-
-/* Accordion
------------------------------------------------------------------------------------------------------- */
-
-
-/* Overlays */
-.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
-.ui-accordion .ui-accordion-li-fix { display: inline; }
-.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
-.ui-accordion .ui-accordion-header a {
- display: block;
- font-size: 1em;
- padding: 0 0 0 12px;
-}
-.ui-accordion .ui-accordion-header .ui-icon { display: none; }
-.ui-accordion .ui-accordion-content {
- top: 0;
- margin-top: 0;
- margin-bottom: 0;
- padding: 0;
-/* border-top: 1px solid #fff;*/
-}
-.ui-accordion .ui-accordion-content-active { display: block; }
-
-
-
-/* Datepicker
-----------------------------------*/
-.datetime br {
- display: none;
-}
-.datetimeshortcuts {
- width: 40px;
- position: relative;
- margin-left: 10px;
-}
-.datetimeshortcuts a {
- margin-left: 0 !important;
-}
-
-.ui-accordion-header {
- margin-top: 2px !important;
- cursor: pointer;
- outline: none;
-}
-.ui-accordion .ui-accordion-header a {
- padding: 0 0 0 12px;
- color: #444;
- outline: none;
-}
-.ui-accordion .ui-accordion-header {
- display: block;
- margin: 0;
- padding: 6px 0;
- outline: none;
- font-size: 12px;
- border: 1px solid #bdbdbd !important;
- background: #cee9f2;
- background: -moz-linear-gradient(top, #e1f0f5, #cee9f2);
- background: -webkit-gradient(linear, left top, left bottom, from(#e1f0f5), to(#cee9f2));
- background: -o-linear-gradient(top, #e1f0f5, #cee9f2);
-}
-
-.ui-accordion-header.ui-state-default {
- border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
-}
-.ui-accordion-header.ui-state-hover {
- background: #cee9f2;
- background: -moz-linear-gradient(top, #cee9f2, #e1f0f5);
- background: -webkit-gradient(linear, left top, left bottom, from(#cee9f2), to(#e1f0f5));
- background: -o-linear-gradient(top, #cee9f2, #e1f0f5);
-}
-.ui-accordion-header.ui-state-active {
- border-bottom: 1px solid #c7c7c7 !important;
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0;
- border-bottom-right-radius: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0;
- background: #cee9f2;
- background: -moz-linear-gradient(top, #cee9f2, #e1f0f5);
- background: -webkit-gradient(linear, left top, left bottom, from(#cee9f2), to(#e1f0f5));
- background: -o-linear-gradient(top, #cee9f2, #e1f0f5);
-}
-
-.ui-accordion-content {
- border-top: 0 !important;
- border-top-left-radius: 0; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0;
- border-top-right-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0;
-}
-.ui-accordion-content h3 {
- display: none;
-}
-.ui-accordion-content .module:first-child {
- margin-top: 0 !important;
- border-top-color: #f4f4f4 !important;
-}
-.module.accordion>.module {
- margin-bottom: 2px;
- border-top: 0 !important;
-}
-.module.accordion>.module:last-of-type {
- margin-bottom: 0;
-}
-
-
-/* Accordion Module ......................................... */
-
-.ui-accordion-header.ui-state-default,
-.module .ui-accordion-header.ui-state-default {
- border: 1px solid #bdbdbd;
- background-color: #a1d4e5;
-}
-.ui-accordion-header.ui-state-default:hover,
-.module .ui-accordion-header.ui-state-default:hover {
- background-color: #d6d6d6;
-}
-.ui-accordion-header.ui-state-active,
-.module .ui-accordion-header.ui-state-active {
- border: 1px solid #bdbdbd;
- background-color: #d6d6d6;
-}
-
-
-
-/* Accordion Module in Group......................................... */
-
-/*.group .module .ui-accordion-header.ui-state-default {
- border: 1px solid #c7c7c7;
- background-color: #cee9f2;
-}
-.group .module .ui-accordion-header.ui-state-default:hover {
- background-color: #e0e0e0;
-}
-.group .module .ui-accordion-header.ui-state-active {
- border: 1px solid #c7c7c7;
- background-color: #e0e0e0;
-}
-.group .module .ui-accordion-header {
- border-top: 1px solid #4ef;
-}
-*/
-
-
-/* Datepicker
------------------------------------------------------------------------------------------------------- */
-
-.ui-datepicker {
- position: absolute;
- display: none;
- padding: 3px 3px 0;
- width: auto !important;
- border-color: #bdbdbd;
- box-shadow: 0 10px 50px #333; -moz-box-shadow: 0 10px 50px #333; -webkit-box-shadow: 0 10px 50px #333;
-}
-.ui-datepicker .ui-datepicker-header {
- padding: 2px 0;
- height: 25px;
-}
-.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next,
-.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
- position: absolute;
- top: 4px;
- width: 20px;
- height: 30px;
- background-color: transparent;
- background-position: 50% 50%;
- background-repeat: no-repeat;
- cursor: pointer;
-}
-.ui-datepicker .ui-datepicker-prev {
- left: 3px;
- background-image: url('../img/icons/ui-datepicker-prev.png');
-}
-.ui-datepicker .ui-datepicker-prev-hover {
- left: 3px;
- border: none;
- background-image: url('../img/icons/ui-datepicker-prev-hover.png');
-}
-.ui-datepicker .ui-datepicker-next {
- right: 3px;
- background-image: url('../img/icons/ui-datepicker-next.png');
-}
-.ui-datepicker .ui-datepicker-next-hover {
- right: 3px;
- border: none;
- background-image: url('../img/icons/ui-datepicker-next-hover.png');
-}
-.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
- display: none !important;
-}
-
-
-.ui-datepicker .ui-datepicker-title {
- margin: 3px 25px 2px;
- line-height: 1.8em;
- text-align: center;
-}
-.ui-datepicker .ui-datepicker-title select {
- float:left;
- font-size:1em;
- margin: -3px 0 -1px !important;
- min-width: 30px;
-}
-.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
-.ui-datepicker select.ui-datepicker-month,
-.ui-datepicker select.ui-datepicker-year { width: 49%;}
-.ui-datepicker .ui-datepicker-title select.ui-datepicker-year {
- float: right;
-}
-.ui-datepicker table {
- width: 100%;
- font-size: 12px;
- margin: 0 0 2px;
-}
-.ui-datepicker th {
- padding: 5px 0;
- text-align: center;
- font-weight: bold;
- border: 0;
- background: transparent;
-}
-.ui-datepicker td {
- min-width: 25px;
- border: 0; padding: 1px;
-}
-.ui-datepicker td span, .ui-datepicker td a {
- padding: 4px 0 3px;
- margin:0!important;
- text-align: center;
- display:block;
- border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
-}
-.ui-datepicker td a.ui-state-hover {
- color: #fff !important;
- border-color: transparent !important;
- background: #444 !important;
-}
-.ui-datepicker td a.ui-state-active {
- background: #fff;
-}
-.ui-datepicker td a.ui-state-highlight {
- border-color: #bababa;
- background: #d6d6d6;
-}
-.ui-datepicker .ui-datepicker-buttonpane {
- background-image: none;
- margin: 5px 0 0;
- padding: 0;
- border: 0;
-}
-.ui-datepicker .ui-datepicker-buttonpane button {
- float: right;
- margin: 3px 0;
- padding: 4px 5px 5px;
- height: 25px;
- color: #aaa; font-size: 11px;
- border: 1px solid #c7c7c7;
- background: transparent;
- cursor: pointer;
-}
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- .ui-datepicker .ui-datepicker-buttonpane button {
- padding: 5px 8px 4px;
- }
-}
-.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
- opacity: 1 !important;
- color: #444; font-weight: bold;
- background: #cee9f2;
-}
-.ui-datepicker .ui-datepicker-buttonpane button.ui-state-hover {
- color: #fff !important;
- border-color: #444 !important;
- background: #444 !important;
-}
-
-.ui-datepicker-multi .ui-datepicker-group-first .ui-datepicker-title,
-.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-title {
- margin-right: 5px !important;
-}
-.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-title,
-.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-title {
- margin-left: 5px !important;
-}
-
-.ui-datepicker-multi .ui-datepicker-group table {
- width: 95%;
-}
-.ui-datepicker-multi .ui-datepicker-group-first table,
-.ui-datepicker-multi .ui-datepicker-group-middle table {
- margin-right: 5px !important;
-}
-.ui-datepicker-multi .ui-datepicker-group-middle table,
-.ui-datepicker-multi .ui-datepicker-group-last table {
- margin-left: 5px !important;
-}
-.ui-datepicker-multi .ui-datepicker-group-middle table {
- margin-left: 3px !important;
-}
-.ui-datepicker-multi .ui-datepicker-buttonpane {
- border: none;
-}
-
-.ui-datepicker-append {
- margin-left: 6px; color: #999; font-size: 10px;
-}
-
-.ui-datepicker td.ui-state-disabled {
- padding:1px;
- text-align: center;
-}
-.ui-datepicker td.ui-state-disabled span {
- background: #ccc;
- color: #555 !important;
- font-weight: bold;
- font-size: 11px;
- border-radius: 3px; -moz-border-radius: 3px; -webkit-borderradius: 3px;
-}
-button.ui-datepicker-close {
- float: left !important;
- margin-right: 4px !important;
-}
-
-
-
-/* Timepicker
------------------------------------------------------------------------------------------------------- */
-
-#ui-timepicker {
- position: absolute;
- display: none;
- padding: 5px 3px 3px 5px;
- width: 216px;
- border: 1px solid #bdbdbd;
- box-shadow: 0 10px 50px #333; -moz-box-shadow: 0 10px 50px #333; -webkit-box-shadow: 0 10px 50px #333;
-}
-#ui-timepicker ul {
- position: relative;
- float: left;
- clear: both;
- width: auto;
-}
-#ui-timepicker ul li.row {
- position: relative;
- float: left;
- display: block;
- margin: 0 2px 2px 0;
- padding: 2px 10px 1px;
- width: 30px;
- font-size: 11px;
- text-align: center;
- border: 0;
- border-radius: 3px; -moz-border-radius: 3px; -webkit-borderradius: 3px;
- cursor: pointer;
-}
-#ui-timepicker .row.ui-state-default {
- border: 1px solid #c7c7c7 !important;
- background: #e1f0f5;
-}
-#ui-timepicker .row.ui-state-active {
- border: 1px solid #bababa !important;
- background: #d6d6d6;
-}
-#ui-timepicker .row.ui-state-default:hover {
- color: #fff;
- border: 1px solid #666 !important;
- background: #444;
-}
-
-
-
-/* Tabs
------------------------------------------------------------------------------------------------------- */
-
-.ui-tabs {
- zoom: 1;
- border: 0 !important;
- background: transparent;
-}
-.ui-tabs .ui-tabs-nav {
- margin-top: 2px;
- padding: 0;
- color: #444;
- font-size: 12px;
- border: none;
- border-bottom: 1px solid #bdbdbd;
- border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0;
- background: none;
-}
-.ui-tabs:first-child .ui-tabs-nav {
- margin-top: 0;
-}
-.ui-tabs .ui-tabs-nav li {
- position: relative; float: left;
- border-bottom-width: 1px !important;
- margin: 0 2px -1px 0;
- padding: 0;
-}
-.ui-tabs .ui-tabs-nav li a {
- float: left;
- text-decoration: none;
- padding: 6px 10px 6px;
-}
-.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
- padding-bottom: 0px; border-bottom-width: 1px;
-}
-.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
-.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
- cursor: pointer;
-} /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
-.tab-handler.ui-state-default {
- background: #e1f0f5;
- background: -moz-linear-gradient(top, #cee9f2, #e1f0f5);
- background: -webkit-gradient(linear, left top, left bottom, from(#cee9f2), to(#e1f0f5));
- background: -o-linear-gradient(top, #cee9f2, #e1f0f5);
-}
-.tab-handler.ui-state-default:hover {
- color: #444 !important;
- border: 1px solid #c7c7c7;
- background: #cee9f2;
- background: -moz-linear-gradient(top, #e1f0f5, #cee9f2);
- background: -webkit-gradient(linear, left top, left bottom, from(#e1f0f5), to(#cee9f2));
- background: -o-linear-gradient(top, #e1f0f5, #cee9f2);
-}
-.tab-handler.ui-state-default.ui-tabs-selected {
- border: 1px solid #c7c7c7;
- border-bottom-color: #d4d4d4;
- background: #e9e9e9;
- background: -moz-linear-gradient(top, #e0e0e0, #e9e9e9);
- background: -webkit-gradient(linear, left top, left bottom, from(#e0e0e0), to(#e9e9e9));
- background: -o-linear-gradient(top, #e0e0e0, #e9e9e9);
-}
-
-
-.ui-tabs-nav li a:hover {
- color: #444 !important;
-}
-.ui-tabs-nav li.ui-tabs-selected a {
- color: #444 !important;
-}
-.ui-tabs .ui-tabs-panel {
- margin-top: 0 !important;
- padding: 0;
- display: block;
- border: 1px solid #ccc;
- border-top-left-radius: 0; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0;
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
- border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
- background: #eee;
-}
-.ui-tabs-panel h3 { display: none; }
-.ui-tabs-panel > h3 + .module {
- border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;
-}
-.ui-tabs-panel > h3 + .module > h4:first-child {
- margin-top: -1px;
-/* border-top: 0 !important;*/
- border-top-right-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
-}
-.ui-tabs .ui-tabs-hide { display: none !important; }
-
-/*.group-accordion-container h3 { display: none; }*/
-
-
-
-
-
-/* Menu
-----------------------------------*/
-.ui-menu {
- list-style:none;
- padding: 2px;
- margin: 0;
- display:block;
-}
-.ui-menu .ui-menu {
- margin-top: -3px;
-}
-.ui-menu .ui-menu-item {
- margin: 0;
- padding: 0;
- width: 100%;
-}
-.ui-menu .ui-menu-item a {
- text-decoration: none;
- display: block;
- padding: 5px 5px 4px;
-}
-.ui-menu .ui-menu-item a.ui-state-hover,
-.ui-menu .ui-menu-item a.ui-state-active {
-/* margin: -1px;*/
- border: 0 !important;
-}
-
-
-/* Autocomplete
------------------------------------------------------------------------------------------------------- */
-
-.ui-autocomplete {
- position: absolute;
- cursor: default;
- padding: 3px;
- border: 1px solid #ccc;
- border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
- background: #eee;
- box-shadow: 0 10px 50px #333; -moz-box-shadow: 0 10px 50px #333; -webkit-box-shadow: 0 10px 50px #333;
-}
-* html .ui-autocomplete {
- width: 1px;
-}
-.ui-autocomplete-category {
- font-weight: bold;
- line-height: 1.5;
- font-style: italic;
- margin: 0;
- padding: 5px;
-}
-.ui-autocomplete li:first-child span {
- display: block;
- padding: 1px 4px;
- color: #999;
- font-weight: bold;
-}
-.ui-autocomplete .ui-menu-item + .ui-menu-item {
- margin-top: 2px;
- border-top: 0 !important;
-}
-.ui-autocomplete li:first-child + li {
- margin-top: 4px;
-}
-.ui-autocomplete .ui-menu-item a {
- margin: 0;
- padding: 3px 4px;
- color: #444;
- font-weight: bold;
- border: 1px solid #c7c7c7;
- border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px;
- background: #cee9f2;
-}
-.ui-autocomplete .ui-menu-item a.ui-state-hover,
-.ui-autocomplete .ui-menu-item a:hover, .ui-autocomplete .ui-menu-item a:active {
- margin: 0 !important;
- padding: 3px 4px !important;
- color: #fff !important;
- border: 1px solid transparent !important;
- border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px;
- background: #444 !important;
-}
diff --git a/gestioncof/static/grappelli/css/reset.css b/gestioncof/static/grappelli/css/reset.css
deleted file mode 100644
index ec2ec5cd..00000000
--- a/gestioncof/static/grappelli/css/reset.css
+++ /dev/null
@@ -1,40 +0,0 @@
-/* --------------------------------------------------------------
-
- reset.css
- * Resets default browser CSS.
-
--------------------------------------------------------------- */
-
-html, body, div, span, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, code,
-del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend,
-table, caption, tbody, tfoot, thead, tr, th, td {
- margin: 0;
- padding: 0;
- border: 0;
- font-weight: inherit;
- font-style: inherit;
- font-size: 100%;
- font-family: inherit;
- vertical-align: baseline;
-}
-
-body {
- line-height: 1.5;
-}
-
-/* Tables still need 'cellspacing="0"' in the markup. */
-table { border-collapse: separate; border-spacing: 0; }
-caption, th, td { text-align: left; font-weight: normal; }
-table, td, th { vertical-align: middle; }
-
-/* Remove possible quote marks (") from
, . */
-blockquote:before, blockquote:after, q:before, q:after { content: ""; }
-blockquote, q { quotes: "" ""; }
-
-/* Remove annoying border on linked images. */
-a img { border: none; }
-
-
diff --git a/gestioncof/static/grappelli/css/structures.css b/gestioncof/static/grappelli/css/structures.css
deleted file mode 100644
index baaea07d..00000000
--- a/gestioncof/static/grappelli/css/structures.css
+++ /dev/null
@@ -1,661 +0,0 @@
-
-
-
-/* Body
------------------------------------------------------------------------------------------------------- */
-
-body {
- padding: 58px 20px 0;
- font-family: Arial, sans-serif;
- font-size: 12px;
- line-height: 16px;
-}
-body.popup {
- padding-top: 0;
-}
-
-
-
-/* Container
------------------------------------------------------------------------------------------------------- */
-
-#container {
- z-index: 0;
- position: relative;
- float: left;
- clear: both;
- margin: 0;
- padding: 0;
- width: 100%;
-}
-
-
-
-/* Header
------------------------------------------------------------------------------------------------------- */
-
-#header {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1100;
- padding: 0 20px;
- width: 100%;
- height: 30px;
- font-size: 11px;
- line-height: 14px;
- font-weight: bold;
-}
-body.filebrowser.popup #header {
- display: none;
-}
-
-
-
-/* Branding, Bookmarks & User-Tools
------------------------------------------------------------------------------------------------------- */
-
-.branding, .admin-title,
-#bookmarks li, #user-tools li {
- margin: 0;
- padding: 8px 10px;
-}
-.branding {
- display: none;
- position: relative;
- float: right;
- width: 10px;
- background: url('../img/grappelli-icon.png') 50% 50% no-repeat;
-}
-.admin-title {
- position: relative;
- float: left;
- margin: 0 0 0 -20px;
- padding-left: 20px;
- padding-right: 20px;
-}
-#header ul li {
- position: relative;
- float: left;
-}
-
-
-/* Navigation Menu (UL Navigation-Menu of Admin-Tools) ................................................... */
-
-ul.navigation-menu {
- position: relative;
- float: left;
-}
-ul.navigation-menu li {
- float: none !important;
-}
-ul.navigation-menu>li {
- position: relative;
- float: none !important;
- display: block;
- margin: 0;
-}
-ul.navigation-menu>li>a {
- display: block;
- padding: 8px 10px;
- font-size: 11px !important;
-}
-ul.navigation-menu li.bookmark,
-ul.navigation-menu li.actions {
- float: left !important;
-}
-ul.navigation-menu li ul {
- position: absolute;
- z-index: 1 !important;
- float: none !important;
- margin-top: -1px;
- padding: 0;
- min-width: 220px;
- white-space: nowrap;
-
-/* box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;*/
-}
-ul.navigation-menu>li>a+ul {
- overflow-x: hidden !important;
-/* padding-right: 20px;*/
-/* width: 500px;*/
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
- box-shadow: 0 0 20px #333; -moz-box-shadow: 0 0 20px #333; -webkit-box-shadow: 0 0 20px #333;
-}
-ul.navigation-menu>li>ul>li.parent {
- overflow-x: hidden !important;
-}
-
-ul.navigation-menu li ul ul {
- position: relative;
- float: none;
- margin-top: 0;
- margin: 0;
- padding: 0;
- width: 100%;
- overflow: inherit;
-}
-
-ul.navigation-menu li li.item-collapse.item-open {
- background: #3a3a3a;
-}
-ul.navigation-menu li li li.item-collapse.item-open {
-/* border: 1px solid #383838;*/
- -moz-border-radius: 4px;
- background: #424242;
-}
-ul.navigation-menu li li li.item-collapse.item-open + li {
-/* border: 0 !important;*/
-}
-ul.navigation-menu li li li li.item-collapse.item-open {
-/* border: 1px solid #404040;*/
- background: #4a4a4a;
-}
-ul.navigation-menu li li li li.item-collapse.oitem-pen + li {
-/* border: 0 !important;*/
-}
-ul.navigation-menu li li li li li.item-collapse.item-open {
-/* border: 1px solid #484848;*/
- background: #525252;
-}
-
-
-ul.navigation-menu li li {
-/* padding: 0 10px;*/
-}
-ul.navigation-menu li li li {
-/* margin: 0 -20px 0 -10px;*/
-/* padding: 0 10px 0 20px;*/
- box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
-}
-ul.navigation-menu li li li li {
-/* margin: 0 -10px 0 -20px;*/
-/* padding: 0 10px 0 30px;*/
-/* box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;*/
-}
-ul.navigation-menu li li li li li {
-/* margin: 0 -10px 0 -30px;*/
-/* padding: 0 10px 0 40px;*/
- overflow: hidden;
-/* box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;*/
-}
-ul.navigation-menu li li li li li li {
-/* margin: 0 0 0 -40px;*/
-/* padding: 0 10px 0 50px;*/
- overflow: hidden;
-/* box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;*/
-}
-
-
-ul.navigation-menu li li.last {
- border-bottom: 0 !important;
-}
-
-ul.navigation-menu li ul ul>li:first-child a {
-/* margin-left: -10px;*/
-/* padding-left: 10px;*/
-}
-ul.navigation-menu li li a {
- display: block;
- padding: 8px 10px;
- font-size: 11px;
-}
-ul.navigation-menu li li li a {
- padding: 4px 10px 4px 20px;
- font-size: 11px;
- white-space: normal;
-}
-ul.navigation-menu li li li li a {
- padding-left: 30px;
-}
-ul.navigation-menu li li li li li a {
- padding-left: 40px;
-}
-ul.navigation-menu li li li li li li a {
- padding-left: 50px;
-}
-ul.navigation-menu li.parent>a {
- font-size: 11px;
-}
-ul.navigation-menu li li.parent>a {
- font-size: 11px;
-}
-
-ul.navigation-menu li.item-collapse.item-closed>* {
- display: none !important;
-}
-ul.navigation-menu li.item-collapse.item-open>* {
- display: block !important;
-}
-
-ul.navigation-menu li.item-collapse a.item-collapse-handler-container {
- display: block !important;
-/* padding: 10px 0 !important;*/
-}
-
-form#bookmark-form {
- position: relative;
- float: left;
- padding: 3px 10px 1px 0;
- height: 26px;
-}
-form#bookmark-form button {
- position: relative; display: block;
- margin: 3px 0 0;
- width: 20px;
- height: 20px;
-}
-
-ul.navigation-menu li.item-collapse a.item-collapse-handler {
- position: relative;
- float: right;
- display: inline-block !important;
- right: 0;
- margin: -30px 0 -30px 0;
- padding: 0;
- width: 28px;
- height: 30px;
- cursor: pointer;
-}
-ul.navigation-menu li li li.item-collapse a.item-collapse-handler {
- margin: -22px 0;
- width: 28px;
- height: 22px;
-}
-a.item-collapse-handler-container {
- padding-right: 38px !important;
-}
-ul.navigation-menu li li.item-collapse.item-closed>a+a.item-collapse-handler:link,
-ul.navigation-menu li li.item-collapse.item-closed>a+a.item-collapse-handler:visited {
- background: transparent url("../img/icons/icon-admin_tools-dropdown.png") no-repeat scroll 50% 50%;
-}
-ul.navigation-menu li li.item-collapse.item-closed>a+a.item-collapse-handler:hover,
-ul.navigation-menu li li.item-collapse.item-closed>a+a.item-collapse-handler:active {
- background: transparent url("../img/icons/icon-admin_tools-dropdown-hover.png") no-repeat scroll 50% 50%;
-}
-ul.navigation-menu li li.item-collapse.item-open>a+a.item-collapse-handler:link,
-ul.navigation-menu li li.item-collapse.item-open>a+a.item-collapse-handler:visited {
- background: transparent url("../img/icons/icon-admin_tools-dropdown-active.png") no-repeat scroll 50% 50%;
-}
-ul.navigation-menu li li.item-collapse.item-open>a+a.item-collapse-handler:hover,
-ul.navigation-menu li li.item-collapse.item-open>a+a.item-collapse-handler:active {
- background: transparent url("../img/icons/icon-admin_tools-dropdown-active-hover.png") no-repeat scroll 50% 50%;
-}
-
-
-/* User Tools ................................................... */
-
-#user-tools {
- position: absolute;
- right: 40px;
-}
-#user-tools>li:last-child {
- padding-right: 20px;
-}
-
-#user-tools li.user-options-container {
- position: relative;
- width: 200px;
-}
-
-li.user-options-container.open a.user-options-handler {
- display: block;
-}
-ul.user-options {
- display: none;
-}
-li.user-options-container.open ul.user-options {
- display: block;
- position: absolute;
- float: none;
- clear: both;
- z-index: 1000;
- margin: 7px -10px 0;
- width: 221px;
-}
-ul.user-options li {
- float: none !important;
- clear: both;
-}
-ul.user-options li a {
- display: block;
-}
-
-
-
-/* Breadcrumbs
------------------------------------------------------------------------------------------------------- */
-
-div#breadcrumbs {
- position: fixed;
- top: 30px;
- left: 0;
- z-index: 1000;
- padding: 5px 10px 5px 20px;
- width: 100%;
- font-size: 11px;
-/* font-weight: bold;*/
- text-align: left;
-}
-div#breadcrumbs > a {
- padding: 10px 2px;
-}
-body.popup div#breadcrumbs {
- top: 0;
-}
-
-
-
-/* Messages
------------------------------------------------------------------------------------------------------- */
-
-ul.messagelist {
- position: relative;
- top: 0;
- z-index: 990;
- margin: 0 -20px;
-}
-ul.messagelist li {
- display: block;
- padding: 5px 10px 5px 20px;
- font-size: 11px;
- font-weight: bold;
-}
-body.popup .breadcrumbs + ul.messagelist {
- top: 24px;
-}
-body.filebrowser.popup ul.messagelist {
- top: 28px;
-}
-body.login ul.messagelist {
- top: -28px;
-}
-
-
-/* Masthead
------------------------------------------------------------------------------------------------------- */
-
-#masthead {
- position: relative;
- float: left;
- clear: both;
- z-index: 900;
- padding: 60px 0 10px;
- width: 100%;
-}
-
-
-
-/* Login Form
------------------------------------------------------------------------------------------------------- */
-
-div.login {
- top: -30px;
-}
-#login-form {
- margin: 0 auto;
-}
-
-
-
-/* Content
------------------------------------------------------------------------------------------------------- */
-
-#content {
- position: relative;
- float: left;
- clear: both;
- margin: 0 0 80px;
- padding: 0;
- width: auto;
-}
-#content.content-flexible {
- width: 100%;
-}
-body.filebrowser.popup #content {
- top: 28px;
-}
-
-
-
-/* Container
------------------------------------------------------------------------------------------------------- */
-
-.container,
-.container-grid {
- position: relative;
- float: left;
- clear: both;
- width: 940px;
-}
-.container-flexible {
- position: relative;
- float: none;
- clear: both;
- width: auto;
- height: 100%;
-}
-
-
-
-/* Blueprint Grid Columns & Spans
------------------------------------------------------------------------------------------------------- */
-
-.column {
- position: relative;
- float: left;
-}
-.column.centered {
- position: relative;
- float: none !important;
- margin: 0 auto !important;
-}
-.span-flexible {
- position: relative;
- width: 100%;
-}
-.container-flexible.layout-flexible-grid .span-flexible {
- float: left;
- margin-right: 20px;
- width: 100%;
-}
-.container-flexible.layout-flexible-grid .span-flexible + .column {
- float: left !important;
-}
-.container-flexible.layout-grid-flexible .column {
- float: left;
-}
-.container-flexible.layout-grid-flexible .span-flexible {
- float: left;
- width: 100%;
-}
-fieldset.module .row .column:first-child {
- margin-left: 0 !important;
-}
-fieldset.module .row .column:last-child {
- margin-right: -20px !important;
-}
-fieldset.module .row .column.span-flexible:last-child {
- margin-right: 0 !important;
-}
-.row .span-flexible,
-.row .span-flexible:last-child {
- float: none;
- width: auto;
- margin-right: 0 !important;
-}
-
-
-/* Basic Float & Margin ......................................... */
-
-.span-1, .span-2, .span-3, .span-4, .span-5, .span-6,
-.span-7, .span-8, .span-9, .span-10, .span-11, .span-12,
-.span-13, .span-14, .span-15, .span-16, .span-17, .span-18,
-.span-19, .span-20, .span-21, .span-22, .span-23, .span-24 {
-/* float: left;*/
- margin-right: 20px;
-}
-.column.last { margin-right: 0; }
-
-
-/* Column Widths ......................................... */
-
-.span-1 { width: 20px; }
-.span-2 { width: 60px; }
-.span-3 { width: 100px; }
-.span-4 { width: 140px; }
-.span-5 { width: 180px; }
-.span-6 { width: 220px; }
-.span-7 { width: 260px; }
-.span-8 { width: 300px; }
-.span-9 { width: 340px; }
-.span-10 { width: 380px; }
-.span-11 { width: 420px; }
-.span-12 { width: 460px; }
-.span-13 { width: 500px; }
-.span-14 { width: 540px; }
-.span-15 { width: 580px; }
-.span-16 { width: 620px; }
-.span-17 { width: 660px; }
-.span-18 { width: 700px; }
-.span-19 { width: 740px; }
-.span-20 { width: 780px; }
-.span-21 { width: 820px; }
-.span-22 { width: 860px; }
-.span-23 { width: 900px; }
-.span-24 { width: 940px; margin: 0; }
-
-
-/* Append empty columns ......................................... */
-
-.append-1 { padding-right: 40px; }
-.append-2 { padding-right: 80px; }
-.append-3 { padding-right: 120px; }
-.append-4 { padding-right: 160px; }
-.append-5 { padding-right: 200px; }
-.append-6 { padding-right: 240px; }
-.append-7 { padding-right: 280px; }
-.append-8 { padding-right: 320px; }
-.append-9 { padding-right: 360px; }
-.append-10 { padding-right: 400px; }
-.append-11 { padding-right: 440px; }
-.append-12 { padding-right: 480px; }
-.append-13 { padding-right: 520px; }
-.append-14 { padding-right: 560px; }
-.append-15 { padding-right: 600px; }
-.append-16 { padding-right: 640px; }
-.append-17 { padding-right: 680px; }
-.append-18 { padding-right: 720px; }
-.append-19 { padding-right: 760px; }
-.append-20 { padding-right: 800px; }
-.append-21 { padding-right: 840px; }
-.append-22 { padding-right: 880px; }
-.append-23 { padding-right: 920px; }
-
-
-/* Prepend empty columns ......................................... */
-
-.prepend-1 { padding-left: 40px; }
-.prepend-2 { padding-left: 80px; }
-.prepend-3 { padding-left: 120px; }
-.prepend-4 { padding-left: 160px; }
-.prepend-5 { padding-left: 200px; }
-.prepend-6 { padding-left: 240px; }
-.prepend-7 { padding-left: 280px; }
-.prepend-8 { padding-left: 320px; }
-.prepend-9 { padding-left: 360px; }
-.prepend-10 { padding-left: 400px; }
-.prepend-11 { padding-left: 440px; }
-.prepend-12 { padding-left: 480px; }
-.prepend-13 { padding-left: 520px; }
-.prepend-14 { padding-left: 560px; }
-.prepend-15 { padding-left: 600px; }
-.prepend-16 { padding-left: 640px; }
-.prepend-17 { padding-left: 680px; }
-.prepend-18 { padding-left: 720px; }
-.prepend-19 { padding-left: 760px; }
-.prepend-20 { padding-left: 800px; }
-.prepend-21 { padding-left: 840px; }
-.prepend-22 { padding-left: 880px; }
-.prepend-23 { padding-left: 920px; }
-
-
-/* Span-X + Span-Flexible ......................................... */
-
-.span-1 + .span-flexible { margin-left: 40px; }
-.span-2 + .span-flexible { margin-left: 80px; }
-.span-3 + .span-flexible { margin-left: 120px; }
-.span-4 + .span-flexible { margin-left: 160px; Xmin-width: 758px; }
-.span-5 + .span-flexible { margin-left: 200px; }
-.span-6 + .span-flexible { margin-left: 240px; }
-.span-7 + .span-flexible { margin-left: 280px; }
-.span-8 + .span-flexible { margin-left: 320px; }
-.span-9 + .span-flexible { margin-left: 360px; }
-.span-10 + .span-flexible { margin-left: 400px; }
-.span-11 + .span-flexible { margin-left: 440px; }
-.span-12 + .span-flexible { margin-left: 480px; }
-.span-13 + .span-flexible { margin-left: 520px; }
-.span-14 + .span-flexible { margin-left: 560px; }
-.span-15 + .span-flexible { margin-left: 600px; }
-.span-16 + .span-flexible { margin-left: 640px; }
-.span-17 + .span-flexible { margin-left: 680px; }
-.span-18 + .span-flexible { margin-left: 720px; }
-.span-19 + .span-flexible { margin-left: 760px; }
-.span-20 + .span-flexible { margin-left: 800px; }
-.span-21 + .span-flexible { margin-left: 840px; }
-.span-22 + .span-flexible { margin-left: 880px; }
-.span-23 + .span-flexible { margin-left: 920px; }
-.span-24 + .span-flexible { margin-left: 960px; }
-
-
-/* Columns in Cells ......................................... */
-
-.cell.span-1 { width: 0px; }
-.cell.span-2 { width: 40px; }
-.cell.span-3 { width: 80px; }
-.cell.span-4 { width: 120px; }
-.cell.span-5 { width: 160px; }
-.cell.span-6 { width: 200px; }
-.cell.span-7 { width: 240px; }
-.cell.span-8 { width: 280px; }
-.cell.span-9 { width: 330px; }
-.cell.span-10 { width: 360px; }
-.cell.span-11 { width: 400px; }
-.cell.span-12 { width: 440px; }
-.cell.span-13 { width: 480px; }
-.cell.span-14 { width: 520px; }
-.cell.span-15 { width: 560px; }
-.cell.span-16 { width: 600px; }
-.cell.span-17 { width: 640px; }
-.cell.span-18 { width: 680px; }
-.cell.span-19 { width: 720px; }
-.cell.span-20 { width: 760px; }
-.cell.span-21 { width: 800px; }
-.cell.span-22 { width: 840px; }
-.cell.span-23 { width: 880px; }
-.cell.span-24 { width: 920px; margin: 0; }
-
-
-/* Clearing floats without extra markup
- Based on How To Clear Floats Without Structural Markup by PiE
- [http://www.positioniseverything.net/easyclearing.html] */
-
-.clearfix:after, .container:after {
- content: ".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
-}
-.clearfix, .container { display: inline-block; }
-* html .clearfix,
-* html .container { height: 1%; }
-.clearfix, .container { display: block; }
-
-/* Regular clearing
- apply to column that should drop below previous ones. */
-
-.clear { clear: both; }
-
-
-
diff --git a/gestioncof/static/grappelli/css/tables.css b/gestioncof/static/grappelli/css/tables.css
deleted file mode 100644
index 7a79ade0..00000000
--- a/gestioncof/static/grappelli/css/tables.css
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-
-/* Basic Table Settings
------------------------------------------------------------------------------------------------------- */
-
-table {
- margin: 0;
- padding: 0;
- border-spacing: none;
-}
-td, th {
- vertical-align: top;
- padding: 10px 10px 9px;
- font-size: 11px;
- line-height: 15px;
-}
-th {
- text-align: left;
- font-size: 12px;
- font-weight: bold;
-}
-
-
-/* Thead ................................................... */
-
-thead th,
-tfoot td {
- padding: 5px 10px;
- font-size: 11px;
- line-height: 12px;
- font-weight: normal;
-}
-thead th.sorted {
- font-weight: bold;
-}
-thead th a {
- position: relative;
- display: block;
- margin: -5px -10px -4px;
- padding: 4px 10px 4px;
- height: 100% !important;
- white-space: nowrap;
-}
-thead th.ascending a:after {
- content: url('../img/icons/icon-th-ascending.png');
-}
-thead th.descending a:after {
- content: url('../img/icons/icon-th-descending.png');
-}
-
-
-/* Tbody ................................................... */
-
-thead th.optional {
- font-weight: normal !important;
-}
-tr.row-label td {
- margin-top: -1px;
- padding-top: 2px;
- padding-bottom: 0;
- font-size: 9px;
-}
-
-
-
-/* Table XFull
------------------------------------------------------------------------------------------------------- */
-
-table.xfull {
- width: 100%;
-}
-
-
-
-/* Changelist Table
------------------------------------------------------------------------------------------------------- */
-
-#changelist table {
- position: relative;
- margin: -1px !important;
-}
-
-#changelist form table tbody td, #changelist form table tbody th {
- padding-top: 10px;
- padding-bottom: 9px;
- line-height: 16px;
-}
-
-
-
-/* Orderable Tables
------------------------------------------------------------------------------------------------------- */
-
-table.orderable tbody tr td:hover {
- cursor: move;
-}
-
-table.orderable tbody tr td:first-child {
- padding-left: 14px;
-}
-
-table.orderable-initalized .order-cell, body>tr>td.order-cell {
- display: none;
-}
-
-
-
-/* Change History
------------------------------------------------------------------------------------------------------- */
-
-table#change-history {
- width: 100%;
-}
-table#change-history tbody th {
- width: 150px;
-}
-
-
-
-/* Documentation
------------------------------------------------------------------------------------------------------- */
-
-.model-index table {
- width: 100%;
-}
-.model-index table th {
- padding: 7px 10px 8px;
-}
-
-
-
-/* Other Classes
------------------------------------------------------------------------------------------------------- */
-
-table .nowrap {
- white-space: nowrap;
-}
diff --git a/gestioncof/static/grappelli/css/tools.css b/gestioncof/static/grappelli/css/tools.css
deleted file mode 100644
index 0069667a..00000000
--- a/gestioncof/static/grappelli/css/tools.css
+++ /dev/null
@@ -1,306 +0,0 @@
-
-
-
-/* Tools Basics
------------------------------------------------------------------------------------------------------- */
-
-.tools {
- position: relative;
- float: right;
- clear: both;
- padding: 6px 10px;
- font-size: 11px;
- font-weight: bold;
-}
-ul.tools {
- padding: 0;
- list-style-type: none;
- white-space: nowrap;
-}
-/* Empty breaks in Chrome 11+: Elements are not displayed initially even if they are not empty */
-/*ul.tools:empty {
- display: none;
-}*/
-ul.tools li {
- position: relative;
- float: left;
- display: block;
- overflow: hidden;
- margin-left: 5px;
- padding: 6px 0;
- min-width: 12px;
-}
-ul.tools li:last-child {
- margin-right: 5px;
-}
-
-
-
-/* H1 + Tools
------------------------------------------------------------------------------------------------------- */
-
-h1 + .tools,
-.grappelli-h1 + .tools {
- position: relative;
- float: right;
- clear: right;
- z-index: 900;
- margin-top: -34px;
- margin-bottom: -34px;
- display: inline-block;
-}
-
-h1 + .tools li,
-h1 + .tools li:last-child {
- float: left;
- margin: 0 0 0 3px;
- padding: 0;
-}
-h1 + .tools a {
- display: block;
- margin: 0;
- padding: 4px 15px;
- width: auto;
- height: 17px;
- font-size: 11px;
- opacity: .6;
-}
-h1 + .tools a:hover, h1 + .tools a:active {
- opacity: 1;
-}
-
-h1 + .tools a.add-handler:link, h1 + .tools a.add-handler:visited {
- padding-left: 30px;
- background: url('../img/icons/icon-object-tools-add-handler.png') 0 50% no-repeat scroll;
-}
-h1 + .tools a.add-handler:hover, h1 + .tools a.add-handler:active {
- background: url('../img/icons/icon-object-tools-add-handler.png') 0 50% no-repeat scroll;
-}
-
-
-/* Focused Buttons ................................................... */
-
-h1 + .tools a.focus {
- opacity: 1;
-}
-
-
-
-
-/* Tools
------------------------------------------------------------------------------------------------------- */
-
-.group .tools,
-.module .tools {
- position: relative;
- float: right;
- clear: both;
- padding: 6px 10px;
- font-size: 11px;
- font-weight: bold;
-}
-.group ul.tools,
-.module ul.tools {
- padding: 0 2px;
- list-style-type: none;
-}
-.group ul.tools li,
-.module ul.tools li {
- position: relative;
- float: left;
- display: block;
- overflow: hidden;
- margin-left: 5px;
- padding: 6px 2px;
-}
-.group ul.tools li:last-child,
-.module ul.tools li:last-child {
- margin-right: 5px;
-}
-
-
-/* 1st Level H2 + Tools ......................................... */
-
-.group h2+.tools,
-.module h2+.tools {
- top: -29px;
- right: 0;
- margin-bottom: -29px;
-}
-.group h2+.tools {
- right: 1px;
-}
-.module.collapse.closed h2+.tools {
- top: -28px;
-}
-
-
-/* 2nd Level H3 + Tools ......................................... */
-
-.module h3+.tools {
- top: -27px;
- right: 0;
- margin-bottom: -27px;
-}
-.module h3+ul.tools li {
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-
-/* 3rd Level H4 + Tools ......................................... */
-
-.module h4+.tools {
- top: -24px;
- right: 0;
- margin-bottom: -24px;
-}
-.module h4+ul.tools li {
- padding-top: 3px;
- padding-bottom: 4px;
-}
-
-
-/* Tools in Tabular Groups ......................................... */
-
-.module.table .th .tools,
-.module.table .td .tools {
- top: -5px;
- right: -20px;
- margin-left: -20px;
- margin-bottom: -15px;
-}
-.module.table .th .tools li,
-.module.table .td .tools li {
- padding-top: 10px;
- padding-bottom: 9px;
-}
-
-
-/* Links ................................................... */
-
-.tools a {
- position: relative;
- display: block;
- margin: -6px 0;
- padding: 6px 0px;
- width: 100%;
- height: 100%;
- background-position: 50% 50%;
- background-repeat: no-repeat;
-}
-
-.tools a.icon {
- margin: -6px 0;
- padding: 6px 0px;
- width: 12px;
- height: 16px;
-}
-
-.module.table .th .tools a,
-.module.table .td .tools a {
- margin: -9px 0;
- padding: 9px 0px;
-}
-.module.table .th .tools a.icon,
-.module.table .td .tools a.icon {
- margin: -9px 0;
- padding: 9px 0px;
-}
-
-
-/* Icons ................................................... */
-
-.tools a.drag-handler:link, .tools a.drag-handler:visited {
- background-image: url('../img/icons/icon-tools-drag-handler.png');
-}
-.tools a.drag-handler:hover, .tools a.drag-handler:active {
- background-image: url('../img/icons/icon-tools-drag-handler-hover.png');
-}
-.predelete-items a.drag-handler, .predelete-item a.drag-handler {
- display: none;
-}
-
-.tools a.viewsite-link:link, .tools a.viewsite-link:visited {
- background-image: url('../img/icons/icon-tools-viewsite-link.png');
- opacity: .4;
-}
-.tools a.viewsite-link:hover, .tools a.viewsite-link:active {
- background-image: url('../img/icons/icon-tools-viewsite-link-hover.png');
-}
-
-.tools a.delete-handler:link, .tools a.delete-handler:visited,
-.predelete .tools a.delete-handler:hover, .predelete .tools a.delete-handler:active {
- background-image: url('../img/icons/icon-tools-delete-handler.png');
-}
-.tools a.delete-handler:hover, .tools a.delete-handler:active,
-.predelete .tools a.delete-handler:link, .predelete .tools a.delete-handler:visited {
- background-image: url('../img/icons/icon-tools-delete-handler-hover.png');
-}
-
-.tools a.remove-handler:link, .tools a.remove-handler:visited {
- background-image: url('../img/icons/icon-tools-remove-handler.png');
-}
-.tools a.remove-handler:hover, .tools a.remove-handler:active {
- background-image: url('../img/icons/icon-tools-remove-handler-hover.png');
-}
-
-.tools a.add-handler:link, .tools a.add-handler:visited {
- background-image: url('../img/icons/icon-tools-add-handler.png');
-}
-.tools a.add-handler:hover, .tools a.add-handler:active {
- background-image: url('../img/icons/icon-tools-add-handler-hover.png');
-}
-
-.tools a.open-handler:link, .tools a.open-handler:visited {
- background-image: url('../img/icons/icon-tools-open-handler.png');
-}
-.tools a.open-handler:hover, .tools a.open-handler:active {
- background-image: url('../img/icons/icon-tools-open-handler-hover.png');
-}
-
-.tools a.close-handler:link, .tools a.close-handler:visited {
- background-image: url('../img/icons/icon-tools-close-handler.png');
-}
-.tools a.close-handler:hover, .tools a.close-handler:active {
- background-image: url('../img/icons/icon-tools-close-handler-hover.png');
-}
-
-.tools a.keep-open-handler:link, .tools a.keep-open-handler:visited {
- background-image: url('../img/icons/icon-tools-close-handler.png');
-}
-.tools a.keep-open-handler:hover, .tools a.keep-open-handler:active {
- background-image: url('../img/icons/icon-tools-close-handler-hover.png');
-}
-
-.tools a.keep-closed-handler:link, .tools a.keep-closed-handler:visited {
- background-image: url('../img/icons/icon-tools-open-handler.png');
-}
-.tools a.keep-closed-handler:hover, .tools a.keep-closed-handler:active {
- background-image: url('../img/icons/icon-tools-open-handler-hover.png');
-}
-
-.tools a.arrow-up-handler:link, .tools a.arrow-up-handler:visited {
- background-image: url('../img/icons/icon-tools-arrow-up-handler.png');
-}
-.tools a.arrow-up-handler:hover, .tools a.arrow-up-handler:active {
- background-image: url('../img/icons/icon-tools-arrow-up-handler-hover.png');
-}
-
-.tools a.arrow-down-handler:link, .tools a.arrow-down-handler:visited {
- background-image: url('../img/icons/icon-tools-arrow-down-handler.png');
-}
-.tools a.arrow-down-handler:hover, .tools a.arrow-down-handler:active {
- background-image: url('../img/icons/icon-tools-arrow-down-handler-hover.png');
-}
-
-
-.group.open h2 + .tools li.keep-closed-handler-container,
-.module.open h2 + .tools li.keep-closed-handler-container,
-.group.closed h2 + .tools li.keep-open-handler-container,
-.module.closed h2 + .tools li.keep-open-handler-container {
- display: none !important;
-}
-.dashboard-module.open h2 + .tools {
- margin-right: 5px;
-}
diff --git a/gestioncof/static/grappelli/css/typography.css b/gestioncof/static/grappelli/css/typography.css
deleted file mode 100644
index b821d7c4..00000000
--- a/gestioncof/static/grappelli/css/typography.css
+++ /dev/null
@@ -1,274 +0,0 @@
-
-/* typography.css:
- 2009 / vonautomatisch werkstaetten / vonautomatisch.at
------------------------------------------------------------------------------------------------------- */
-
-
-
-/* Headings
------------------------------------------------------------------------------------------------------- */
-
-h1, h2, h3, h4 {
- font-weight: bold;
-}
-
-h1 {
- position: relative;
- z-index: 800;
- margin: 26px 0 10px;
- font-size: 16px;
- line-height: 20px;
-}
-.pretitle + h1 {
- margin-top: 0;
-}
-h2 {
- font-size: 13px;
-}
-h3 {
- font-size: 12px;
-}
-h4, h5 {
- font-size: 11px;
-}
-
-
-
-/* Paragraphs & Images
------------------------------------------------------------------------------------------------------- */
-
-.module p.help,
-p.help {
- padding: 5px 0;
- font-size: 10px !important;
- line-height: 12px;
-}
-
-p.readonly {
- margin: 0 !important;
- padding: 3px 0 !important;
- color: #666;
- font-size: 12px;
- font-weight: bold;
-}
-
-.row img {
- font-size: 1px;
- line-height: 1px;
- vertical-align: middle;
-}
-
-.fb_show + p.help a {
- display: inline-block;
- padding: 3px;
- font-size: 0;
- line-height: 0;
-}
-.fb_show + p.help a img {
- margin: 0;
- font-size: 0;
- line-height: 0;
-}
-.container-grid > p:first-child, .container-flexible > p:first-child,
-.container-grid .column > p:first-child, .container-flexible .column > p:first-child {
- margin: 0 0 10px;
-}
-
-
-
-/* Links
------------------------------------------------------------------------------------------------------- */
-
-a {
- text-decoration: none;
- outline: none;
- cursor: pointer;
-}
-a.back {
- font-weight: bold;
-}
-
-
-
-/* Listings
------------------------------------------------------------------------------------------------------- */
-
-ul, li {
- list-style-type: none;
-}
-
-
-
-/* Blockquote, Pre, Code
------------------------------------------------------------------------------------------------------- */
-
-blockquote {
- margin-left: 2px;
- padding-left: 4px;
- font-size: 11px;
-}
-
-code, pre {
- font-size: 11px;
- font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace;
-}
-
-pre.literal-block {
- margin: 10px;
- padding: 6px 8px;
-}
-
-hr {
- clear: both;
- margin: 0;
- padding: 0;
- height: 1px;
- font-size: 1px;
- line-height: 1px;
-}
-
-
-
-/* Table Typography
------------------------------------------------------------------------------------------------------- */
-
-th.focus,
-td.focus {
- font-weight: bold;
-}
-
-
-
-/* RTE (Rich Text Edited)
------------------------------------------------------------------------------------------------------- */
-
-.rte h2.subhead {
- margin: 0;
- font-size: 12px;
-}
-.rte h3 {
- margin: 10px -10px 10px;
- padding: 7px 10px 6px;
- font-size: 12px !important;
-}
-.rte h2 + h3 {
- margin-top: -11px !important;
-}
-.rte h4 {
- margin: 10px 0 0;
- font-size: 12px;
-}
-
-.rte p {
- margin: 10px 0;
-}
-.rte .module p {
- margin: 10px 0;
- padding: 0 10px;
-}
-.rte > p:first-child {
- margin-top: 0;
-}
-
-.rte .group h2 + p,
-.rte .module h2 + p {
- margin: 5px 0;
- padding: 0 10px;
- font-size: 11px;
-}
-
-.rte table p {
- margin: 0 !important;
- padding: 0 !important;
-}
-
-/* Workaround for problem reported in django-ticket #11817 */
-.rte h2 p,
-.rte h4 p {
- margin: 0 !important;
- padding: 0 !important;
- font-weight: normal;
-}
-.rte h2 p {
- font-weight: bold !important;
-}
-.rte h4:empty,
-.rte p:empty,
-.rte hr,
-.rte br:first-child {
- display: none !important;
-}
-
-.rte ul, .rte ol {
- margin: 10px 0 0 20px;
- padding: 0 0 0 10px;
- font-weight: normal !important;
-}
-ul.rte ul, ul.rte ol,
-ol.rte ul, ol.rte ol {
- margin: 0 0 0 20px;
- font-size: 12px;
- line-height: 14px;
-}
-.rte ul li, .rte ol li {
- margin: 0;
- padding: 0;
-}
-.rte ul li {
- list-style-type: disc;
-}
-.rte ol li {
- list-style-type: decimal;
-}
-
-.delete-confirmation ul.rte>li {
- padding-bottom: 9px;
- font-weight: bold;
-}
-.delete-confirmation ul.rte>li:last-child {
- padding-bottom: 0;
-}
-.delete-confirmation ul.rte>li+li {
- padding-top: 8px !important;
-}
-.delete-confirmation ul.rte>li>ul {
- margin-top: 2px;
-}
-.delete-confirmation ul.rte>li>ul>li {
- list-style-type: none;
- margin: 0 0 0 -30px !important;
- padding: 5px 0;
-}
-.delete-confirmation ul.rte>li>ul>li:last-child {
- padding-bottom: 0;
-}
-.delete-confirmation ul.rte>li>ul>li>ul>li {
- font-size: 11px;
-}
-
-.rte dd ul, .rte dd ol {
- margin-top: 0;
-}
-.rte blockquote {
- margin: 10px;
-}
-.rte dl, .rte dt, .rte dd {
- margin: 0;
-}
-.rte dl {
- padding: 5px 10px;
-}
-.rte dt {
- font-weight: bold;
-}
-.rte dd + dt {
- margin-top: 5px;
-}
-
-
-
-/* Other Styles
------------------------------------------------------------------------------------------------------- */
-
-.small { font-size: 10px; }
-.fw-normal { font-weight: normal; }
diff --git a/gestioncof/static/grappelli/images/backgrounds/changelist-results.png b/gestioncof/static/grappelli/images/backgrounds/changelist-results.png
deleted file mode 100644
index 265beacd..00000000
Binary files a/gestioncof/static/grappelli/images/backgrounds/changelist-results.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/backgrounds/loading-small.gif b/gestioncof/static/grappelli/images/backgrounds/loading-small.gif
deleted file mode 100644
index 929a5622..00000000
Binary files a/gestioncof/static/grappelli/images/backgrounds/loading-small.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/backgrounds/messagelist.png b/gestioncof/static/grappelli/images/backgrounds/messagelist.png
deleted file mode 100644
index b6193216..00000000
Binary files a/gestioncof/static/grappelli/images/backgrounds/messagelist.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/backgrounds/nav-grabber.gif b/gestioncof/static/grappelli/images/backgrounds/nav-grabber.gif
deleted file mode 100644
index 0a784fa7..00000000
Binary files a/gestioncof/static/grappelli/images/backgrounds/nav-grabber.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/backgrounds/ui-sortable-placeholder.png b/gestioncof/static/grappelli/images/backgrounds/ui-sortable-placeholder.png
deleted file mode 100644
index f9b2ce9e..00000000
Binary files a/gestioncof/static/grappelli/images/backgrounds/ui-sortable-placeholder.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-s0e29227ce9.png b/gestioncof/static/grappelli/images/icons-s0e29227ce9.png
deleted file mode 100644
index f934ce86..00000000
Binary files a/gestioncof/static/grappelli/images/icons-s0e29227ce9.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-s2649da6b63.png b/gestioncof/static/grappelli/images/icons-s2649da6b63.png
deleted file mode 100644
index e8f05b0e..00000000
Binary files a/gestioncof/static/grappelli/images/icons-s2649da6b63.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-s4a437305c0.png b/gestioncof/static/grappelli/images/icons-s4a437305c0.png
deleted file mode 100644
index 1b0e6bb7..00000000
Binary files a/gestioncof/static/grappelli/images/icons-s4a437305c0.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-s96d5c23000.png b/gestioncof/static/grappelli/images/icons-s96d5c23000.png
deleted file mode 100644
index b0e13f71..00000000
Binary files a/gestioncof/static/grappelli/images/icons-s96d5c23000.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small-s4291b06aac.png b/gestioncof/static/grappelli/images/icons-small-s4291b06aac.png
deleted file mode 100644
index 5061ca87..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small-s4291b06aac.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small-s7d28d7943b.png b/gestioncof/static/grappelli/images/icons-small-s7d28d7943b.png
deleted file mode 100644
index c90e0fbe..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small-s7d28d7943b.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small-s9045a82f03.png b/gestioncof/static/grappelli/images/icons-small-s9045a82f03.png
deleted file mode 100644
index d1783cf2..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small-s9045a82f03.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/add-link.png b/gestioncof/static/grappelli/images/icons-small/add-link.png
deleted file mode 100644
index d3bdbd70..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/add-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/add-link_hover.png b/gestioncof/static/grappelli/images/icons-small/add-link_hover.png
deleted file mode 100644
index 821a3ff9..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/add-link_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/change-link.png b/gestioncof/static/grappelli/images/icons-small/change-link.png
deleted file mode 100644
index e5471533..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/change-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/change-link_hover.png b/gestioncof/static/grappelli/images/icons-small/change-link_hover.png
deleted file mode 100644
index 7581aae9..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/change-link_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/delete-link.png b/gestioncof/static/grappelli/images/icons-small/delete-link.png
deleted file mode 100644
index 783460d5..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/delete-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/filter-choice-selected.png b/gestioncof/static/grappelli/images/icons-small/filter-choice-selected.png
deleted file mode 100644
index 309a8fd2..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/filter-choice-selected.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/link-external.png b/gestioncof/static/grappelli/images/icons-small/link-external.png
deleted file mode 100644
index a3c6acb2..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/link-external.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/link-external_hover.png b/gestioncof/static/grappelli/images/icons-small/link-external_hover.png
deleted file mode 100644
index ae5652de..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/link-external_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/link-internal.png b/gestioncof/static/grappelli/images/icons-small/link-internal.png
deleted file mode 100644
index 254a9ff6..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/link-internal.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/link-internal_hover.png b/gestioncof/static/grappelli/images/icons-small/link-internal_hover.png
deleted file mode 100644
index e8785e98..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/link-internal_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons-small/sort-remove.png b/gestioncof/static/grappelli/images/icons-small/sort-remove.png
deleted file mode 100644
index 5f80f247..00000000
Binary files a/gestioncof/static/grappelli/images/icons-small/sort-remove.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/add-another.png b/gestioncof/static/grappelli/images/icons/add-another.png
deleted file mode 100644
index f731681b..00000000
Binary files a/gestioncof/static/grappelli/images/icons/add-another.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/add-another_hover.png b/gestioncof/static/grappelli/images/icons/add-another_hover.png
deleted file mode 100644
index b4050212..00000000
Binary files a/gestioncof/static/grappelli/images/icons/add-another_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/back-link.png b/gestioncof/static/grappelli/images/icons/back-link.png
deleted file mode 100644
index ab226db0..00000000
Binary files a/gestioncof/static/grappelli/images/icons/back-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/back-link_hover.png b/gestioncof/static/grappelli/images/icons/back-link_hover.png
deleted file mode 100644
index 0377e634..00000000
Binary files a/gestioncof/static/grappelli/images/icons/back-link_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/breadcrumbs-rtl.png b/gestioncof/static/grappelli/images/icons/breadcrumbs-rtl.png
deleted file mode 100644
index 85f3c576..00000000
Binary files a/gestioncof/static/grappelli/images/icons/breadcrumbs-rtl.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/breadcrumbs-rtl_hover.png b/gestioncof/static/grappelli/images/icons/breadcrumbs-rtl_hover.png
deleted file mode 100644
index 9d52dc13..00000000
Binary files a/gestioncof/static/grappelli/images/icons/breadcrumbs-rtl_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/breadcrumbs.png b/gestioncof/static/grappelli/images/icons/breadcrumbs.png
deleted file mode 100644
index ae474bef..00000000
Binary files a/gestioncof/static/grappelli/images/icons/breadcrumbs.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/breadcrumbs_hover.png b/gestioncof/static/grappelli/images/icons/breadcrumbs_hover.png
deleted file mode 100644
index 933d1673..00000000
Binary files a/gestioncof/static/grappelli/images/icons/breadcrumbs_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/date-hierarchy-back-rtl.png b/gestioncof/static/grappelli/images/icons/date-hierarchy-back-rtl.png
deleted file mode 100644
index a4a42a59..00000000
Binary files a/gestioncof/static/grappelli/images/icons/date-hierarchy-back-rtl.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/date-hierarchy-back-rtl_hover.png b/gestioncof/static/grappelli/images/icons/date-hierarchy-back-rtl_hover.png
deleted file mode 100644
index ade98947..00000000
Binary files a/gestioncof/static/grappelli/images/icons/date-hierarchy-back-rtl_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/date-hierarchy-back.png b/gestioncof/static/grappelli/images/icons/date-hierarchy-back.png
deleted file mode 100644
index 3a75f5a3..00000000
Binary files a/gestioncof/static/grappelli/images/icons/date-hierarchy-back.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/date-hierarchy-back_hover.png b/gestioncof/static/grappelli/images/icons/date-hierarchy-back_hover.png
deleted file mode 100644
index 2b26f44d..00000000
Binary files a/gestioncof/static/grappelli/images/icons/date-hierarchy-back_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/datepicker.png b/gestioncof/static/grappelli/images/icons/datepicker.png
deleted file mode 100644
index f1eff98f..00000000
Binary files a/gestioncof/static/grappelli/images/icons/datepicker.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/datepicker_hover.png b/gestioncof/static/grappelli/images/icons/datepicker_hover.png
deleted file mode 100644
index 31108f93..00000000
Binary files a/gestioncof/static/grappelli/images/icons/datepicker_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/datetime-now.png b/gestioncof/static/grappelli/images/icons/datetime-now.png
deleted file mode 100644
index 60ba928d..00000000
Binary files a/gestioncof/static/grappelli/images/icons/datetime-now.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/datetime-now_hover.png b/gestioncof/static/grappelli/images/icons/datetime-now_hover.png
deleted file mode 100644
index 19eb904e..00000000
Binary files a/gestioncof/static/grappelli/images/icons/datetime-now_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/form-select.png b/gestioncof/static/grappelli/images/icons/form-select.png
deleted file mode 100644
index 3591d503..00000000
Binary files a/gestioncof/static/grappelli/images/icons/form-select.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/object-tools-add-link.png b/gestioncof/static/grappelli/images/icons/object-tools-add-link.png
deleted file mode 100644
index 192b45f0..00000000
Binary files a/gestioncof/static/grappelli/images/icons/object-tools-add-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/object-tools-viewsite-link.png b/gestioncof/static/grappelli/images/icons/object-tools-viewsite-link.png
deleted file mode 100644
index cc6f3188..00000000
Binary files a/gestioncof/static/grappelli/images/icons/object-tools-viewsite-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/pulldown-handler.png b/gestioncof/static/grappelli/images/icons/pulldown-handler.png
deleted file mode 100644
index 449b3cbb..00000000
Binary files a/gestioncof/static/grappelli/images/icons/pulldown-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/pulldown-handler_hover.png b/gestioncof/static/grappelli/images/icons/pulldown-handler_hover.png
deleted file mode 100644
index 472c5ba8..00000000
Binary files a/gestioncof/static/grappelli/images/icons/pulldown-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/pulldown-handler_selected.png b/gestioncof/static/grappelli/images/icons/pulldown-handler_selected.png
deleted file mode 100644
index 472c5ba8..00000000
Binary files a/gestioncof/static/grappelli/images/icons/pulldown-handler_selected.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/related-lookup-m2m.png b/gestioncof/static/grappelli/images/icons/related-lookup-m2m.png
deleted file mode 100644
index fb8e23dc..00000000
Binary files a/gestioncof/static/grappelli/images/icons/related-lookup-m2m.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/related-lookup-m2m_hover.png b/gestioncof/static/grappelli/images/icons/related-lookup-m2m_hover.png
deleted file mode 100644
index ec3e90ba..00000000
Binary files a/gestioncof/static/grappelli/images/icons/related-lookup-m2m_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/related-lookup.png b/gestioncof/static/grappelli/images/icons/related-lookup.png
deleted file mode 100644
index 8ab430cb..00000000
Binary files a/gestioncof/static/grappelli/images/icons/related-lookup.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/related-lookup_hover.png b/gestioncof/static/grappelli/images/icons/related-lookup_hover.png
deleted file mode 100644
index 2aad6cc1..00000000
Binary files a/gestioncof/static/grappelli/images/icons/related-lookup_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/related-remove.png b/gestioncof/static/grappelli/images/icons/related-remove.png
deleted file mode 100644
index 329f7266..00000000
Binary files a/gestioncof/static/grappelli/images/icons/related-remove.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/related-remove_hover.png b/gestioncof/static/grappelli/images/icons/related-remove_hover.png
deleted file mode 100644
index de944f2a..00000000
Binary files a/gestioncof/static/grappelli/images/icons/related-remove_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/searchbox.png b/gestioncof/static/grappelli/images/icons/searchbox.png
deleted file mode 100644
index 9a9090de..00000000
Binary files a/gestioncof/static/grappelli/images/icons/searchbox.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/selector-add-m2m-horizontal.png b/gestioncof/static/grappelli/images/icons/selector-add-m2m-horizontal.png
deleted file mode 100644
index 7ba54992..00000000
Binary files a/gestioncof/static/grappelli/images/icons/selector-add-m2m-horizontal.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/selector-add-m2m-horizontal_hover.png b/gestioncof/static/grappelli/images/icons/selector-add-m2m-horizontal_hover.png
deleted file mode 100644
index f19a6c88..00000000
Binary files a/gestioncof/static/grappelli/images/icons/selector-add-m2m-horizontal_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/selector-add-m2m-vertical.png b/gestioncof/static/grappelli/images/icons/selector-add-m2m-vertical.png
deleted file mode 100644
index 0f53ca3b..00000000
Binary files a/gestioncof/static/grappelli/images/icons/selector-add-m2m-vertical.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/selector-add-m2m-vertical_hover.png b/gestioncof/static/grappelli/images/icons/selector-add-m2m-vertical_hover.png
deleted file mode 100644
index 6be1d750..00000000
Binary files a/gestioncof/static/grappelli/images/icons/selector-add-m2m-vertical_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/selector-filter.png b/gestioncof/static/grappelli/images/icons/selector-filter.png
deleted file mode 100644
index 9c39774d..00000000
Binary files a/gestioncof/static/grappelli/images/icons/selector-filter.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/selector-remove-m2m-horizontal.png b/gestioncof/static/grappelli/images/icons/selector-remove-m2m-horizontal.png
deleted file mode 100644
index a6bdc7c0..00000000
Binary files a/gestioncof/static/grappelli/images/icons/selector-remove-m2m-horizontal.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/selector-remove-m2m-horizontal_hover.png b/gestioncof/static/grappelli/images/icons/selector-remove-m2m-horizontal_hover.png
deleted file mode 100644
index 9bfb7424..00000000
Binary files a/gestioncof/static/grappelli/images/icons/selector-remove-m2m-horizontal_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/selector-remove-m2m-vertical.png b/gestioncof/static/grappelli/images/icons/selector-remove-m2m-vertical.png
deleted file mode 100644
index ee330c98..00000000
Binary files a/gestioncof/static/grappelli/images/icons/selector-remove-m2m-vertical.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/selector-remove-m2m-vertical_hover.png b/gestioncof/static/grappelli/images/icons/selector-remove-m2m-vertical_hover.png
deleted file mode 100644
index 943945ce..00000000
Binary files a/gestioncof/static/grappelli/images/icons/selector-remove-m2m-vertical_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/sort-remove.png b/gestioncof/static/grappelli/images/icons/sort-remove.png
deleted file mode 100644
index bafe85cd..00000000
Binary files a/gestioncof/static/grappelli/images/icons/sort-remove.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/sort-remove_hover.png b/gestioncof/static/grappelli/images/icons/sort-remove_hover.png
deleted file mode 100644
index 9df5960f..00000000
Binary files a/gestioncof/static/grappelli/images/icons/sort-remove_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/sorted-ascending.png b/gestioncof/static/grappelli/images/icons/sorted-ascending.png
deleted file mode 100644
index 0ac367bd..00000000
Binary files a/gestioncof/static/grappelli/images/icons/sorted-ascending.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/sorted-descending.png b/gestioncof/static/grappelli/images/icons/sorted-descending.png
deleted file mode 100644
index e520a75d..00000000
Binary files a/gestioncof/static/grappelli/images/icons/sorted-descending.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/status-no.png b/gestioncof/static/grappelli/images/icons/status-no.png
deleted file mode 100644
index 91fac439..00000000
Binary files a/gestioncof/static/grappelli/images/icons/status-no.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/status-unknown.png b/gestioncof/static/grappelli/images/icons/status-unknown.png
deleted file mode 100644
index 0b7d1809..00000000
Binary files a/gestioncof/static/grappelli/images/icons/status-unknown.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/status-yes.png b/gestioncof/static/grappelli/images/icons/status-yes.png
deleted file mode 100644
index 2f140794..00000000
Binary files a/gestioncof/static/grappelli/images/icons/status-yes.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/th-ascending.png b/gestioncof/static/grappelli/images/icons/th-ascending.png
deleted file mode 100644
index 24dda0af..00000000
Binary files a/gestioncof/static/grappelli/images/icons/th-ascending.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/th-descending.png b/gestioncof/static/grappelli/images/icons/th-descending.png
deleted file mode 100644
index 32fb3fb8..00000000
Binary files a/gestioncof/static/grappelli/images/icons/th-descending.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/timepicker.png b/gestioncof/static/grappelli/images/icons/timepicker.png
deleted file mode 100644
index c0e18cfd..00000000
Binary files a/gestioncof/static/grappelli/images/icons/timepicker.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/timepicker_hover.png b/gestioncof/static/grappelli/images/icons/timepicker_hover.png
deleted file mode 100644
index bd47588f..00000000
Binary files a/gestioncof/static/grappelli/images/icons/timepicker_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-add-handler.png b/gestioncof/static/grappelli/images/icons/tools-add-handler.png
deleted file mode 100644
index 1a11fc26..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-add-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-add-handler_hover.png b/gestioncof/static/grappelli/images/icons/tools-add-handler_hover.png
deleted file mode 100644
index 91e2401a..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-add-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-arrow-down-handler.png b/gestioncof/static/grappelli/images/icons/tools-arrow-down-handler.png
deleted file mode 100644
index 472c5ba8..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-arrow-down-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-arrow-down-handler_hover.png b/gestioncof/static/grappelli/images/icons/tools-arrow-down-handler_hover.png
deleted file mode 100644
index 449b3cbb..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-arrow-down-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-arrow-up-handler.png b/gestioncof/static/grappelli/images/icons/tools-arrow-up-handler.png
deleted file mode 100644
index da9b532e..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-arrow-up-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-arrow-up-handler_hover.png b/gestioncof/static/grappelli/images/icons/tools-arrow-up-handler_hover.png
deleted file mode 100644
index 25155455..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-arrow-up-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-close-handler.png b/gestioncof/static/grappelli/images/icons/tools-close-handler.png
deleted file mode 100644
index 039b24ba..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-close-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-close-handler_hover.png b/gestioncof/static/grappelli/images/icons/tools-close-handler_hover.png
deleted file mode 100644
index 71529835..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-close-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-delete-handler-predelete.png b/gestioncof/static/grappelli/images/icons/tools-delete-handler-predelete.png
deleted file mode 100644
index fcb37993..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-delete-handler-predelete.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-delete-handler.png b/gestioncof/static/grappelli/images/icons/tools-delete-handler.png
deleted file mode 100644
index c8caa2cd..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-delete-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-delete-handler_hover.png b/gestioncof/static/grappelli/images/icons/tools-delete-handler_hover.png
deleted file mode 100644
index 06f46d24..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-delete-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-drag-handler.png b/gestioncof/static/grappelli/images/icons/tools-drag-handler.png
deleted file mode 100644
index 90abf5ef..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-drag-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-drag-handler_hover.png b/gestioncof/static/grappelli/images/icons/tools-drag-handler_hover.png
deleted file mode 100644
index 6f9c4392..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-drag-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-open-handler.png b/gestioncof/static/grappelli/images/icons/tools-open-handler.png
deleted file mode 100644
index ce1a3b6c..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-open-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-open-handler_hover.png b/gestioncof/static/grappelli/images/icons/tools-open-handler_hover.png
deleted file mode 100644
index e6909e94..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-open-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-remove-handler.png b/gestioncof/static/grappelli/images/icons/tools-remove-handler.png
deleted file mode 100644
index 1f00f020..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-remove-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-remove-handler_hover.png b/gestioncof/static/grappelli/images/icons/tools-remove-handler_hover.png
deleted file mode 100644
index c109e853..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-remove-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-trash-handler.png b/gestioncof/static/grappelli/images/icons/tools-trash-handler.png
deleted file mode 100644
index ae12bbfb..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-trash-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-trash-handler_hover.png b/gestioncof/static/grappelli/images/icons/tools-trash-handler_hover.png
deleted file mode 100644
index 97ce780c..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-trash-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-trash-list-toggle-handler.png b/gestioncof/static/grappelli/images/icons/tools-trash-list-toggle-handler.png
deleted file mode 100644
index d9679215..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-trash-list-toggle-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-trash-list-toggle-handler_hover.png b/gestioncof/static/grappelli/images/icons/tools-trash-list-toggle-handler_hover.png
deleted file mode 100644
index d28de365..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-trash-list-toggle-handler_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-viewsite-link.png b/gestioncof/static/grappelli/images/icons/tools-viewsite-link.png
deleted file mode 100644
index a067c00f..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-viewsite-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/tools-viewsite-link_hover.png b/gestioncof/static/grappelli/images/icons/tools-viewsite-link_hover.png
deleted file mode 100644
index f12e2315..00000000
Binary files a/gestioncof/static/grappelli/images/icons/tools-viewsite-link_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/ui-datepicker-next.png b/gestioncof/static/grappelli/images/icons/ui-datepicker-next.png
deleted file mode 100644
index 6f5a81f2..00000000
Binary files a/gestioncof/static/grappelli/images/icons/ui-datepicker-next.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/ui-datepicker-next_hover.png b/gestioncof/static/grappelli/images/icons/ui-datepicker-next_hover.png
deleted file mode 100644
index a592c099..00000000
Binary files a/gestioncof/static/grappelli/images/icons/ui-datepicker-next_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/ui-datepicker-prev.png b/gestioncof/static/grappelli/images/icons/ui-datepicker-prev.png
deleted file mode 100644
index 6edc4770..00000000
Binary files a/gestioncof/static/grappelli/images/icons/ui-datepicker-prev.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/images/icons/ui-datepicker-prev_hover.png b/gestioncof/static/grappelli/images/icons/ui-datepicker-prev_hover.png
deleted file mode 100644
index b80532a9..00000000
Binary files a/gestioncof/static/grappelli/images/icons/ui-datepicker-prev_hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/admin/arrow-down.gif b/gestioncof/static/grappelli/img/admin/arrow-down.gif
deleted file mode 100644
index a967b9fd..00000000
Binary files a/gestioncof/static/grappelli/img/admin/arrow-down.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/admin/arrow-up.gif b/gestioncof/static/grappelli/img/admin/arrow-up.gif
deleted file mode 100644
index 3fe48513..00000000
Binary files a/gestioncof/static/grappelli/img/admin/arrow-up.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/admin/icon-no.gif b/gestioncof/static/grappelli/img/admin/icon-no.gif
deleted file mode 100644
index 099c95f3..00000000
Binary files a/gestioncof/static/grappelli/img/admin/icon-no.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/admin/icon-unknown.gif b/gestioncof/static/grappelli/img/admin/icon-unknown.gif
deleted file mode 100644
index 099c95f3..00000000
Binary files a/gestioncof/static/grappelli/img/admin/icon-unknown.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/admin/icon-yes.gif b/gestioncof/static/grappelli/img/admin/icon-yes.gif
deleted file mode 100644
index 099c95f3..00000000
Binary files a/gestioncof/static/grappelli/img/admin/icon-yes.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/admin/icon_addlink.gif b/gestioncof/static/grappelli/img/admin/icon_addlink.gif
deleted file mode 100644
index 099c95f3..00000000
Binary files a/gestioncof/static/grappelli/img/admin/icon_addlink.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/admin/selector-add.gif b/gestioncof/static/grappelli/img/admin/selector-add.gif
deleted file mode 100644
index 45b75943..00000000
Binary files a/gestioncof/static/grappelli/img/admin/selector-add.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/admin/selector-search.gif b/gestioncof/static/grappelli/img/admin/selector-search.gif
deleted file mode 100644
index 45b75943..00000000
Binary files a/gestioncof/static/grappelli/img/admin/selector-search.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/backgrounds/autocomplete.png b/gestioncof/static/grappelli/img/backgrounds/autocomplete.png
deleted file mode 100644
index 313112ad..00000000
Binary files a/gestioncof/static/grappelli/img/backgrounds/autocomplete.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/backgrounds/changelist-results.png b/gestioncof/static/grappelli/img/backgrounds/changelist-results.png
deleted file mode 100644
index 265beacd..00000000
Binary files a/gestioncof/static/grappelli/img/backgrounds/changelist-results.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/backgrounds/loading-small.gif b/gestioncof/static/grappelli/img/backgrounds/loading-small.gif
deleted file mode 100644
index 929a5622..00000000
Binary files a/gestioncof/static/grappelli/img/backgrounds/loading-small.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/backgrounds/tooltip-pointer.png b/gestioncof/static/grappelli/img/backgrounds/tooltip-pointer.png
deleted file mode 100644
index f23b1889..00000000
Binary files a/gestioncof/static/grappelli/img/backgrounds/tooltip-pointer.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/backgrounds/ui-sortable-placeholder.png b/gestioncof/static/grappelli/img/backgrounds/ui-sortable-placeholder.png
deleted file mode 100644
index f9b2ce9e..00000000
Binary files a/gestioncof/static/grappelli/img/backgrounds/ui-sortable-placeholder.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/grappelli-icon.png b/gestioncof/static/grappelli/img/grappelli-icon.png
deleted file mode 100644
index c4fb10e0..00000000
Binary files a/gestioncof/static/grappelli/img/grappelli-icon.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actionlist_addlink-hover.png b/gestioncof/static/grappelli/img/icons/icon-actionlist_addlink-hover.png
deleted file mode 100644
index 20c740bf..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actionlist_addlink-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actionlist_addlink.png b/gestioncof/static/grappelli/img/icons/icon-actionlist_addlink.png
deleted file mode 100644
index 6e2ed2a8..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actionlist_addlink.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actionlist_changelink-hover.png b/gestioncof/static/grappelli/img/icons/icon-actionlist_changelink-hover.png
deleted file mode 100644
index d4880935..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actionlist_changelink-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actionlist_changelink.png b/gestioncof/static/grappelli/img/icons/icon-actionlist_changelink.png
deleted file mode 100644
index 2a6f2930..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actionlist_changelink.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actionlist_deletelink.png b/gestioncof/static/grappelli/img/icons/icon-actionlist_deletelink.png
deleted file mode 100644
index 7931f671..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actionlist_deletelink.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actions-add-link-hover.png b/gestioncof/static/grappelli/img/icons/icon-actions-add-link-hover.png
deleted file mode 100644
index 20c740bf..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actions-add-link-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actions-add-link.png b/gestioncof/static/grappelli/img/icons/icon-actions-add-link.png
deleted file mode 100644
index 6e2ed2a8..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actions-add-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actions-change-link-hover.png b/gestioncof/static/grappelli/img/icons/icon-actions-change-link-hover.png
deleted file mode 100644
index d4880935..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actions-change-link-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actions-change-link.png b/gestioncof/static/grappelli/img/icons/icon-actions-change-link.png
deleted file mode 100644
index 2a6f2930..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actions-change-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actions-delete-link.png b/gestioncof/static/grappelli/img/icons/icon-actions-delete-link.png
deleted file mode 100644
index 7931f671..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actions-delete-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-actions_changelist.png b/gestioncof/static/grappelli/img/icons/icon-actions_changelist.png
deleted file mode 100644
index 3f297aff..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-actions_changelist.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-add_another-hover.png b/gestioncof/static/grappelli/img/icons/icon-add_another-hover.png
deleted file mode 100644
index c017a95b..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-add_another-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-add_another.png b/gestioncof/static/grappelli/img/icons/icon-add_another.png
deleted file mode 100644
index dd649051..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-add_another.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-addlink-hover.png b/gestioncof/static/grappelli/img/icons/icon-addlink-hover.png
deleted file mode 100644
index c017a95b..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-addlink-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-addlink.png b/gestioncof/static/grappelli/img/icons/icon-addlink.png
deleted file mode 100644
index dd649051..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-addlink.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown-active-hover.png b/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown-active-hover.png
deleted file mode 100644
index 2b5d50ed..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown-active-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown-active.png b/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown-active.png
deleted file mode 100644
index 2f84846b..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown-active.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown-hover.png b/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown-hover.png
deleted file mode 100644
index 2f84846b..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown.png b/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown.png
deleted file mode 100644
index f0f9906b..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-admin_tools-dropdown.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-autocomplete-fk-remove-hover.png b/gestioncof/static/grappelli/img/icons/icon-autocomplete-fk-remove-hover.png
deleted file mode 100644
index e34d1725..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-autocomplete-fk-remove-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-autocomplete-fk-remove.png b/gestioncof/static/grappelli/img/icons/icon-autocomplete-fk-remove.png
deleted file mode 100644
index 5e23eb67..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-autocomplete-fk-remove.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-autocomplete-m2m-remove-hover.png b/gestioncof/static/grappelli/img/icons/icon-autocomplete-m2m-remove-hover.png
deleted file mode 100644
index e34d1725..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-autocomplete-m2m-remove-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-autocomplete-m2m-remove.png b/gestioncof/static/grappelli/img/icons/icon-autocomplete-m2m-remove.png
deleted file mode 100644
index 5e23eb67..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-autocomplete-m2m-remove.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-bookmark_add-hover.png b/gestioncof/static/grappelli/img/icons/icon-bookmark_add-hover.png
deleted file mode 100644
index 992bd739..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-bookmark_add-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-bookmark_add-inactive.png b/gestioncof/static/grappelli/img/icons/icon-bookmark_add-inactive.png
deleted file mode 100644
index ca9eb1d7..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-bookmark_add-inactive.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-bookmark_add.png b/gestioncof/static/grappelli/img/icons/icon-bookmark_add.png
deleted file mode 100644
index 3d869503..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-bookmark_add.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-bookmark_manage-hover.png b/gestioncof/static/grappelli/img/icons/icon-bookmark_manage-hover.png
deleted file mode 100644
index b7efbf8c..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-bookmark_manage-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-bookmark_manage.png b/gestioncof/static/grappelli/img/icons/icon-bookmark_manage.png
deleted file mode 100644
index 17e453be..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-bookmark_manage.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-bookmark_remove-hover.png b/gestioncof/static/grappelli/img/icons/icon-bookmark_remove-hover.png
deleted file mode 100644
index 25c908de..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-bookmark_remove-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-bookmark_remove-inactive.png b/gestioncof/static/grappelli/img/icons/icon-bookmark_remove-inactive.png
deleted file mode 100644
index c0f8a6b7..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-bookmark_remove-inactive.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-bookmark_remove.png b/gestioncof/static/grappelli/img/icons/icon-bookmark_remove.png
deleted file mode 100644
index 84cb3cf8..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-bookmark_remove.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-calendar-hover.png b/gestioncof/static/grappelli/img/icons/icon-calendar-hover.png
deleted file mode 100644
index de2b6cd1..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-calendar-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-calendar.png b/gestioncof/static/grappelli/img/icons/icon-calendar.png
deleted file mode 100644
index 33793529..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-calendar.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-calendarnav_next.png b/gestioncof/static/grappelli/img/icons/icon-calendarnav_next.png
deleted file mode 100644
index ab52bf82..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-calendarnav_next.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-calendarnav_previous.png b/gestioncof/static/grappelli/img/icons/icon-calendarnav_previous.png
deleted file mode 100644
index 47147a53..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-calendarnav_previous.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-changelink-hover.png b/gestioncof/static/grappelli/img/icons/icon-changelink-hover.png
deleted file mode 100644
index 52972274..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-changelink-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-changelink.png b/gestioncof/static/grappelli/img/icons/icon-changelink.png
deleted file mode 100644
index 8f710299..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-changelink.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-changelist-actions.png b/gestioncof/static/grappelli/img/icons/icon-changelist-actions.png
deleted file mode 100644
index 3f297aff..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-changelist-actions.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-clock-hover.png b/gestioncof/static/grappelli/img/icons/icon-clock-hover.png
deleted file mode 100644
index a0610633..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-clock-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-clock.png b/gestioncof/static/grappelli/img/icons/icon-clock.png
deleted file mode 100644
index e39798bc..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-clock.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-date-hierarchy-back-hover.png b/gestioncof/static/grappelli/img/icons/icon-date-hierarchy-back-hover.png
deleted file mode 100644
index e28bc836..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-date-hierarchy-back-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-date-hierarchy-back.png b/gestioncof/static/grappelli/img/icons/icon-date-hierarchy-back.png
deleted file mode 100644
index 665724b8..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-date-hierarchy-back.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-datepicker-hover.png b/gestioncof/static/grappelli/img/icons/icon-datepicker-hover.png
deleted file mode 100644
index 064ef4eb..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-datepicker-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-datepicker.png b/gestioncof/static/grappelli/img/icons/icon-datepicker.png
deleted file mode 100644
index 33793529..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-datepicker.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-dropdown-hover.png b/gestioncof/static/grappelli/img/icons/icon-dropdown-hover.png
deleted file mode 100644
index 10fedc76..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-dropdown-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-dropdown.png b/gestioncof/static/grappelli/img/icons/icon-dropdown.png
deleted file mode 100644
index 7331ed53..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-dropdown.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-edit-dashboard-toggle-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-edit-dashboard-toggle-handler-hover.png
deleted file mode 100644
index 2b985c54..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-edit-dashboard-toggle-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-edit-dashboard-toggle-handler.png b/gestioncof/static/grappelli/img/icons/icon-edit-dashboard-toggle-handler.png
deleted file mode 100644
index 83008e45..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-edit-dashboard-toggle-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-fb-show-hover.png b/gestioncof/static/grappelli/img/icons/icon-fb-show-hover.png
deleted file mode 100644
index 549e2619..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-fb-show-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-fb-show.png b/gestioncof/static/grappelli/img/icons/icon-fb-show.png
deleted file mode 100644
index 886c05c3..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-fb-show.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-fb_show-hover.png b/gestioncof/static/grappelli/img/icons/icon-fb_show-hover.png
deleted file mode 100644
index 0b20b492..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-fb_show-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-fb_show.png b/gestioncof/static/grappelli/img/icons/icon-fb_show.png
deleted file mode 100644
index c5e796c0..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-fb_show.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-form-select.png b/gestioncof/static/grappelli/img/icons/icon-form-select.png
deleted file mode 100644
index 3591d503..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-form-select.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-addhandler-hover.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-addhandler-hover.png
deleted file mode 100644
index 33574179..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-addhandler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-addhandler.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-addhandler.png
deleted file mode 100644
index ef3c2494..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-addhandler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-closehandler-hover.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-closehandler-hover.png
deleted file mode 100644
index cd186c85..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-closehandler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-closehandler.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-closehandler.png
deleted file mode 100644
index 00edf99a..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-closehandler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-deletelink-hover.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-deletelink-hover.png
deleted file mode 100644
index 9834a873..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-deletelink-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-deletelink.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-deletelink.png
deleted file mode 100644
index 3bf18612..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-deletelink.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-draghandler-hover.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-draghandler-hover.png
deleted file mode 100644
index 57f40775..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-draghandler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-draghandler.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-draghandler.png
deleted file mode 100644
index 477e26ea..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-draghandler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-openhandler-hover.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-openhandler-hover.png
deleted file mode 100644
index d82b6401..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-openhandler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-openhandler.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-openhandler.png
deleted file mode 100644
index a250eed5..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-openhandler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-viewsitelink-hover.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-viewsitelink-hover.png
deleted file mode 100644
index a4d35717..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-viewsitelink-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-viewsitelink.png b/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-viewsitelink.png
deleted file mode 100644
index 06f38e32..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-inline_item_tools-viewsitelink.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-menulist_external-hover.png b/gestioncof/static/grappelli/img/icons/icon-menulist_external-hover.png
deleted file mode 100644
index 30b34906..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-menulist_external-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-menulist_external.png b/gestioncof/static/grappelli/img/icons/icon-menulist_external.png
deleted file mode 100644
index 0cc28832..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-menulist_external.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-menulist_internal-hover.png b/gestioncof/static/grappelli/img/icons/icon-menulist_internal-hover.png
deleted file mode 100644
index a99d4a1e..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-menulist_internal-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-menulist_internal.png b/gestioncof/static/grappelli/img/icons/icon-menulist_internal.png
deleted file mode 100644
index 30356322..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-menulist_internal.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-navigation-external-hover.png b/gestioncof/static/grappelli/img/icons/icon-navigation-external-hover.png
deleted file mode 100644
index 30b34906..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-navigation-external-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-navigation-external.png b/gestioncof/static/grappelli/img/icons/icon-navigation-external.png
deleted file mode 100644
index 0cc28832..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-navigation-external.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-navigation-internal-hover.png b/gestioncof/static/grappelli/img/icons/icon-navigation-internal-hover.png
deleted file mode 100644
index a99d4a1e..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-navigation-internal-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-navigation-internal.png b/gestioncof/static/grappelli/img/icons/icon-navigation-internal.png
deleted file mode 100644
index 30356322..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-navigation-internal.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-no.png b/gestioncof/static/grappelli/img/icons/icon-no.png
deleted file mode 100644
index 91fac439..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-no.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-object-tools-add-handler.png b/gestioncof/static/grappelli/img/icons/icon-object-tools-add-handler.png
deleted file mode 100644
index a3621b5e..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-object-tools-add-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-related-lookup-hover.png b/gestioncof/static/grappelli/img/icons/icon-related-lookup-hover.png
deleted file mode 100644
index 549e2619..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-related-lookup-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-related-lookup-m2m-hover.png b/gestioncof/static/grappelli/img/icons/icon-related-lookup-m2m-hover.png
deleted file mode 100644
index 6f816a4f..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-related-lookup-m2m-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-related-lookup-m2m.png b/gestioncof/static/grappelli/img/icons/icon-related-lookup-m2m.png
deleted file mode 100644
index 1062a58a..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-related-lookup-m2m.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-related-lookup.png b/gestioncof/static/grappelli/img/icons/icon-related-lookup.png
deleted file mode 100644
index b14a9cd3..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-related-lookup.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-related_lookup-hover.png b/gestioncof/static/grappelli/img/icons/icon-related_lookup-hover.png
deleted file mode 100644
index 549e2619..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-related_lookup-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-related_lookup.png b/gestioncof/static/grappelli/img/icons/icon-related_lookup.png
deleted file mode 100644
index b14a9cd3..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-related_lookup.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-remove-related-hover.png b/gestioncof/static/grappelli/img/icons/icon-remove-related-hover.png
deleted file mode 100644
index 0de8ec19..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-remove-related-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-remove-related.png b/gestioncof/static/grappelli/img/icons/icon-remove-related.png
deleted file mode 100644
index 308fb6c5..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-remove-related.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-search-hover.png b/gestioncof/static/grappelli/img/icons/icon-search-hover.png
deleted file mode 100644
index 549e2619..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-search-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-search.png b/gestioncof/static/grappelli/img/icons/icon-search.png
deleted file mode 100644
index b14a9cd3..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-search.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-searchbox.png b/gestioncof/static/grappelli/img/icons/icon-searchbox.png
deleted file mode 100644
index 9a9090de..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-searchbox.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_horizontal-hover.png b/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_horizontal-hover.png
deleted file mode 100644
index f19a6c88..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_horizontal-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_horizontal.png b/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_horizontal.png
deleted file mode 100644
index 7ba54992..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_horizontal.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_vertical-hover.png b/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_vertical-hover.png
deleted file mode 100644
index 6be1d750..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_vertical-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_vertical.png b/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_vertical.png
deleted file mode 100644
index 0f53ca3b..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-selector_add-m2m_vertical.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-selector_filter.png b/gestioncof/static/grappelli/img/icons/icon-selector_filter.png
deleted file mode 100644
index 9c39774d..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-selector_filter.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_horizontal-hover.png b/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_horizontal-hover.png
deleted file mode 100644
index 9bfb7424..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_horizontal-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_horizontal.png b/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_horizontal.png
deleted file mode 100644
index a6bdc7c0..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_horizontal.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_vertical-hover.png b/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_vertical-hover.png
deleted file mode 100644
index 943945ce..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_vertical-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_vertical.png b/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_vertical.png
deleted file mode 100644
index ee330c98..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-selector_remove-m2m_vertical.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-th-ascending.png b/gestioncof/static/grappelli/img/icons/icon-th-ascending.png
deleted file mode 100644
index 24dda0af..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-th-ascending.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-th-descending.png b/gestioncof/static/grappelli/img/icons/icon-th-descending.png
deleted file mode 100644
index 32fb3fb8..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-th-descending.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-timepicker-hover.png b/gestioncof/static/grappelli/img/icons/icon-timepicker-hover.png
deleted file mode 100644
index a0610633..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-timepicker-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-timepicker.png b/gestioncof/static/grappelli/img/icons/icon-timepicker.png
deleted file mode 100644
index e39798bc..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-timepicker.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-add-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-tools-add-handler-hover.png
deleted file mode 100644
index 48a23a18..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-add-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-add-handler.png b/gestioncof/static/grappelli/img/icons/icon-tools-add-handler.png
deleted file mode 100644
index e9bf71bb..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-add-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-arrow-down-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-tools-arrow-down-handler-hover.png
deleted file mode 100644
index f3591fd5..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-arrow-down-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-arrow-down-handler.png b/gestioncof/static/grappelli/img/icons/icon-tools-arrow-down-handler.png
deleted file mode 100644
index e40c93e5..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-arrow-down-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-arrow-up-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-tools-arrow-up-handler-hover.png
deleted file mode 100644
index 26ef6437..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-arrow-up-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-arrow-up-handler.png b/gestioncof/static/grappelli/img/icons/icon-tools-arrow-up-handler.png
deleted file mode 100644
index 2e15e77c..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-arrow-up-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-close-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-tools-close-handler-hover.png
deleted file mode 100644
index b51722f4..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-close-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-close-handler.png b/gestioncof/static/grappelli/img/icons/icon-tools-close-handler.png
deleted file mode 100644
index 2c5e650a..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-close-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-delete-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-tools-delete-handler-hover.png
deleted file mode 100644
index 90ce6408..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-delete-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-delete-handler.png b/gestioncof/static/grappelli/img/icons/icon-tools-delete-handler.png
deleted file mode 100644
index 7708b402..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-delete-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-drag-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-tools-drag-handler-hover.png
deleted file mode 100644
index 0f62eb9e..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-drag-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-drag-handler.png b/gestioncof/static/grappelli/img/icons/icon-tools-drag-handler.png
deleted file mode 100644
index 6f7421bd..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-drag-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-open-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-tools-open-handler-hover.png
deleted file mode 100644
index 655d944c..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-open-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-open-handler.png b/gestioncof/static/grappelli/img/icons/icon-tools-open-handler.png
deleted file mode 100644
index 24169925..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-open-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-remove-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-tools-remove-handler-hover.png
deleted file mode 100644
index c10c90b6..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-remove-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-remove-handler.png b/gestioncof/static/grappelli/img/icons/icon-tools-remove-handler.png
deleted file mode 100644
index eefa1459..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-remove-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-trash-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-tools-trash-handler-hover.png
deleted file mode 100644
index 4eeec6f8..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-trash-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-trash-handler.png b/gestioncof/static/grappelli/img/icons/icon-tools-trash-handler.png
deleted file mode 100644
index 7d4a6f78..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-trash-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-viewsite-link-hover.png b/gestioncof/static/grappelli/img/icons/icon-tools-viewsite-link-hover.png
deleted file mode 100644
index 5bf16deb..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-viewsite-link-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-tools-viewsite-link.png b/gestioncof/static/grappelli/img/icons/icon-tools-viewsite-link.png
deleted file mode 100644
index 9f678a86..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-tools-viewsite-link.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-trash-list-toggle-handler-hover.png b/gestioncof/static/grappelli/img/icons/icon-trash-list-toggle-handler-hover.png
deleted file mode 100644
index 22057833..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-trash-list-toggle-handler-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-trash-list-toggle-handler.png b/gestioncof/static/grappelli/img/icons/icon-trash-list-toggle-handler.png
deleted file mode 100644
index 81593993..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-trash-list-toggle-handler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-unknown.png b/gestioncof/static/grappelli/img/icons/icon-unknown.png
deleted file mode 100644
index 0b7d1809..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-unknown.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon-yes.png b/gestioncof/static/grappelli/img/icons/icon-yes.png
deleted file mode 100644
index 2f140794..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon-yes.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon_fieldset_collapse-closed.png b/gestioncof/static/grappelli/img/icons/icon_fieldset_collapse-closed.png
deleted file mode 100644
index 94b609a7..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon_fieldset_collapse-closed.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon_fieldset_collapse-open.png b/gestioncof/static/grappelli/img/icons/icon_fieldset_collapse-open.png
deleted file mode 100644
index 9854a65c..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon_fieldset_collapse-open.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon_inline-item-tools_addhandler.png b/gestioncof/static/grappelli/img/icons/icon_inline-item-tools_addhandler.png
deleted file mode 100644
index a3e1d384..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon_inline-item-tools_addhandler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon_inline-item-tools_closehandler.png b/gestioncof/static/grappelli/img/icons/icon_inline-item-tools_closehandler.png
deleted file mode 100644
index c3183bf3..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon_inline-item-tools_closehandler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/icon_inline-item-tools_openhandler.png b/gestioncof/static/grappelli/img/icons/icon_inline-item-tools_openhandler.png
deleted file mode 100644
index 8119d8ee..00000000
Binary files a/gestioncof/static/grappelli/img/icons/icon_inline-item-tools_openhandler.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/ui-datepicker-next-hover.png b/gestioncof/static/grappelli/img/icons/ui-datepicker-next-hover.png
deleted file mode 100644
index b508453f..00000000
Binary files a/gestioncof/static/grappelli/img/icons/ui-datepicker-next-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/ui-datepicker-next.png b/gestioncof/static/grappelli/img/icons/ui-datepicker-next.png
deleted file mode 100644
index f45aa1a4..00000000
Binary files a/gestioncof/static/grappelli/img/icons/ui-datepicker-next.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/ui-datepicker-prev-hover.png b/gestioncof/static/grappelli/img/icons/ui-datepicker-prev-hover.png
deleted file mode 100644
index 8ca2c402..00000000
Binary files a/gestioncof/static/grappelli/img/icons/ui-datepicker-prev-hover.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/icons/ui-datepicker-prev.png b/gestioncof/static/grappelli/img/icons/ui-datepicker-prev.png
deleted file mode 100644
index adbc08ac..00000000
Binary files a/gestioncof/static/grappelli/img/icons/ui-datepicker-prev.png and /dev/null differ
diff --git a/gestioncof/static/grappelli/img/input-throbber.gif b/gestioncof/static/grappelli/img/input-throbber.gif
deleted file mode 100644
index 19c2e0a3..00000000
Binary files a/gestioncof/static/grappelli/img/input-throbber.gif and /dev/null differ
diff --git a/gestioncof/static/grappelli/jquery/i18n/ui.datepicker-de.js b/gestioncof/static/grappelli/jquery/i18n/ui.datepicker-de.js
deleted file mode 100644
index 4a7447ca..00000000
--- a/gestioncof/static/grappelli/jquery/i18n/ui.datepicker-de.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/* German initialisation for the jQuery UI date picker plugin. */
-/* Written by Milian Wolff (mail@milianw.de). */
-(function($){
- $.datepicker.regional['de'] = {
- closeText: 'schließen',
- prevText: '<zurück',
- nextText: 'Vor>',
- currentText: 'heute',
- monthNames: ['Januar','Februar','März','April','Mai','Juni',
- 'Juli','August','September','Oktober','November','Dezember'],
- monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun',
- 'Jul','Aug','Sep','Okt','Nov','Dez'],
- dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
- dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
- dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
- dateFormat: 'yy-mm-dd', firstDay: 1,
- isRTL: false};
- $.datepicker.setDefaults($.datepicker.regional['de']);
-})(grp.jQuery);
-
diff --git a/gestioncof/static/grappelli/jquery/i18n/ui.datepicker-fr.js b/gestioncof/static/grappelli/jquery/i18n/ui.datepicker-fr.js
deleted file mode 100644
index f4e6df8b..00000000
--- a/gestioncof/static/grappelli/jquery/i18n/ui.datepicker-fr.js
+++ /dev/null
@@ -1,19 +0,0 @@
-/* French initialisation for the jQuery UI date picker plugin. */
-/* Written by Keith Wood (kbwood@virginbroadband.com.au) and Stéphane Nahmani (sholby@sholby.net). */
-(function($){
- $.datepicker.regional['fr'] = {
- closeText: 'Fermer',
- prevText: '<Préc',
- nextText: 'Suiv>',
- currentText: 'Courant',
- monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
- 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
- monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun',
- 'Jul','Aoû','Sep','Oct','Nov','Déc'],
- dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
- dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'],
- dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'],
- dateFormat: 'yy-mm-dd', firstDay: 1,
- isRTL: false};
- $.datepicker.setDefaults($.datepicker.regional['fr']);
-})(grp.jQuery);
diff --git a/gestioncof/static/grappelli/jquery/jquery-1.4.2.min.js b/gestioncof/static/grappelli/jquery/jquery-1.4.2.min.js
deleted file mode 100644
index 7c243080..00000000
--- a/gestioncof/static/grappelli/jquery/jquery-1.4.2.min.js
+++ /dev/null
@@ -1,154 +0,0 @@
-/*!
- * jQuery JavaScript Library v1.4.2
- * http://jquery.com/
- *
- * Copyright 2010, John Resig
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * Includes Sizzle.js
- * http://sizzlejs.com/
- * Copyright 2010, The Dojo Foundation
- * Released under the MIT, BSD, and GPL Licenses.
- *
- * Date: Sat Feb 13 22:33:48 2010 -0500
- */
-(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/,
-Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&&
-(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this,
-a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b===
-"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this,
-function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;ba ";
-var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected,
-parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent=
-false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML=" ";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n=
-s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true,
-applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando];
-else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this,
-a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===
-w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i,
-cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected=
-c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");
-a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g,
-function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split(".");
-k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a),
-C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B=0){a.type=
-e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&&
-f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;
-if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",
-e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,
-"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a,
-d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,
-e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift();
-t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D||
-g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},
-CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m,
-g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},
-text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},
-setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return hl[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h=
-h[3];l=0;for(m=h.length;l=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m===
-"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g,
-h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l ";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&&
-q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML=" ";
-if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="
";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}();
-(function(){var g=s.createElement("div");g.innerHTML="
";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}:
-function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f0)for(var j=d;j0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j=
-{},i;if(f&&a.length){e=0;for(var o=a.length;e-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a===
-"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",
-d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?
-a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType===
-1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/"+d+">"},F={option:[1,""," "],legend:[1,""," "],thead:[1,""],tr:[2,""],td:[3,""],col:[2,""],area:[1,""," "],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div","
"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=
-c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},
-wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},
-prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,
-this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);
-return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja,
-""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]);
-return this}else{e=0;for(var j=d.length;e0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["",
-""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]===""&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e=
-c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]?
-c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja=
-function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter=
-Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a,
-"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f=
-a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=
-a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/
-
-
-
-
-
-
-
-
-
-
-