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

Commit 7e1d2f3

Browse files
committed
merging in @wolf's changes
2 parents f68cb31 + cd2c4aa commit 7e1d2f3

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

css/obBase.css

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3775,7 +3775,7 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
37753775
.modal .homeModal-heroText {
37763776
position: absolute;
37773777
bottom: 0px;
3778-
top: 210px;
3778+
top: 200px;
37793779
color: #fff;
37803780
font-size: 20px;
37813781
line-height: 22px;
@@ -4267,10 +4267,12 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
42674267
}
42684268
42694269
#ov1 .server-connect-modal .message-bar > div {
4270-
background-color: red;
4271-
padding: 8px 10px;
4270+
background-color: #C62D2D;
4271+
padding: 8px 20px;
42724272
line-height: 2.2;
42734273
display: inline-block;
4274+
border-bottom-left-radius: 4px;
4275+
border-bottom-right-radius: 4px;
42744276
}
42754277
42764278
#ov1 .server-connect-modal .message-bar .message-bar-close {
@@ -4298,8 +4300,8 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
42984300
#ov1 .server-config-row .connection-failed::after {
42994301
content: '';
43004302
position: absolute;
4301-
width: 10px;
4302-
background-color: red;
4303+
width: 6px;
4304+
background-color: #C62D2D;
43034305
top: 0;
43044306
left: 0;
43054307
bottom: 0;

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 padding15 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-checkmark 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">

js/templates/serverConnectModal.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="message-bar positionFixed alignCenter slide-out js-msg-bar">
22
<div>
3-
<span class="message-bar-close clickable positionRelative pull-right alignCenter js-msg-bar-close">X</span>
4-
<span class="ion-alert"></span>
3+
<span class="message-bar-close ion-android-close clickable marginLeft15 marginTop7 pull-right textOpacity75 alignCenter js-msg-bar-close"></span>
4+
<!-- <span class="ion-alert marginRight5"></span> -->
55
<span class="js-message-bar-content"></span>
66
</div>
77
</div>

0 commit comments

Comments
 (0)