Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
],
"func-names": [0],
"no-console": ["error", { "allow": ["warn", "error", "info"] }],
"@typescript-eslint/no-explicit-any": "off"
"@typescript-eslint/no-explicit-any": "warn"
}
}
4 changes: 3 additions & 1 deletion ui/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
"{}": false
}
}
]
],
"@typescript-eslint/no-explicit-any": "warn",
"no-console": ["error", { "allow": ["warn", "error", "info"] }]
}
}
8 changes: 4 additions & 4 deletions ui/src/components/AccountPage/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}

&__intro {
background-image: url("../../../public/images/login_bg.webp");
background-image: url('../../../public/images/login_bg.webp');
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
Expand Down Expand Up @@ -61,7 +61,7 @@
-webkit-box-direction: normal;
-webkit-box-align: center;
-ms-flex-align: center;
grid-row-gap: .5rem;
grid-row-gap: 0.5rem;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
Expand All @@ -70,7 +70,7 @@
flex-direction: column;
left: 8%;
position: absolute;
row-gap: .5rem;
row-gap: 0.5rem;
top: 30%;
z-index: 10;

Expand All @@ -79,7 +79,7 @@
font-family: $font-family-secondary;
font-size: 3.8rem;
font-weight: $font-weight-extra-bold;
letter-spacing: .04em;
letter-spacing: 0.04em;
line-height: 3.625rem;
// max-width: $px-260;
text-transform: uppercase;
Expand Down
52 changes: 22 additions & 30 deletions ui/src/components/AdvancePropertise/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
margin-bottom: 20px;
grid-template-columns: 1fr;
gap: 20px;
}
}
/**
* Styles for the option label in the AdvancePropertise component.
*
Expand Down Expand Up @@ -51,15 +51,15 @@
margin-bottom: 0.75rem;
}
.Radio {
width: calc(33.33333% - .66667rem);
padding: .5rem;
width: calc(33.33333% - 0.66667rem);
padding: 0.5rem;
margin: 0 !important;
}
.FieldLabel {
margin-bottom: $px-8;
}
.info-style {
margin-top: .75rem;
margin-top: 0.75rem;
margin-bottom: 1.5rem;
.Info__border {
border-left-color: #0469e3;
Expand All @@ -73,11 +73,11 @@
font-size: $size-font-large;
line-height: $line-height-default;
margin-left: 2.75rem;
margin-top: -.25rem !important;
margin-top: -0.25rem !important;
}
.ToggleWrap {
margin-top: 0.5rem;
padding: 0 0.5rem
padding: 0 0.5rem;
}
.Field {
margin-bottom: $px-24;
Expand All @@ -97,10 +97,10 @@
.Checkbox__label {
height: auto;
}
}
}
}
}
}
}
}
.Select__menu {
position: relative;
z-index: 10000;
Expand All @@ -109,49 +109,44 @@
position: relative;
border: 2px solid red;
z-index: 10000;
}
}
}
.Radio-class{
.Radio-class {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 20px;
grid-template-columns: 1fr;

}
.dropdown-choices-wrapper{
.dropdown-choices-wrapper {
height: auto;
width: auto;
border: 1px solid #dde3ee;
margin: 10px 10px;
}
.element-wrapper{
.element-wrapper {
margin: 20px 10px;
display: flex;
justify-content: space-between;
align-items: center;
transition: opacity 0.2s ease, border 0.2s ease;
position: relative;


}
.element-wrapper.dragging {
opacity: 0.4;

opacity: 0.4;
}


.dropdown-filter-wrapper{
.dropdown-filter-wrapper {
background-color: $color-brand-white-base;
border-radius: $px-4;
box-shadow: 0 $px-4 $px-30 rgba(0,0,0,.25);
box-shadow: 0 $px-4 $px-30 rgba(0, 0, 0, 0.25);
position: absolute;

top: 45px;
right: -9px;
width: auto;
z-index:99;
z-index: 99;
li {
button {
align-items: center;
Expand All @@ -160,7 +155,7 @@
font-size: $size-font-medium;
padding: $px-8 $px-12;
}

&:hover {
background-color: $color-base-white-10;
color: $color-brand-primary-base;
Expand All @@ -177,16 +172,13 @@
}
}
}
.button-filter-wrapper{
.button-filter-wrapper {
margin: 20px 10px;
display: flex;
justify-content: space-between;
align-items: center;

}
.read-only-text{

font-size: 14px;
color: $color-stepper-title;

.read-only-text {
font-size: 14px;
color: $color-stepper-title;
}
7 changes: 4 additions & 3 deletions ui/src/components/Card/card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
transition: box-shadow 0.3s ease;
width: 20rem;
&:hover {
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .12), 0 0 2px 0 rgba(0, 0, 0, .14);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12),
0 0 2px 0 rgba(0, 0, 0, 0.14);
cursor: pointer;
}
}
Expand Down Expand Up @@ -43,9 +44,9 @@
line-height: $line-height-default;
overflow: hidden;
padding: 0;
white-space: normal;
white-space: normal;
-webkit-line-clamp: 2;
line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
}

Expand Down
10 changes: 5 additions & 5 deletions ui/src/components/Common/Card/card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
.action_list,
.trigger_list {
//border: 1px solid $color-base-gray-40;
border: 1px solid #6C5CE766;
border: 1px solid #6c5ce766;
border-radius: $px-6;
flex: 0 10%;
cursor: pointer;
Expand Down Expand Up @@ -76,7 +76,7 @@
* @cssproperty box-shadow - The box shadow effect to apply.
* @cssvalue 0 3px $px-5 $px-2 rgb(215 215 215) - The specific box shadow values.
*/
.connector_list:hover {
.connector_list:hover {
box-shadow: 0 3px $px-5 $px-2 rgb(215 215 215);
}

Expand Down Expand Up @@ -156,7 +156,7 @@
color: $color-stepper-title;
}
}
.Card__disabled{
.Card__disabled {
cursor: not-allowed;
opacity: .5;
}
opacity: 0.5;
}
31 changes: 15 additions & 16 deletions ui/src/components/Common/ProgressBar/progressBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,18 @@
*
*/
.ProgressBar {
border-radius: $space-4;

overflow: hidden;
&__bar {

border-radius: inherit;
height: inherit;
transition: width 100ms linear;
}
&__circle{
stroke-width: 5%;
transform: rotate(-90deg);
transform-origin: 50% 50%;
transition: stroke-dashoffset 1s;
}
}
border-radius: $space-4;

overflow: hidden;
&__bar {
border-radius: inherit;
height: inherit;
transition: width 100ms linear;
}
&__circle {
stroke-width: 5%;
transform: rotate(-90deg);
transform-origin: 50% 50%;
transition: stroke-dashoffset 1s;
}
}
7 changes: 4 additions & 3 deletions ui/src/components/Common/Settings/Settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
.PageLayout {
width: 100%;
}
.PageLayout__head, .PageLayout__leftSidebar {
.PageLayout__head,
.PageLayout__leftSidebar {
border-top: 0 none;
}
.PageLayout--primary {
Expand All @@ -21,8 +22,8 @@
margin-left: 15rem;
padding-top: $px-8;
}
}
}
}
}
.action-component-title {
justify-content: space-between;
width: calc(100vw - 326px);
Expand Down
21 changes: 11 additions & 10 deletions ui/src/components/ContentMapper/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
.Search__v2 {
background-color: $color-brand-white-base;
height: 2.5rem;
width: 100%!important;
width: 100% !important;
.Search-input-show {
width: 100%!important;
width: 100% !important;
}
}
// svg {
Expand Down Expand Up @@ -98,15 +98,16 @@
width: 20px;
}
}
&:hover, &.active-ct {
&:hover,
&.active-ct {
background-color: $color-brand-white-base;
.cms-title {
span {
color: $color-brand-primary-base;
}
}
}
}
}
}
.mapped-icon {
circle {
Expand All @@ -117,7 +118,7 @@
.Dropdown__menu--primary {
right: 0;
top: 1.5rem;
}
}
}
.content-type-list {
padding-left: $px-12;
Expand Down Expand Up @@ -202,7 +203,7 @@ div .select {
width: 100%;
max-width: 100% !important;
}
}
}
div .table-row {
display: flex;
justify-content: space-between;
Expand Down Expand Up @@ -249,7 +250,7 @@ div .table-row {
.filter-wrapper {
background-color: $color-brand-white-base;
border-radius: $px-4;
box-shadow: 0 $px-4 $px-30 rgba(0,0,0,.25);
box-shadow: 0 $px-4 $px-30 rgba(0, 0, 0, 0.25);
position: absolute;
right: $px-12;
top: $px-50;
Expand All @@ -262,7 +263,7 @@ div .table-row {
font-size: $size-font-medium;
padding: $px-8 $px-12;
}

&:hover {
background-color: $color-base-white-10;
color: $color-brand-primary-base;
Expand All @@ -288,12 +289,12 @@ div .table-row {
background-color: $color-brand-fail-light;
cursor: pointer;
}
.mapper-emptystate{
.mapper-emptystate {
padding: 10px 10px;
}
.Checkbox .Checkbox__tick svg {
display: block;
}
.advanced-setting-button {
padding: 5px;
}
}
Loading
Loading