Skip to content

Commit 4ee7c37

Browse files
authored
feat: TT-578 improve the style of the form element (#823)
* feat: TT-578 improve the style of the form element
1 parent bf8977e commit 4ee7c37

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

src/app/modules/shared/components/details-fields/details-fields.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
id="uri"
6666
type="text"
6767
placeholder="Enter Jira ticket URL"
68-
class="form-control"
68+
class="url-ticket-input form-control"
6969
aria-label="Small"
7070
aria-describedby="inputGroup-sizing-sm"
7171
/>

src/app/modules/shared/components/details-fields/details-fields.component.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,14 @@ input[type="date"]::-webkit-clear-button {
119119
::ng-deep .cdk-overlay-container {
120120
z-index: 1100 !important;
121121
}
122+
123+
.url-ticket-input {
124+
border: 1px solid #ced4da;
125+
border-radius: 0.25rem;
126+
}
127+
128+
::ng-deep .ngx-timepicker {
129+
border: 1px solid #ced4da;
130+
border-radius: 0.25rem;
131+
padding: 2px;
132+
}

src/app/modules/time-clock/components/entry-fields/entry-fields.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
placeholder="Enter Jira ticket URL"
2121
id="uri"
2222
formControlName="uri"
23-
class="form-control"
23+
class="url-ticket-input form-control"
2424
/>
2525
</div>
2626

src/app/modules/time-clock/components/entry-fields/entry-fields.component.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,14 @@
99
.hidden {
1010
display: none;
1111
}
12+
13+
.url-ticket-input {
14+
border: 1px solid #ced4da;
15+
border-radius: 0.25rem;
16+
}
17+
18+
::ng-deep .ngx-timepicker {
19+
border: 1px solid #ced4da;
20+
border-radius: 0.25rem;
21+
padding: 2px;
22+
}

0 commit comments

Comments
 (0)