Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit f74d703

Browse files
committed
changes
1 parent dfae0ba commit f74d703

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

css/obBase.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3746,7 +3746,7 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
37463746
.modal .homeModal-heroText {
37473747
position: absolute;
37483748
bottom: 0px;
3749-
top: 210px;
3749+
top: 200px;
37503750
color: #fff;
37513751
font-size: 20px;
37523752
line-height: 22px;
@@ -4261,7 +4261,7 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
42614261
#ov1 .server-config-row .connection-failed::after {
42624262
content: '';
42634263
position: absolute;
4264-
width: 10px;
4264+
width: 6px;
42654265
background-color: red;
42664266
top: 0;
42674267
left: 0;

js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ app.serverConfigs = new ServerConfigsCl();
9595
app.serverConfigs.fetch().done(() => {
9696
if (!app.serverConfigs.getActive()) {
9797
app.serverConfigs.setActive(
98-
app.serverConfigs.serverConfigs.create({
98+
app.serverConfigs.create({
9999
name: polyglot.t('serverConnectModal.defaultServerName'),
100100
default: true
101101
}).id

js/templates/baseModal.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="js-modal-inner-wrap <%= ob.innerWrapperClass %>">
1+
<div class="js-modal-inner-wrap color-primary custCol-primary <%= ob.innerWrapperClass %>">
22
<div class="js-modal-close <%= ob.closeButtonClass %> <% !ob.showCloseButton && print('hide') %>">
33
<h2 class="ion-android-close clickable"></h2>
44
</div>

js/templates/serverConfigRow.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="rowItem padding2015 positionRelative <% ob.status === 'failed' && print('connection-failed') %>">
1+
<div class="rowItem padding12 positionRelative <% ob.status === 'failed' && print('connection-failed') %>">
22
<div class="flexRow">
33
<div class="table">
44
<div>
@@ -14,15 +14,15 @@
1414
<% print(ob.status === 'not-connected' ? polyglot.t('serverConnectModal.connect') : polyglot.t('Retry')) %>
1515
</a>
1616
<% if (!ob.default) { %>
17-
<a class="btn btn-txt btn-secondary custCol-secondary pull-right marginLeft5 positionWrapper js-edit-config">
17+
<a class="btn btn-txt btn-secondary custCol-secondary pull-right marginLeft5 positionWrapper js-edit-config tooltip" data-tooltip="Edit Configuration">
1818
<span class="ion-ios-gear textOpacity1 fullCentered"></span>
1919
</a>
20-
<a class="btn btn-txt btn-secondary custCol-secondary pull-right fontSize13 positionWrapper js-delete-config">
20+
<a class="btn btn-txt btn-secondary custCol-secondary pull-right fontSize13 positionWrapper js-delete-config tooltip" data-tooltip="Delete Configuration">
2121
<span class="ion-ios-trash textOpacity1 fullCentered"></span>
2222
</a>
2323
<% } %>
2424
<% } else if (ob.status === 'connected') { %>
25-
<span class="ion-connection-bars textOpacity1"></span> <%= polyglot.t('serverConnectModal.connected') %>
25+
<span class="ion-radio-waves textOpacity1"></span> <%= polyglot.t('serverConnectModal.connected') %>
2626
<% } else if (ob.status === 'connecting') { %>
2727
<span class="vertAlignMid"><%= polyglot.t('serverConnectModal.connecting') %>...</span>
2828
<a class="btn btn-txt btn-secondary custCol-secondary fontSize13 marginLeft10 js-cancel">

0 commit comments

Comments
 (0)