Skip to content

Commit

Permalink
Fix table alignment classes (#30144)
Browse files Browse the repository at this point in the history
Fixes #30142, regression from
#30047. I searched the codebase
and only `bottom aligned` was definitely not in use so I removed it.
  • Loading branch information
silverwind authored Mar 27, 2024
1 parent e516018 commit b08c7af
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions web_src/css/modules/table.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,31 @@
}
}

.ui.table[class*="left aligned"],
.ui.table [class*="left aligned"] {
text-align: left;
}

.ui.table[class*="center aligned"],
.ui.table [class*="center aligned"] {
text-align: center;
}

.ui.table[class*="right aligned"],
.ui.table [class*="right aligned"] {
text-align: right;
}

.ui.table[class*="top aligned"],
.ui.table [class*="top aligned"] {
vertical-align: top;
}

.ui.table[class*="middle aligned"],
.ui.table [class*="middle aligned"] {
vertical-align: middle;
}

.ui.table th.collapsing,
.ui.table td.collapsing {
width: 1px;
Expand Down

0 comments on commit b08c7af

Please sign in to comment.