Skip to content

Commit d28ffd6

Browse files
authored
GitHub 764: Editable grid border display issue on very small screens (#1925)
### version 7.12.2 *Released*: 19 January 2026 - GitHub Issue 764: Editable grid border display issue on very small screens - override default bootstrap table-responsive style for xs scren table border
1 parent d41c5d8 commit d28ffd6

4 files changed

Lines changed: 19 additions & 3 deletions

File tree

packages/components/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@labkey/components",
3-
"version": "7.12.1",
3+
"version": "7.12.2",
44
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
55
"sideEffects": false,
66
"files": [

packages/components/releaseNotes/components.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# @labkey/components
22
Components, models, actions, and utility functions for LabKey applications and pages
33

4+
### version 7.12.2
5+
*Released*: 19 January 2026
6+
- GitHub Issue 764: Editable grid border display issue on very small screens
7+
- override default bootstrap table-responsive style for xs scren table border
8+
49
### version 7.12.1
510
*Released*: 14 January 2026
611
- Merge from release26.1-SNAPSHOT to develop

packages/components/src/theme/app/overrides.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,14 @@ body {
8080
padding-left: 5px;
8181
padding-right: 5px;
8282
}
83+
84+
// _table.scss (GitHub Issue 764)
85+
.table-responsive {
86+
@media screen and (max-width: $screen-xs-max) {
87+
border: unset;
88+
}
89+
90+
> .table-bordered {
91+
border: 1px solid $table-border-color;
92+
}
93+
}

0 commit comments

Comments
 (0)