Skip to content

Commit aef549f

Browse files
authored
Merge pull request #834 from Bonymol-aot/FWF-5349/ui-issues
FWF-5349 : [BugFix] Updated and overrided styles for ui fixes
2 parents dae71e5 + dc40bc2 commit aef549f

File tree

2 files changed

+34
-4
lines changed

2 files changed

+34
-4
lines changed

forms-flow-theme/scss/bpmn.scss

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@ $gray-darkest: var(--ff-gray-darkest);
1515
height: 100%;
1616
}
1717

18+
.border-1{
19+
border-width: 1px !important;
20+
}
21+
.border-dark{
22+
--ff-border-opacity: 1;
23+
border-color: rgba(var(--ff-dark-rgb), var(--ff-border-opacity)) !important;
24+
}
25+
.border{
26+
border: var(--ff-border-width) var(--ff-border-style) var(--ff-border-color) !important;
27+
}
1828
.grab-cursor {
1929
cursor: move;
2030
cursor: grab;
@@ -43,8 +53,13 @@ $gray-darkest: var(--ff-gray-darkest);
4353
}
4454

4555
.bpmn-main-container-editor{
46-
width: 100%;
47-
display: flex;
48-
resize: vertical;
49-
overflow: hidden;
56+
width: 100%;
57+
display: flex;
58+
margin-bottom: 1.25rem;
59+
margin-top: 0.625rem;
60+
height: auto;
61+
resize: vertical;
62+
overflow: hidden;
63+
max-height: 37.5rem;
64+
min-height: 28.125rem;
5065
}

forms-flow-theme/scss/external/formio.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,22 @@ $gray-dark: var(--ff-gray-dark);
2929
}
3030
.formbuilder .formarea .breadcrumb li .badge.bg-primary{
3131
background-color: $primary !important;
32+
}
33+
.formbuilder .formarea .breadcrumb li .badge-primary{
34+
background-color: $primary !important;
3235
}
3336
.formbuilder .formarea .breadcrumb li .badge.bg-success{
3437
background-color: $success !important;
38+
}
39+
.formbuilder .formarea .breadcrumb li .badge-success{
40+
background-color: $success !important;
3541
}
3642
.formbuilder .formarea .breadcrumb li .badge.bg-info{
3743
background-color: $gray-dark !important;
3844
}
45+
.formbuilder .formarea .breadcrumb li .badge-info{
46+
background-color: $gray-dark !important;
47+
}
3948

4049
// Settings button on hovering formio component
4150
.component-settings-button {
@@ -71,6 +80,12 @@ $gray-dark: var(--ff-gray-dark);
7180
line-height: var(--spacer-150);
7281
}
7382
}
83+
.nav-tabs .nav-link {
84+
margin-bottom: calc(-1*var(--ff-nav-tabs-border-width));
85+
border: var(--ff-nav-tabs-border-width) solid rgba(0,0,0,0);
86+
border-top-left-radius: 0.375rem;
87+
border-top-right-radius: 0.375rem;
88+
}
7489
}
7590

7691
// Define a list of ignored components for reuse

0 commit comments

Comments
 (0)