Compare commits

...

9 Commits

Author SHA1 Message Date
658e60f296 Merge branch 'master' into trav 2021-11-27 15:56:22 +01:00
2ecef5c1dd Merge branch 'trav' of ssh://git.autonomic.zone:2222/autonomic-cooperative/opencase into trav 2021-11-27 15:56:09 +01:00
92e81ee518 css 2021-11-27 15:45:42 +01:00
d7197d7ed6 Follow-ups due 2021-11-27 15:45:42 +01:00
3458949bb0 extended name field on cases 2021-11-27 11:25:41 +00:00
9e18b3ea28 Added reporting menu 2021-11-17 07:55:22 +00:00
0c977a7d48 Merge branch 'master' into trav 2021-09-17 15:37:11 +02:00
a0e4b4028f Merge branch 'master' into trav 2021-09-17 15:27:04 +02:00
5c20e83ed5 Follow-ups due 2021-09-17 15:22:56 +02:00
4 changed files with 70 additions and 1 deletions

View File

@ -7,8 +7,21 @@
#block-accreditationcount { #block-accreditationcount {
position: absolute; position: absolute;
right: 50%; right: 50%;
/*background-color: #fff;*/
background-image: linear-gradient(to top, #2a419a 0%, #1d84c3 100%);
border-radius: 5px;
} }
#block-accreditationcount table {
border: 0px #2a419a;
background-color: #1d84c3;
}
#block-accreditationcount h1 {
color: white;
}
#block-accreditationcount td { #block-accreditationcount td {
color: black; color: black;
} }
@ -133,3 +146,50 @@ table.views-table.views-view-table caption {
form.oc-organisation-relation-form tr:first-child { form.oc-organisation-relation-form tr:first-child {
display: none; display: none;
} }
/* trav styling */
.site-branding {
margin-top: -2.20em !important;
}
.follow-up-due {
}
tr:nth-child(even) {
background-color: #fefefe;
}
tr:nth-child(odd) {
background-color: #eee;
}
.Off {
color:gray;
}
.Off a {
color:gray;
background-color:black;
}
.field--type-entity-reference-revisions {
border-radius: 25px;
border: 2px solid #2A419A;
padding: 10px;
border-width: thin;
}
.follow-ups-due table{
background-color: #FB8A4F;
}
.views-field-field-client-substatus {
font-weight: bold;
}
thead {
background-color: #1d84c3;
}

View File

@ -234,7 +234,7 @@ class OCCase extends RevisionableContentEntityBase implements OCCaseInterface {
->setLabel(t('Title')) ->setLabel(t('Title'))
->setRevisionable(TRUE) ->setRevisionable(TRUE)
->setSettings([ ->setSettings([
'max_length' => 50, 'max_length' => 120,
'text_processing' => 0, 'text_processing' => 0,
]) ])
->setDefaultValue('') ->setDefaultValue('')

View File

@ -70,3 +70,8 @@ opencase.manage_event_types:
parent: opencase.opencase_admin_menu parent: opencase.opencase_admin_menu
url: internal:/admin/opencase/oc_event_type url: internal:/admin/opencase/oc_event_type
weight: 1 weight: 1
opencase.reporting:
title: 'Reporting'
menu_name: opencase
route_name: opencase.opencase_reporting_menu
weight: 0

View File

@ -10,3 +10,7 @@ opencase.opencase_add_new_things_menu:
path: '/' path: '/'
requirements: requirements:
_permission: 'use opencase' _permission: 'use opencase'
opencase.opencase_reporting_menu:
path: '/'
requirements:
_permission: 'use opencase'