Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
id="uri"
type="text"
placeholder="Enter Jira ticket URL"
class="form-control"
class="url-ticket-input form-control"
aria-label="Small"
aria-describedby="inputGroup-sizing-sm"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,14 @@ input[type="date"]::-webkit-clear-button {
::ng-deep .cdk-overlay-container {
z-index: 1100 !important;
}

.url-ticket-input {
border: 1px solid #ced4da !important;
border-radius: 0.25rem !important;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be better if the selector is .form-control.url-ticket-input to avoid the use of "!important".

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually it's not necessary the !important tag, I'll remove it.


::ng-deep .ngx-timepicker {
border: 1px solid #ced4da !important;
border-radius: 0.25rem;
padding: 2px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
placeholder="Enter Jira ticket URL"
id="uri"
formControlName="uri"
class="form-control"
class="url-ticket-input form-control"
/>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,14 @@
.hidden {
display: none;
}

.url-ticket-input {
border: 1px solid #ced4da;
border-radius: 0.25rem;
}

::ng-deep .ngx-timepicker {
border: 1px solid #ced4da;
border-radius: 0.25rem;
padding: 2px;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a new line at the end of the file.