Skip to content

Commit

Permalink
[TUI-60][TUI-70] bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lghiur committed Jul 18, 2024
1 parent f359eda commit 704ace6
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 15 deletions.
4 changes: 2 additions & 2 deletions lib/index.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/index.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/tyk-ui.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/tyk-ui.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tyk-technologies/tyk-ui",
"version": "4.3.2",
"version": "4.3.3",
"description": "Tyk UI - ui reusable components",
"main": "src/index.js",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions src/common/css/typography.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ h1 {

h2 {
font-size: var(--xl-font-size);
line-height: var(--lg-line-height);
line-height: var(--xl-line-height);
}

h3 {
Expand All @@ -28,12 +28,12 @@ h3 {

h4 {
font-size: var(--md-font-size);
line-height: var(--md-line-height);
line-height: var(--sm-line-height);
}

h5 {
font-size: var(--sm-font-size);
line-height: var(--md-line-height);
line-height: var(--sm-line-height);
}

h6 {
Expand Down Expand Up @@ -176,7 +176,7 @@ td.text-ellipsis {

.section-group-title {
margin-block-end: 5px;
text-transform: uppercase;
text-transform: capitalize;

.tyk-icon {
margin-inline-start: 5px;
Expand Down
2 changes: 1 addition & 1 deletion src/common/css/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
--md-line-height: 22px;
--lg-line-height: 23px;
--xl-line-height: 24px;
--xxl-line-height: 30px;
--xxl-line-height: 36px;

--xs-font-size: 13px;
--sm-font-size: 14px;
Expand Down
4 changes: 4 additions & 0 deletions src/form/components/Combobox2/Combobox.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
.tyk-combobox2__entry-field {
background-color: transparent;
cursor: not-allowed;

&.disabled {
color: var(--form-control-disabled-color);
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/form/components/DatePicker/DatePicker.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
}

.flatpickr-day.inRange {
box-shadow: -5px 0 0 var(--color-primary-light),5px 0 0 var(--color-primary-light);
box-shadow: -5px 0 0 var(--color-primary-light),5px 0 0 var(--color-primary-light) !important;
}
4 changes: 2 additions & 2 deletions src/form/components/Dropdown/Dropdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@
cursor: pointer;
color: var(--tyk-dropdown-item-text-color);
display: flex;
font-size: 12px;
font-size: 14px;
padding-block: 7px;
padding-inline: 24px;
text-transform: uppercase;
text-transform: capitalize;
text-decoration: none;
inline-size: 100%;

Expand Down

0 comments on commit 704ace6

Please sign in to comment.