diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-19 19:32:54 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-19 19:32:54 +0100 |
commit | 8e11b2d6f0970be979d561f99c5a7a6309536e75 (patch) | |
tree | 274af5b98382fb7a1acac4de7bc924f5c9fa3185 | |
parent | 79bd2ddd9cfdafa25c679efe3bd4d63f67960285 (diff) | |
download | volse-hubzilla-8e11b2d6f0970be979d561f99c5a7a6309536e75.tar.gz volse-hubzilla-8e11b2d6f0970be979d561f99c5a7a6309536e75.tar.bz2 volse-hubzilla-8e11b2d6f0970be979d561f99c5a7a6309536e75.zip |
fix some wrapping issues
-rw-r--r-- | view/css/mod_chat.css | 4 | ||||
-rw-r--r-- | view/css/mod_webpages.css | 16 | ||||
-rw-r--r-- | view/css/mod_wiki.css | 1 |
3 files changed, 15 insertions, 6 deletions
diff --git a/view/css/mod_chat.css b/view/css/mod_chat.css index 57aecd557..c56091102 100644 --- a/view/css/mod_chat.css +++ b/view/css/mod_chat.css @@ -16,6 +16,10 @@ text-align: right; } +#chatrooms-index td:nth-child(3){ + white-space: nowrap; +} + #chatrooms-index th:nth-child(4), #chatrooms-index td:nth-child(4){ padding: 7px 10px 7px 7px; diff --git a/view/css/mod_webpages.css b/view/css/mod_webpages.css index 805d95dc2..f665800f1 100644 --- a/view/css/mod_webpages.css +++ b/view/css/mod_webpages.css @@ -6,27 +6,31 @@ width: 100%; } -#webpage-list-table th:nth-child(1){ +#webpage-list-table th:nth-child(1) { padding: 7px 3px 7px 10px; white-space: nowrap; } -#webpage-list-table td:nth-child(1){ +#webpage-list-table td:nth-child(1) { padding: 7px 3px 7px 10px; } -#webpage-list-table th:nth-child(2){ +#webpage-list-table th:nth-child(2) { + white-space: nowrap; +} + +#webpage-list-table td:nth-child(3) { white-space: nowrap; } #webpage-list-table th:nth-child(7), -#webpage-list-table td:nth-child(7){ +#webpage-list-table td:nth-child(7) { padding: 7px 3px; white-space: nowrap; } #webpage-list-table th:nth-child(8), -#webpage-list-table td:nth-child(8){ +#webpage-list-table td:nth-child(8) { padding: 7px 10px 7px 7px; white-space: nowrap; } @@ -192,4 +196,4 @@ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; -}
\ No newline at end of file +} diff --git a/view/css/mod_wiki.css b/view/css/mod_wiki.css index 83f17c820..b44ec4fd8 100644 --- a/view/css/mod_wiki.css +++ b/view/css/mod_wiki.css @@ -41,6 +41,7 @@ #wikis-index th:nth-child(3), #wikis-index td:nth-child(3){ padding: 7px 10px 7px 7px; + white-space: nowrap; } #wikis-index th:nth-child(4), |