mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
26 lines
559 B
SCSS
26 lines
559 B
SCSS
@import "../common/foundation/variables";
|
|
@import "../common/foundation/mixins";
|
|
|
|
.add-upload .fa-plus {
|
|
font-size: 10px;
|
|
position: relative;
|
|
left: -5px;
|
|
bottom: -5px;
|
|
text-shadow: -1px -1px 0 $btn-primary-background-color,
|
|
1px 1px 0 $btn-primary-background-color,
|
|
1px -1px 0 $btn-primary-background-color,
|
|
-1px 1px 0 $btn-primary-background-color;
|
|
}
|
|
|
|
.upload-selector {
|
|
input[type="text"]{
|
|
width: 520px;
|
|
}
|
|
input[type="file"] {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
}
|
|
.description {
|
|
color: $primary_medium;
|
|
}
|
|
}
|