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 c6f1fb1 commit c76b221Copy full SHA for c76b221
web_src/css/base.css
@@ -898,6 +898,24 @@ a.label,
898
color: var(--color-text);
899
}
900
901
+/* reduce table padding, needed especially for dense admin tables */
902
+.ui.table > thead > tr > th,
903
+.ui.table > tbody > tr > td,
904
+.ui.table > tr > td {
905
+ padding: 6px 3px;
906
+}
907
+/* use more horizontal padding on first and last items for visuals */
908
+.ui.table > thead > tr > th:first-of-type,
909
+.ui.table > tbody > tr > td:first-of-type,
910
+.ui.table > tr > td:first-of-type {
911
+ padding-left: 10px;
912
913
+.ui.table > thead > tr > th:last-of-type,
914
+.ui.table > tbody > tr > td:last-of-type,
915
+.ui.table > tr > td:last-of-type {
916
+ padding-right: 10px;
917
918
+
919
img.ui.avatar,
920
.ui.avatar img,
921
.ui.avatar svg {
0 commit comments