TeaWeb/shared/css/static/modal-identity.scss

190 lines
2.6 KiB
SCSS
Raw Normal View History

2019-08-30 23:06:39 +02:00
@import "mixin";
:global {
.modal-body.modal-identity-improve {
padding: 0!important;
display: flex!important;
flex-direction: column!important;
justify-content: flex-start!important;
.container-tooltip {
flex-grow: 0!important;
flex-shrink: 0!important;
min-width: unset!important;
position: relative;
width: .8em;
margin-right: .5em;
font-size: .9em;
display: inline-flex;
flex-direction: column;
justify-content: center;
vertical-align: middle;
margin-bottom: .1em;
img {
height: 1em;
width: 1em;
2019-08-30 23:06:39 +02:00
align-self: center;
font-size: 1.2em;
}
2019-08-30 23:06:39 +02:00
.tooltip {
display: none;
}
}
2019-08-30 23:06:39 +02:00
.options, .status {
flex-grow: 0;
flex-shrink: 0;
2019-08-30 23:06:39 +02:00
padding: 1em;
2019-08-30 23:06:39 +02:00
.title {
color: #387fb5;
}
2019-08-30 23:06:39 +02:00
.row {
display: flex;
flex-direction: row;
justify-content: stretch;
2019-08-30 23:06:39 +02:00
div {
flex-grow: 1;
flex-shrink: 1;
min-width: 4em;
&:not(:first-of-type) {
margin-left: 1em;
}
}
}
2019-08-30 23:06:39 +02:00
}
.status {
border-top: 3px solid #20262d;
}
2019-08-30 23:06:39 +02:00
.buttons {
flex-grow: 0;
flex-shrink: 0;
2019-08-30 23:06:39 +02:00
margin: 0 1em 1em;
2019-08-30 23:06:39 +02:00
display: flex;
flex-direction: row;
justify-content: flex-end;
2019-08-30 23:06:39 +02:00
button {
min-width: 8em;
2019-08-30 23:06:39 +02:00
&:not(:first-of-type) {
margin-left: 1em;
}
}
}
}
.modal-body.modal-identity-import {
padding: 0!important;
2019-08-30 23:06:39 +02:00
display: flex;
flex-direction: column;
justify-content: flex-start;
2019-08-30 23:06:39 +02:00
@include user-select(none);
2019-08-30 23:06:39 +02:00
.container-status {
display: flex;
flex-direction: row;
justify-content: center;
2019-08-30 23:06:39 +02:00
margin: 1em 1em -1em;
height: 1.6em;
2019-08-30 23:06:39 +02:00
overflow: hidden;
2019-08-30 23:06:39 +02:00
color: #389738;
&.error {
color: #973838;
}
2019-08-30 23:06:39 +02:00
&.loading {
color: #96903a;
}
2019-08-30 23:06:39 +02:00
&.hidden {
height: 0;
}
2019-08-30 23:06:39 +02:00
a {
align-self: center;
}
2019-08-30 23:06:39 +02:00
@include transition(.2s ease-in-out);
2019-08-30 23:06:39 +02:00
}
.container-text, .container-file {
display: flex;
flex-direction: row;
justify-content: stretch;
2019-08-30 23:06:39 +02:00
> label {
flex-shrink: 0;
flex-grow: 0;
2019-08-30 23:06:39 +02:00
width: 10em;
2019-08-30 23:06:39 +02:00
display: flex;
flex-direction: row;
justify-content: flex-start;
2019-08-30 23:06:39 +02:00
padding-left: .25em;
align-self: center;
2019-08-30 23:06:39 +02:00
margin-right: 1em;
2019-08-30 23:06:39 +02:00
.radio-button {
align-self: center;
margin-right: .5em;
}
}
2019-08-30 23:06:39 +02:00
> * {
2019-08-30 23:06:39 +02:00
align-self: center;
}
.form-group {
margin-bottom: 1.75em;
width: 100%;
}
2019-08-30 23:06:39 +02:00
button {
min-width: 8em;
margin-right: 1em;
}
2019-08-30 23:06:39 +02:00
}
.footer {
flex-shrink: 0;
flex-grow: 0;
2019-08-30 23:06:39 +02:00
padding: 1em;
2019-08-30 23:06:39 +02:00
display: flex;
flex-direction: row;
justify-content: flex-end;
2019-08-30 23:06:39 +02:00
button {
min-width: 8em;
}
2019-08-30 23:06:39 +02:00
}
.file-selector {
display: none;
}
2019-08-30 23:06:39 +02:00
}
}