summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-10-14 12:01:07 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-10-14 12:01:07 +0300
commitb32471648fecd900fd21827b8d1fc20d9fa782df (patch)
treebe1a18ce81a45fb1c2c1af7de81e39789df012a3
parent670ed7924ecf40bce3cce2e8a1bd7b4fcd177ed8 (diff)
downloadwebui-vue-b32471648fecd900fd21827b8d1fc20d9fa782df.tar.xz
fix form file
-rw-r--r--src/components/_sila/Global/FormFile.vue11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/components/_sila/Global/FormFile.vue b/src/components/_sila/Global/FormFile.vue
index 8ccdd6fb..9f02d4fb 100644
--- a/src/components/_sila/Global/FormFile.vue
+++ b/src/components/_sila/Global/FormFile.vue
@@ -127,7 +127,9 @@ export default {
.clear-selected-file {
display: flex;
align-items: center;
- background-color: theme-color('light');
+ @include themify($themes) {
+ background-color: themed('surface-primary');
+ }
.btn {
width: 36px;
height: 36px;
@@ -154,4 +156,11 @@ export default {
margin-left: 0px !important;
}
}
+
+.btn-light {
+ @include themify($themes) {
+ background-color: themed('btn-secondary');
+ border-color: themed('surface-primary');
+ }
+}
</style>