diff --git a/webadmin/src/theme.scss b/webadmin/src/theme.scss index 3229348f8..453f82d8a 100644 --- a/webadmin/src/theme.scss +++ b/webadmin/src/theme.scss @@ -83,6 +83,14 @@ $table-border-color: transparent !default; border-color: $brand-danger !important; } +.elide-table-cell { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + max-width: 300px; + width: 300px; +} + // ---------------------------- // Main classes // ---------------------------- @@ -109,6 +117,11 @@ html { margin: 0 auto; } +.content-large { + max-width: 970px; + margin: 0 auto; +} + .navbar-brand-icon { padding: 5px 15px; } @@ -360,7 +373,7 @@ html { } .card-large { - max-width: 800px; + max-width: 970px; } .text-success { @@ -909,3 +922,16 @@ $graphs-success-alt: lighten(#27CE65, 20%); opacity: 1; } } + +// ---------------------------- +// Users view +// ---------------------------- + +.group-badge { + margin-right: 10px; +} + +.no-wrap { + text-overflow: ellipsis; + white-space: nowrap; +}