summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUdo Walter2020-11-16 04:44:40 +0100
committerUdo Walter2020-11-16 04:44:40 +0100
commit2a2a02801edab63071006e7c610a5171d504d9b5 (patch)
treef32a775be008a481479247d7cde34dd222842b09
parentMatch version to guacamole (diff)
downloadbwlp-guacamole-ext-2a2a02801edab63071006e7c610a5171d504d9b5.tar.gz
bwlp-guacamole-ext-2a2a02801edab63071006e7c610a5171d504d9b5.tar.xz
bwlp-guacamole-ext-2a2a02801edab63071006e7c610a5171d504d9b5.zip
Small ui fixes
Add margin to the top of the logo Disable line breaks for the location status text
-rw-r--r--src/main/resources/styles/login.css1
-rw-r--r--src/main/resources/templates/groupField.html4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/main/resources/styles/login.css b/src/main/resources/styles/login.css
index a85c6a8..2ac7429 100644
--- a/src/main/resources/styles/login.css
+++ b/src/main/resources/styles/login.css
@@ -22,6 +22,7 @@
}
.login-ui .selection-logo {
+ margin-top: 40px;
margin-bottom: 40px;
}
diff --git a/src/main/resources/templates/groupField.html b/src/main/resources/templates/groupField.html
index 8c3ce4f..19434de 100644
--- a/src/main/resources/templates/groupField.html
+++ b/src/main/resources/templates/groupField.html
@@ -6,12 +6,12 @@
<td>
{{ group.name }}
</td>
- <td class="bwlp-group-status">
+ <td class="bwlp-group-status" style="white-space: nowrap">
{{ group.freeCount }} {{ 'GROUP_SELECTION.AVAILABLE' | translate }} ({{ group.offlineCount }} offline)
</td>
<td style="width: 200px">
<div ng-if="group.password" class="bwlp-password">
- <span ng-if="data.id !== group.id">{{ 'GROUP_SELECTION.PASSWORD_PROTECTED' | translate }}</span>
+ <span ng-if="data.id !== group.id" style="white-space: nowrap">{{ 'GROUP_SELECTION.PASSWORD_PROTECTED' | translate }}</span>
<input ng-if="data.id === group.id" ng-model="data.password"
type="password" placeholder="Password" class="bwlp-password-input" required>
</div>