Skip to content

Commit

Permalink
EPMRPP-90322 || formatter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maria-hambardzumian committed May 17, 2024
1 parent 505775d commit b2b70b3
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 32 deletions.
2 changes: 1 addition & 1 deletion app/src/common/css/variables/newColors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ $COLOR--system-message-error: #db3549;
$COLOR--system-message-error-line-100: #fccbcb;
$COLOR--system-message-error-line-200: #ffc0bd;
$COLOR--system-message-information-line-100: #ced3db;
$COLOR--system-notification-marker: #00FF66;
$COLOR--system-notification-marker: #00ff66;
$COLOR--system-issue-group: #3e7be6;
$COLOR--product-bug-group: #d32f2f;
$COLOR--automation-bug-group: #ffc208;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

.organization-block {
.organization-block {
display: flex;
align-items: center;
justify-content: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

@mixin truncate ($maxSize: 'auto') {
@mixin truncate($maxSize: 'auto') {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

@mixin truncate ($maxSize: 100%) {
@mixin truncate($maxSize: 100%) {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
Expand Down
5 changes: 3 additions & 2 deletions app/src/layouts/common/appSidebar/appSidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@
}
}

.user-control, .service-control {
.user-control,
.service-control {
width: 100%;
box-sizing: border-box;
padding: 0 8px;
Expand Down Expand Up @@ -160,7 +161,7 @@
height: 8px;
background-color: $COLOR--system-notification-marker;
border-radius: 50%;
border: 2px solid #222222;
border: 2px solid $COLOR--darkmode-gray-500;
right: 20%;
top: 20%;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

@mixin truncate ($maxSize: 100%) {
@mixin truncate($maxSize: 100%) {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
Expand Down Expand Up @@ -59,10 +59,10 @@
height: 1px;
width: 100%;
background-color: $COLOR--almost-black;
margin:16px 0;
margin: 16px 0;
}

.assistance{
.assistance {
font-family: $FONT-ROBOTO-REGULAR;
font-size: 13px;
line-height: 20px;
Expand Down Expand Up @@ -97,6 +97,4 @@
background-color: $COLOR--system-notification-marker;
border-radius: 50%;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
height: 16px;
}
}

}

.popover {
Expand All @@ -54,7 +53,6 @@
display: flex;
align-items: center;
padding-left: 16px;

}

.arrow-icon {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
height: 16px;
}
}

}

.title {
Expand All @@ -56,8 +55,6 @@
align-items: center;
}



.popover {
padding: 8px 0px;
margin-left: 4px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* limitations under the License.
*/


.menu-item {
white-space: nowrap;
background-color: $COLOR--darkmode-gray-475;
Expand All @@ -29,7 +28,7 @@
align-items: center;
padding: 8px 16px;

&.rights{
&.rights {
font-family: $FONT-ROBOTO-REGULAR;
color: $COLOR--darkmode-gray-150;
cursor: default;
Expand All @@ -39,7 +38,6 @@
color: $COLOR--white-two;
background-color: $COLOR--darkmode-gray-500;


path {
fill: $COLOR--white-two;
}
Expand All @@ -59,7 +57,7 @@
height: 1px;
width: 100%;
background-color: $COLOR--almost-black;
margin:16px 0;
margin: 16px 0;
}

.hover {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

@mixin truncate ($maxSize: 100%) {
@mixin truncate($maxSize: 100%) {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
height: 22px;
}

.icon {
width: 16px;
height: 16px;
svg * {
fill: $COLOR--e-300;
}
}
.icon {
width: 16px;
height: 16px;

svg * {
fill: $COLOR--e-300;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}
}

.integrate-configurations{
.integrate-configurations {
display: flex;
gap: 24px;
align-items: center;
Expand All @@ -43,7 +43,7 @@
margin-top: 6px;
}

.rule-section-layout{
.rule-section-layout {
margin-top: 26px;
}

Expand All @@ -64,7 +64,7 @@
max-width: initial;
}

.rule-group-list{
.rule-group-list {
max-width: initial;
}

Expand Down

0 comments on commit b2b70b3

Please sign in to comment.