1
0
Fork 0
mirror of synced 2024-05-21 05:02:37 +12:00

Small style fixes

This commit is contained in:
Eldad Fux 2020-04-30 19:35:39 +03:00
parent c8ed7ffabd
commit 2e31be7372
4 changed files with 15 additions and 8 deletions

View file

@ -32,7 +32,7 @@ const APP_EMAIL_SECURITY = 'security@localhost.test'; // Default security email
const APP_USERAGENT = APP_NAME.'-Server v%s. Please report abuse at %s';
const APP_MODE_ADMIN = 'admin';
const APP_PAGING_LIMIT = 15;
const APP_CACHE_BUSTER = 115;
const APP_CACHE_BUSTER = 116;
const APP_VERSION_STABLE = '0.5.3';
const APP_STORAGE_UPLOADS = '/storage/uploads';
const APP_STORAGE_CACHE = '/storage/cache';

View file

@ -67,12 +67,12 @@
<small data-ls-bind="({{task.delay|ms2hum}} Delay)"></small>
</span>
</span>
<small data-ls-if="undefined === {{task.previous}}">
<small data-ls-if="undefined === {{task.previous}}" class="text-size-small">
None.
</small>
</td>
<td data-title="">
<div data-ui-modal class="modal box close" data-button-alias="none" data-open-event="task-update-{{task.$id}}">
<div data-ui-modal class="modal box sticky-footer close" data-button-alias="none" data-open-event="task-update-{{task.$id}}">
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
<h1>Update Task</h1>
@ -99,7 +99,7 @@
<label data-ls-attrs="for=status-{{task.$id}}" class="margin-bottom">Status
<div class="margin-top-small">
<input name="status" type="radio" checked="checked" required data-ls-bind="{{task.status}}" value="play" /> &nbsp; <span>Play</span>
<input name="status" type="radio" checked="checked" required data-ls-bind="{{task.status}}" value="play" /> &nbsp; <span>Play</span> &nbsp;
<input name="status" type="radio" required data-ls-bind="{{task.status}}" value="pause" /> &nbsp; <span>Pause</span>
</div>
</label>
@ -194,7 +194,9 @@
</div>
</div>
<button type="submit">Update</button> &nbsp; <button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
<footer>
<button type="submit">Update</button> &nbsp; <button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</footer>
</form>
</div>
@ -230,7 +232,7 @@
</div>
<div class="clear">
<div data-ui-modal class="modal box close" data-button-text="Add Task">
<div data-ui-modal class="modal box close sticky-footer" data-button-text="Add Task">
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
<h1>Add Task</h1>
@ -338,7 +340,9 @@
</div>
</div>
<button type="submit">Create</button> &nbsp; <button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
<footer>
<button type="submit">Create</button> &nbsp; <button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</footer>
</form>
</div>
</div>

View file

@ -38,6 +38,8 @@
<div class="row responsive margin-top-xl">
<div class="col span-8">
<label>&nbsp;</label>
<div class="box margin-bottom-large">
<div class="text-align-center">
<img src="" data-ls-attrs="src={{user|gravatar}}" data-size="200" alt="User Avatar" class="avatar huge margin-top-negative-xxl" />
@ -91,7 +93,7 @@
</div>
</div>
</div>
<div class="col span-4">
<div class="col span-4 sticky-top">
<label>User ID</label>
<div class="input-copy margin-bottom">
<input id="uid" type="text" autocomplete="off" placeholder="" data-ls-bind="{{user.$id}}" disabled data-forms-copy>

View file

@ -22,6 +22,7 @@ const configApp = {
'public/scripts/services/env.js',
'public/scripts/services/form.js',
'public/scripts/services/markdown.js',
'public/scripts/services/rtl.js',
'public/scripts/services/sdk.js',
'public/scripts/services/search.js',
'public/scripts/services/timezone.js',