Parcourir la source

Fix table alignment classes (#30144)

Fixes https://github.com/go-gitea/gitea/issues/30142, regression from
https://github.com/go-gitea/gitea/pull/30047. I searched the codebase
and only `bottom aligned` was definitely not in use so I removed it.
tags/v1.22.0-rc0
silverwind il y a 2 mois
Parent
révision
b08c7afe5f
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 25 ajouts et 0 suppressions
  1. 25
    0
      web_src/css/modules/table.css

+ 25
- 0
web_src/css/modules/table.css Voir le fichier

@@ -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;

Chargement…
Annuler
Enregistrer