1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 07:39:43 +02:00

sticky form headers, category improvements, dropdown improvements

This commit is contained in:
Harvey Kandola 2017-10-11 16:05:24 -04:00
parent 785d12191e
commit 1e3f8e51f0
18 changed files with 787 additions and 686 deletions

View file

@ -203,6 +203,47 @@
}
}
.form-header-sticky {
@include sticky();
top: 0;
padding: 20px 0;
background-color: $color-white;
> .left-zone {
float: left;
text-align: left;
width: 65%;
background-color: $color-white;
> .title {
font-size: 1.4rem;
font-weight: normal;
font-family: $font-semibold;
pointer-events: none;
font-weight: bold;
color: $color-off-black;
@extend .no-select;
}
> .tip {
color: $color-input;
font-size: 1.2rem;
margin: 5px 0 30px;
padding: 0;
font-family: $font-light;
text-align: left;
@extend .no-select;
}
}
> .right-zone {
float: right;
text-align: right;
width: 30%;
background-color: $color-white;
}
}
.form-divider {
margin-top: 30px;
}