We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6f62ee commit 20a3c15Copy full SHA for 20a3c15
web_src/css/base.css
@@ -881,6 +881,24 @@ a.label,
881
color: var(--color-text);
882
}
883
884
+/* reduce table padding, needed especially for dense admin tables */
885
+.ui.table > thead > tr > th,
886
+.ui.table > tbody > tr > td,
887
+.ui.table > tr > td {
888
+ padding: 6px 3px;
889
+}
890
+/* use more horizontal padding on first and last items for visuals */
891
+.ui.table > thead > tr > th:first-of-type,
892
+.ui.table > tbody > tr > td:first-of-type,
893
+.ui.table > tr > td:first-of-type {
894
+ padding-left: 10px;
895
896
+.ui.table > thead > tr > th:last-of-type,
897
+.ui.table > tbody > tr > td:last-of-type,
898
+.ui.table > tr > td:last-of-type {
899
+ padding-right: 10px;
900
901
+
902
img.ui.avatar,
903
.ui.avatar img,
904
.ui.avatar svg {
0 commit comments