summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/custom/_modal.scss
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-06-20 11:52:15 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-06-20 11:52:15 +0300
commit931c2cad0da1a84e3df0745b385ec06d29cc2634 (patch)
treec5ee97bcd812a1a45cd645ab334613cdada13118 /src/assets/styles/bmc/custom/_modal.scss
parent58d1eb3b899b730877299be6635adceb127fe6a9 (diff)
downloadwebui-vue-931c2cad0da1a84e3df0745b385ec06d29cc2634.tar.xz
fix Modals, Tables and Pages: event logs, inventoty, post logs, operttions, global styles
Diffstat (limited to 'src/assets/styles/bmc/custom/_modal.scss')
-rw-r--r--src/assets/styles/bmc/custom/_modal.scss67
1 files changed, 62 insertions, 5 deletions
diff --git a/src/assets/styles/bmc/custom/_modal.scss b/src/assets/styles/bmc/custom/_modal.scss
index e2fa0cd8..725d4672 100644
--- a/src/assets/styles/bmc/custom/_modal.scss
+++ b/src/assets/styles/bmc/custom/_modal.scss
@@ -1,12 +1,69 @@
+.modal-dialog {
+ margin: 25vh auto 0;
+}
+
+.modal-content {
+ border-radius: 16px;
+}
+
.modal-header {
+ align-items: center;
+ border-bottom: 1px solid $faint-secondary-primary-10;
.close {
font-weight: normal;
color: theme-color("dark");
opacity: 1;
}
- .modal-title {
- font-size: 1.25rem;
- font-weight: normal;
- line-height: 1.3;
- }
}
+
+.modal-body {
+ display: flex;
+ justify-content: flex-start;
+}
+
+.modal-footer {
+ border-top: 1px solid $faint-secondary-primary-10;
+}
+
+#modal-reset .modal-body {
+ flex-direction: column;
+}
+
+#generate-csr .custom-select,
+#upload-certificate .custom-select,
+#modal-user .custom-select {
+ background-color: transparent;
+ border: 1px solid $on-surface-tretiatry;
+ border-radius: 4px;
+ background-image: url('~@/assets/images/icon-chevron.svg');
+}
+
+// file-input-modal
+.modal-file-body {
+ display: flex;
+ padding: 0;
+ justify-content: center;
+}
+
+.file-input_container > .custom-file {
+ width: 432px;
+ height: 357px;
+}
+
+.custom-file-input ~ .custom-file-label {
+ background-color: transparent;
+ border: 1px dashed rgba(12, 28, 41, 0.6);
+ box-sizing: border-box;
+ border-radius: 8px;
+ width: 432px;
+ height: 357px;
+ display: flex;
+ align-items: center;
+ text-align: center;
+ white-space: normal;
+ justify-content: center;
+}
+
+.custom-file-input ~ .custom-file-label::after {
+ display: none;
+} \ No newline at end of file