2020-03-27 20:59:38 +00:00
|
|
|
.group-form {
|
2020-06-02 22:42:09 +00:00
|
|
|
@include standard-panel;
|
2020-05-16 03:48:08 +00:00
|
|
|
padding: 20px;
|
2020-05-29 00:58:37 +00:00
|
|
|
|
|
|
|
&,
|
2020-05-16 03:48:08 +00:00
|
|
|
div {
|
|
|
|
box-sizing: border-box;
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
input[type=text],
|
|
|
|
textarea {
|
|
|
|
&.standard {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0 0 10px;
|
|
|
|
}
|
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
textarea {
|
|
|
|
float: left;
|
|
|
|
height: 88px;
|
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
.group-form__file-label {
|
2020-05-29 00:58:37 +00:00
|
|
|
@include font-size(12);
|
|
|
|
@include font-weight(light);
|
2020-05-16 03:48:08 +00:00
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
float: left;
|
2020-05-29 00:58:37 +00:00
|
|
|
height: 20px;
|
|
|
|
padding: 3px 0 0 33px;
|
2020-06-07 03:55:00 +00:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-05-16 03:48:08 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-image: url('../images/sprite-post-functions.png');
|
|
|
|
background-size: 100px 1200px;
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
&:hover {
|
2020-05-30 19:50:08 +00:00
|
|
|
color: var(--brand-color);
|
2020-05-16 03:48:08 +00:00
|
|
|
background-position: 0 -100px;
|
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
&.group-form__file-label--selected {
|
|
|
|
background-position: 0 -100px;
|
2020-05-30 19:50:08 +00:00
|
|
|
color: var(--brand-color);
|
2020-05-16 03:48:08 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
.group-form__file {
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2020-10-11 21:23:19 +00:00
|
|
|
button { float: right; }
|
2020-05-29 00:58:37 +00:00
|
|
|
}
|