Skip to content

Commit c74193d

Browse files
authored
Merge pull request #2089 from devtron-labs/fix/config-toolbar
fix: styling issue for command bar
2 parents faa86cc + 4c4515a commit c74193d

File tree

3 files changed

+58
-1
lines changed

3 files changed

+58
-1
lines changed

src/components/app/details/triggerView/CiWebhookDebuggingModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export default function CiWebhookModal({
171171
>
172172
<div>
173173
Received at{' '}
174-
<button className="dc__transparent filter-icon">
174+
<button className="dc__transparent fs-12 dc__align-right">
175175
<i className="fa fa-caret-down" />
176176
</button>
177177
</div>

src/components/app/list/list.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
z-index: var(--page-header-index);
2929
}
3030

31+
// TODO (Arun): Remove unused css after filter clean up
3132
.app-list-filters.filters .filter {
3233
min-width: unset;
3334
flex-basis: unset;

src/css/base.scss

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4931,3 +4931,59 @@ textarea::placeholder {
49314931
animation-iteration-count: infinite;
49324932
animation-timing-function: linear;
49334933
}
4934+
4935+
.dc__transparent-div {
4936+
position: fixed;
4937+
background: transparent;
4938+
top: 0px;
4939+
left: 0px;
4940+
right: 0;
4941+
height: 100vh;
4942+
z-index: var(--transparent-div-index);
4943+
}
4944+
4945+
@-webkit-keyframes pulse {
4946+
0% {
4947+
-webkit-box-shadow: 0 0 0 0 rgba(255, 131, 0, 0.4);
4948+
}
4949+
4950+
70% {
4951+
-webkit-box-shadow: 0 0 0 10px rgba(255, 131, 0, 0.4);
4952+
}
4953+
4954+
100% {
4955+
-webkit-box-shadow: 0 0 0 0 rgba(255, 131, 0, 0.4);
4956+
}
4957+
}
4958+
4959+
@keyframes pulse {
4960+
0% {
4961+
-moz-box-shadow: 0 0 0 0 rgba(255, 131, 0, 0.4);
4962+
box-shadow: 0 0 0 0 rgba(255, 131, 0, 0.4);
4963+
}
4964+
4965+
70% {
4966+
-moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
4967+
box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
4968+
}
4969+
4970+
100% {
4971+
-moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
4972+
box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
4973+
}
4974+
}
4975+
4976+
.badge {
4977+
font-size: 10px;
4978+
border-radius: 10px;
4979+
background-color: var(--B500);
4980+
font-weight: 600;
4981+
font-style: normal;
4982+
font-stretch: normal;
4983+
line-height: 1.4;
4984+
letter-spacing: normal;
4985+
text-align: center;
4986+
color: var(--white);
4987+
padding: 2px 10px;
4988+
margin-left: 10px;
4989+
}

0 commit comments

Comments
 (0)