mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:48:53 +08:00
38 lines
614 B
SCSS
38 lines
614 B
SCSS
.upload-selector {
|
|
input[type="text"] {
|
|
width: calc(100% - 20px);
|
|
}
|
|
input[type="file"] {
|
|
font-size: $font-0;
|
|
line-height: $line-height-medium;
|
|
}
|
|
.description {
|
|
color: $primary-medium;
|
|
}
|
|
.radios {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
&:first-of-type {
|
|
margin-bottom: 1em;
|
|
}
|
|
input,
|
|
label {
|
|
min-height: 20px;
|
|
line-height: $line-height-medium;
|
|
margin: 0;
|
|
}
|
|
.radio {
|
|
padding-left: 5px;
|
|
}
|
|
.inputs {
|
|
margin-top: 10px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.uploaded-image-preview {
|
|
height: 150px;
|
|
}
|