diff --git a/application/controllers/providers/Idp_list.php b/application/controllers/providers/Idp_list.php index 98d2246cd..bf2dac8f0 100644 --- a/application/controllers/providers/Idp_list.php +++ b/application/controllers/providers/Idp_list.php @@ -109,7 +109,7 @@ function show($limit=null) { $iconsblock .= $hiddenicon .' '; } - $displayname = $i->getDisplayName(); + $displayname = $i->getName(); if(empty($displayname)) { $displayname = $i->getEntityId(); @@ -117,11 +117,11 @@ function show($limit=null) if ($i->getAvailable()) { - $col1 = anchor($i_link, $displayname) . "
(" . $i->getEntityId() . ")"; + $col1 = anchor($i_link, $displayname) . '
' . $i->getEntityId() . '
'; } else { - $col1 = ''.anchor($i_link, $displayname).'
'. $i->getEntityId().'
'; + $col1 = ''.anchor($i_link, $displayname).'
'. $i->getEntityId().'
'; } $regdate = $i->getRegistrationDate(); if(isset($regdate)) @@ -141,7 +141,7 @@ function show($limit=null) { $col3 = ''; } - $idprows[] = array('data' => array('data' => $col1 ),$iconsblock, $col2,'
'.$col3.'
'); + $idprows[] = array('data' => array('data' => $col1 ),$iconsblock, $col2,'
'.$col3.'
'); } $data['idprows'] = $idprows; $data['content_view'] = 'providers/idp_list_view'; diff --git a/application/controllers/providers/Sp_list.php b/application/controllers/providers/Sp_list.php index fb09c877e..bc21aabc3 100644 --- a/application/controllers/providers/Sp_list.php +++ b/application/controllers/providers/Sp_list.php @@ -119,17 +119,17 @@ function show($limit=null) } $i_link = base_url() . "providers/detail/show/" . $i->getId(); $is_available = $i->getAvailable(); - $displayname = $i->getDisplayName(50); + $displayname = $i->getName(50); if(empty($displayname)) { $displayname = $i->getEntityId(); } if ($is_available) { - $sprows[] = array(anchor($i_link, $displayname . '', 'title="' . $displayname . '"') . '' . $i->getEntityId() . '',$iconsblock,$regcol, '
' .$i->getHelpdeskUrl().'
'); + $sprows[] = array(anchor($i_link, $displayname . '', 'title="' . $displayname . '"') . '' . $i->getEntityId() . '',$iconsblock,$regcol, '
' .$i->getHelpdeskUrl().'
'); } else { - $sprows[] = array('' . anchor($i_link, $displayname , 'title="' . $displayname . '"') . '' . $i->getEntityId() . '',$iconsblock,$regcol, '
'.$i->getHelpdeskUrl().'
'); + $sprows[] = array('' . anchor($i_link, $displayname , 'title="' . $displayname . '"') . '' . $i->getEntityId() . '',$iconsblock,$regcol, '
'.$i->getHelpdeskUrl().'
'); } } $data['sprows'] = $sprows; diff --git a/styles/default.css b/styles/default.css index b6a4e4fe3..309ba8633 100644 --- a/styles/default.css +++ b/styles/default.css @@ -2678,6 +2678,10 @@ ol.group li { font-size: small; } +.s2 { + font-size: smaller; +} + form { counter-reset: fieldsets; background: #93aedf; diff --git a/styles/orange.css b/styles/orange.css index 0044137ae..1fbd7c10c 100644 --- a/styles/orange.css +++ b/styles/orange.css @@ -2678,6 +2678,10 @@ ol.group li { font-size: small; } +.s2 { + font-size: smaller; +} + form { counter-reset: fieldsets; background: #ffe90d; diff --git a/styles/red.css b/styles/red.css index 0c4a2b1f5..4605b79e8 100644 --- a/styles/red.css +++ b/styles/red.css @@ -2678,6 +2678,10 @@ ol.group li { font-size: small; } +.s2 { + font-size: smaller; +} + form { counter-reset: fieldsets; background: #6b90d4; diff --git a/theme3/sass/partials/_page.scss b/theme3/sass/partials/_page.scss index 4bb3302b4..949af0145 100644 --- a/theme3/sass/partials/_page.scss +++ b/theme3/sass/partials/_page.scss @@ -2307,3 +2307,7 @@ ol.group { font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace; font-size: small; } +.s2 { + font-size: smaller; + +}