v1.5-alpha.1

This commit is contained in:
carodej
2020-05-15 17:31:25 +02:00
parent cfecf542ca
commit 41656235fc
97 changed files with 4108 additions and 2118 deletions
+25 -7
View File
@@ -1,3 +1,6 @@
@import '@assets/vue-file-manager/_variables';
@import '@assets/vue-file-manager/_mixins';
// Forms
.form-wrapper {
padding: 0 20px;
@@ -34,29 +37,44 @@
}
.icon {
background: $theme;
padding: 14px 18px;
background: black;
padding: 15px 18px;
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
@include font-size(16);
text-align: center;
line-height: 0;
svg path {
fill: white;
path, polyline {
stroke: white;
}
}
}
}
.input-label {
@include font-size(15);
@include font-size(12);
color: $text;
font-weight: 700;
margin-bottom: 5px;
display: block;
margin-bottom: 5px;
}
@media (prefers-color-scheme: dark) {
.inline-wrapper {
&.icon-append {
.icon {
background: rgba($theme, 0.1);
path, polyline {
stroke: $theme;
}
}
}
}
.input-label {
color: $dark_mode_text_primary;
}