fix section-title

pull/2901/head
Alex Aragón 7 years ago
parent 2b1d000d5d
commit 690cb7bb73
  1. 18
      app/Resources/public/css/base.css
  2. 2
      main/inc/lib/display.lib.php
  3. 2
      main/inc/lib/skill.lib.php

@ -765,8 +765,8 @@ input[type=checkbox], input[type=radio] {
}
.box-widget .card-body{
padding: 2px;
background: #1a3548;
color: #fff;
background: #f5f5f5;
color: #666;
}
.card .content {
@ -843,7 +843,13 @@ input[type=checkbox], input[type=radio] {
height: 120px;
margin: 20px auto 10px auto;
}
.section-title{
font-size: 18px;
padding-bottom: 1rem;
border-bottom: 1px solid #cdcdcd;
font-weight: bold;
margin-bottom: 2rem;
}
#easypiechart-blue .percent {
color: #30a5ff;
}
@ -3175,12 +3181,6 @@ form .formw .freeze {
/* ****************************************************
CSS SKILL
**************************************************** */
#skillList .header-title{
padding: 8px;
border-bottom: 2px solid #ddd;
font-weight: bold;
margin-bottom: 15px;
}
.skills-badges{
display: grid;
grid-gap: 1rem;

@ -1875,7 +1875,7 @@ class Display
$title .= "<small> $second_title<small>";
}
return '<'.$size.'>'.Security::remove_XSS($title).'</'.$size.'>';
return '<'.$size.' class="section-title">'.Security::remove_XSS($title).'</'.$size.'>';
}
public static function page_subheader2($title, $second_title = null)

@ -1437,7 +1437,7 @@ class Skill extends Model
}
if ($addTitle) {
$tableResult .= '<div class="header-title">'.get_lang('AchievedSkills').'</div>
$tableResult .= '<h3 class="section-title">'.get_lang('AchievedSkills').'</div>
<div class="skills-badges">
';
}

Loading…
Cancel
Save