make cf-title look a legend

ref Chill-project/Chill-Person#12
This commit is contained in:
Julien Fastré 2016-11-13 20:59:08 +01:00
parent 428007284e
commit 5fd6aa95e5
4 changed files with 30 additions and 2 deletions

View File

@ -4416,6 +4416,19 @@ span.entity.entity-activity.activity-reason {
font-weight: bold;
background-color: #43b29d; }
/* the cf title will look like a `form legend h2` */
span.cf-title {
display: block;
font-weight: 700;
border-bottom: 3px solid #cccccc;
margin-bottom: 1em; }
span.cf-subtitle {
display: block;
font-weight: 600;
border-bottom: 1px solid #cccccc;
margin-bottom: 1em; }
html, body {
min-height: 100%;
font-family: 'Open Sans'; }

File diff suppressed because one or more lines are too long

View File

@ -5,6 +5,7 @@
@import 'custom/report';
@import 'custom/person';
@import 'custom/pagination';
@import 'custom/custom-fields';
html,body {
min-height:100%;

View File

@ -0,0 +1,14 @@
/* the cf title will look like a `form legend h2` */
span.cf-title {
display: block;
font-weight: 700;
border-bottom: 3px solid $light-grey;
margin-bottom: 1em;
}
span.cf-subtitle {
display: block;
font-weight: 600;
border-bottom: 1px solid $light-grey;
margin-bottom: 1em;
}