2020-05-25 13:05:05 +00:00
|
|
|
.form form {
|
2020-06-11 13:20:20 +00:00
|
|
|
display: block;
|
|
|
|
height: fit-content;
|
|
|
|
margin-bottom: 75px;
|
2020-05-17 19:10:46 +00:00
|
|
|
transition: all .3s ease;
|
2020-06-11 13:20:20 +00:00
|
|
|
|
|
|
|
@include breakpoint(lg) {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-06-25 16:52:15 +00:00
|
|
|
margin-bottom: 0;
|
2020-06-11 13:20:20 +00:00
|
|
|
transition: all .3s ease;
|
|
|
|
}
|
2020-05-17 19:10:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-register>form>input[type=submit] {
|
|
|
|
@extend .button,
|
|
|
|
.text-bold,
|
|
|
|
.text-uppercase,
|
|
|
|
.reversed,
|
|
|
|
.button-secondary,
|
|
|
|
.bordered;
|
2020-06-16 13:52:10 +00:00
|
|
|
height: auto;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 1em;
|
|
|
|
left: 10%;
|
|
|
|
white-space: normal;
|
|
|
|
width: 80%;
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
@include breakpoint(lg) {
|
|
|
|
height: 3rem;
|
|
|
|
left: 0;
|
|
|
|
margin: 0;
|
|
|
|
margin-left: auto;
|
2020-06-25 16:52:15 +00:00
|
|
|
margin-top: 32px;
|
2020-06-16 13:52:10 +00:00
|
|
|
position: relative;
|
|
|
|
width: auto;
|
|
|
|
}
|
2020-05-17 19:10:46 +00:00
|
|
|
}
|
2020-05-18 12:37:06 +00:00
|
|
|
|
|
|
|
.form-label {
|
|
|
|
/*flex: 1 1 auto;*/
|
|
|
|
|
2020-09-14 13:41:10 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column; /* To align label and input vertically */
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
margin-top: 1.8rem;
|
|
|
|
text-transform: uppercase;
|
2020-05-18 12:37:06 +00:00
|
|
|
|
2020-09-14 13:41:10 +00:00
|
|
|
&.is-light {
|
2020-05-18 12:37:06 +00:00
|
|
|
color: var(--color-label-light);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-11 13:20:20 +00:00
|
|
|
[name^='line-'] {
|
|
|
|
|
|
|
|
@include breakpoint(lg) {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
.is-full-width {
|
|
|
|
box-sizing: border-box;
|
|
|
|
flex: 1 1 100%;
|
|
|
|
}
|
|
|
|
|
2020-05-17 19:10:46 +00:00
|
|
|
.is-half-width {
|
|
|
|
box-sizing: border-box;
|
2020-06-11 13:20:20 +00:00
|
|
|
flex: 0 1 calc(50% - 2.5rem);
|
2020-05-17 19:10:46 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
.input-text-like input:not([type='file']):not([type='search']):not([type='submit']),
|
|
|
|
.input-text-like textarea {
|
2020-05-17 19:10:46 +00:00
|
|
|
-webkit-tap-highlight-color: var(--color-grey-7);
|
|
|
|
background-color: var(--color-input-background);
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 2px solid var(--color-input-background);
|
|
|
|
color: var(--color-input-text);
|
|
|
|
/*flex: 1 1 0; Problem on Firefox for input type date*/
|
|
|
|
line-height: 1;
|
2020-05-25 14:23:25 +00:00
|
|
|
margin-top: 0.8rem;
|
2020-05-17 19:10:46 +00:00
|
|
|
min-width: 0;
|
|
|
|
padding: 1rem;
|
2020-05-18 12:37:06 +00:00
|
|
|
|
2020-05-17 19:10:46 +00:00
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
border-bottom: 2px solid var(--color-input-active);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
height: 100px;
|
2020-06-16 13:52:10 +00:00
|
|
|
resize: vertical;
|
2020-05-17 19:10:46 +00:00
|
|
|
}
|
2020-05-18 12:37:06 +00:00
|
|
|
|
|
|
|
.content-box {
|
|
|
|
|
2020-05-12 17:14:50 +00:00
|
|
|
&.with-form {
|
2019-05-14 15:32:42 +00:00
|
|
|
|
2020-06-18 18:02:54 +00:00
|
|
|
/*solid-set-default:not([name='user-thumb']) {
|
2020-05-18 12:37:06 +00:00
|
|
|
clear: both;
|
2019-11-12 11:34:33 +00:00
|
|
|
display: flex!important;
|
2019-08-06 12:32:55 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
max-width: 100%;
|
|
|
|
|
2020-06-18 18:02:54 +00:00
|
|
|
solid-form-label-text {
|
2019-08-06 12:32:55 +00:00
|
|
|
float: left;
|
|
|
|
width: 50%;
|
|
|
|
}
|
2020-06-09 22:03:58 +00:00
|
|
|
}*/
|
2020-05-18 12:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-06 12:32:55 +00:00
|
|
|
|
2020-06-18 18:02:54 +00:00
|
|
|
/*solid-form[set-user-id-select] {
|
2019-10-25 13:35:14 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
input[type="submit"] {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2019-09-25 14:16:17 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
select {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}*/
|
2019-08-06 12:32:55 +00:00
|
|
|
|
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
/* WIDGETS SIB (let in .content-box to override default styles) */
|
2019-08-06 12:32:55 +00:00
|
|
|
|
2020-09-14 13:41:10 +00:00
|
|
|
solid-form-dropdown-autocompletion-label,
|
2020-09-14 14:07:45 +00:00
|
|
|
solid-form-multipleselect-autocompletion-label,
|
2020-05-26 08:11:59 +00:00
|
|
|
hubl-status {
|
2019-05-31 18:37:14 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
.ss-main {
|
|
|
|
font-weight: normal;
|
|
|
|
text-transform: none;
|
2020-05-25 14:23:25 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
|
2020-05-25 14:23:25 +00:00
|
|
|
.ss-single-selected {
|
|
|
|
background-color: var(--color-input-background);
|
|
|
|
border: none;
|
|
|
|
border-radius: 0px;
|
|
|
|
color: var(--color-input-text);
|
|
|
|
font-weight: normal;
|
|
|
|
margin-top: 0.8rem;
|
|
|
|
min-height: 4.6rem;
|
|
|
|
padding-left: 1.2rem;
|
|
|
|
|
|
|
|
.ss-disabled {
|
|
|
|
color: var(--color-grey-5);
|
|
|
|
}
|
2020-05-12 17:14:50 +00:00
|
|
|
|
2020-05-25 14:23:25 +00:00
|
|
|
.ss-arrow {
|
|
|
|
font-size: 1.8rem;
|
|
|
|
margin: 0 18px 0 0;
|
2019-06-07 09:01:34 +00:00
|
|
|
|
2020-05-25 14:23:25 +00:00
|
|
|
span {
|
|
|
|
border: solid var(--color-input-icon);
|
|
|
|
border-width: 0 2px 2px 0;
|
|
|
|
}
|
2019-05-31 18:37:14 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-18 12:37:06 +00:00
|
|
|
}
|
2019-05-31 18:37:14 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
.ss-list {
|
|
|
|
color: var(--color-select-list);
|
|
|
|
font-weight: normal;
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
}
|
2019-06-07 09:01:34 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
/* Additional styles for the select to add a member in circle-edit */
|
|
|
|
.block.select-add>form {
|
2020-06-11 13:20:20 +00:00
|
|
|
display: block;
|
|
|
|
|
|
|
|
@include breakpoint(lg) {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
margin-bottom: 2.6rem;
|
|
|
|
}
|
2019-06-07 09:01:34 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
label {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ss-main {
|
|
|
|
min-width: 35vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type='submit'] {
|
|
|
|
@extend .button,
|
|
|
|
.text-bold,
|
|
|
|
.text-uppercase,
|
|
|
|
.button-complementary,
|
|
|
|
.bordered;
|
2020-06-11 13:20:20 +00:00
|
|
|
margin: 10px 0;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
@include breakpoint(lg) {
|
|
|
|
margin: auto 0 auto 2.2rem;
|
|
|
|
width: auto;
|
|
|
|
}
|
2020-05-18 12:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* End */
|
|
|
|
|
2020-06-18 18:02:54 +00:00
|
|
|
solid-form-date {
|
2020-05-18 12:37:06 +00:00
|
|
|
input[type="date"] {
|
|
|
|
background-image: url("/images/calendar.svg");
|
|
|
|
background-position: right 12px top 50%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 1.4rem;
|
|
|
|
color: var(--color-input-icon);
|
|
|
|
cursor: default;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
margin-top: 1.6rem;
|
|
|
|
max-width: 50vw;
|
|
|
|
padding-right: 3rem; /* Needed to replace the close icon in FF when you are selecting a date */
|
|
|
|
padding-top: 1.2rem; /* Needed to center the close icon in FF when you are selecting a date */
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::-webkit-calendar-picker-indicator {
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 8px;
|
2019-05-31 18:37:14 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
&::-webkit-clear-button {
|
|
|
|
cursor: pointer;
|
|
|
|
margin-bottom: 5px; /* Needed to compensate padding-top: 1.2rem; for the close icon in FF */
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2019-08-06 12:32:55 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
&::-webkit-inner-spin-button {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-06 12:32:55 +00:00
|
|
|
|
2020-06-18 18:02:54 +00:00
|
|
|
solid-form-file {
|
2020-06-16 10:38:09 +00:00
|
|
|
|
|
|
|
div {
|
2020-05-18 12:37:06 +00:00
|
|
|
display: flex;
|
2020-06-16 11:02:42 +00:00
|
|
|
flex-direction: column-reverse;
|
2020-06-16 10:38:09 +00:00
|
|
|
align-items: center;
|
2020-06-16 11:02:42 +00:00
|
|
|
margin-top: 1.8rem;
|
|
|
|
|
|
|
|
@include breakpoint(lg) {
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
justify-content: flex-end;
|
2020-06-16 10:38:09 +00:00
|
|
|
}
|
2020-06-16 11:02:42 +00:00
|
|
|
|
2020-06-16 10:38:09 +00:00
|
|
|
input[type='file'] {
|
|
|
|
height: 0.1px;
|
|
|
|
opacity: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
width: 0.1px;
|
|
|
|
z-index: -1;
|
2019-08-06 12:32:55 +00:00
|
|
|
}
|
2020-06-16 11:02:42 +00:00
|
|
|
|
|
|
|
input[type='text'] {
|
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
@include breakpoint(lg) {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
2019-08-06 12:32:55 +00:00
|
|
|
|
2020-06-16 10:38:09 +00:00
|
|
|
label {
|
|
|
|
@extend .button,
|
|
|
|
.text-bold,
|
|
|
|
.text-uppercase,
|
|
|
|
.button-primary,
|
|
|
|
.bordered;
|
2020-06-16 11:02:42 +00:00
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
@include breakpoint(lg) {
|
|
|
|
margin: auto 2.2rem;
|
|
|
|
width: auto;
|
|
|
|
}
|
2020-06-16 10:38:09 +00:00
|
|
|
}
|
2020-05-18 12:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-14 13:41:10 +00:00
|
|
|
/*solid-form-multipleselect {
|
2020-05-18 12:37:06 +00:00
|
|
|
|
|
|
|
&.select-skills .ss-values .ss-disabled::before {
|
|
|
|
content: "Select skills";
|
|
|
|
}
|
2020-04-08 10:57:05 +00:00
|
|
|
|
2020-09-14 13:41:10 +00:00
|
|
|
solid-form-dropdown-autocompletion-label > label {
|
2020-05-18 12:37:06 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.ss-main {
|
|
|
|
font-weight: normal;
|
|
|
|
margin-bottom: 7.8rem;
|
|
|
|
margin-top: 1.6rem;
|
|
|
|
max-width: 50vw;
|
|
|
|
text-transform: none;
|
|
|
|
|
|
|
|
.ss-multi-selected {
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--color-input-background);
|
|
|
|
border: none;
|
|
|
|
border-radius: 0px;
|
2019-05-31 18:37:14 +00:00
|
|
|
display: flex;
|
2020-05-18 12:37:06 +00:00
|
|
|
justify-content: flex-end;
|
|
|
|
min-height: 4.2rem;
|
|
|
|
padding-left: 1.2rem;
|
2019-05-31 18:37:14 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
.ss-add {
|
|
|
|
font-size: 1.8rem;
|
|
|
|
margin: 0 18px 0 0;
|
2019-05-31 18:37:14 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
span.ss-plus {
|
|
|
|
background: var(--color-input-icon);
|
2019-05-31 18:37:14 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
&::after {
|
|
|
|
background: var(--color-input-icon);
|
2019-05-31 18:37:14 +00:00
|
|
|
}
|
2020-05-18 12:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ss-values {
|
|
|
|
background: transparent;
|
|
|
|
position: absolute;
|
|
|
|
top: 6rem;
|
|
|
|
width: 100%;
|
2019-05-31 18:37:14 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
.ss-disabled {
|
|
|
|
color: transparent;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
left: calc(1.2rem - 5px);
|
|
|
|
position: absolute;
|
|
|
|
top: calc(-6rem + 7px);
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
color: var(--color-grey-5);
|
|
|
|
font-weight: normal;
|
2019-05-31 18:37:14 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-11 18:20:13 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
.ss-value {
|
|
|
|
@extend .skill;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.ss-value-delete {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2020-05-11 18:20:13 +00:00
|
|
|
}
|
2019-05-31 18:37:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
.ss-list {
|
|
|
|
color: var(--color-input-text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}*/
|
2019-05-14 15:32:42 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
/* CUSTOM WIDGETS */
|
2019-05-14 15:32:42 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
hubl-member-form {
|
|
|
|
width: 100%;
|
2019-05-14 15:32:42 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-05-14 15:32:42 +00:00
|
|
|
|
2020-05-18 12:37:06 +00:00
|
|
|
[name='member-form__input'] {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
2019-05-14 15:32:42 +00:00
|
|
|
|
2020-09-14 14:07:45 +00:00
|
|
|
solid-form-dropdown-autocompletion-label,
|
|
|
|
solid-form-multipleselect-autocompletion-label {
|
2020-05-18 12:37:06 +00:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type='submit'] {
|
|
|
|
background-color: var(--color-select-add-button-background);
|
|
|
|
border: 1px solid var(--color-select-add-button);
|
|
|
|
color: var(--color-select-add-button);
|
2019-05-14 15:32:42 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-31 18:37:14 +00:00
|
|
|
}
|