Skip to content

Commit 45f0000

Browse files
author
Serghey Rodin
committed
Merge branch 'master' of github.com:serghey-rodin/vesta
2 parents f89a666 + ae5aa15 commit 45f0000

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+135
-144
lines changed

bin/v-list-user-log

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ json_list() {
2424
echo "{"
2525
for str in $logs; do
2626
eval $str
27+
CMD=${CMD//\"/\\\"}
2728
echo -n ' "'$ID'": {
2829
"CMD": "'$CMD'",
2930
"UNDO": "'$UNDO'",

install/vst-install-debian.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,7 @@ if [ "$clamd" = 'no' ]; then
556556
fi
557557
if [ "$spamd" = 'no' ]; then
558558
software=$(echo "$software" | sed -e "s/spamassassin//")
559+
software=$(echo "$software" | sed -e "s/libmail-dkim-perl//")
559560
fi
560561
if [ "$dovecot" = 'no' ]; then
561562
software=$(echo "$software" | sed -e "s/dovecot-imapd//")

upd/switch_rpath.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ for ip in $(ls /usr/local/vesta/data/ips); do
2727
done
2828
echo "</IfModule>" >> $conf
2929

30+
sed -i "s/LogFormat \"%h/LogFormat \"%a/g" /etc/apache2/apache2.conf
31+
3032
# Restarting apache
3133
/usr/sbin/apachectl restart > /dev/null 2>&1
3234

web/css/styles.min.css

Lines changed: 24 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -595,15 +595,6 @@ a {
595595
text-decoration: line-through;
596596
}
597597

598-
.unselectable {
599-
-webkit-touch-callout: none;
600-
-webkit-user-select: none;
601-
-khtml-user-select: none;
602-
-moz-user-select: none;
603-
-ms-user-select: none;
604-
user-select: none;
605-
}
606-
607598
.clearfix:before,
608599
.clearfix:after {
609600
content: '';
@@ -839,8 +830,6 @@ input[type="checkbox"] {
839830
font-size: 12px;
840831
padding: 0;
841832
color: #7f7f7f;
842-
max-height: 95%;
843-
overflow: auto;
844833
}
845834
.notification-container .unseen {
846835
color: #ABABAB;
@@ -851,33 +840,21 @@ input[type="checkbox"] {
851840
border-bottom: 1px solid #555;
852841
padding: 10px 15px 24px;
853842
}
854-
.notification-container li.empty {
855-
padding-top: 50px;
856-
height: 50px;
857-
font-size: 15px;
858-
font-style: italic;
859-
text-align: center;
860-
color: #999;
861-
}
862-
863843
.notification-container .mark-seen {
864-
background: rgba(0, 0, 0, 0) url("/images/sprite.png?1446554103") repeat scroll -426px 165px;
865-
border: 3px solid #454545;
844+
background-color: #abc04b;
845+
border: 2px solid #454545;
846+
border-radius: 10px;
866847
cursor: pointer;
867848
display: none;
868849
float: right;
869-
height:11px;
850+
height: 7px;
870851
margin-right: -5px;
871852
margin-top: 0;
872-
width: 11px;
873-
opacity: 0.5;
874-
border-radius: 10px;
853+
width: 7px;
875854
}
876855
.notification-container .mark-seen:hover {
877856
background-color: #333;
878-
border-color: #333;
879-
880-
opacity: 0.8;
857+
border-color: #abc04b;
881858
}
882859
.notification-container .mark-seen:active {
883860
background-color: #777;
@@ -1151,13 +1128,13 @@ div.l-content > div.l-separator:nth-of-type(4) {
11511128

11521129
.l-sort-toolbar td.toggle-all {
11531130
padding-top: 7px;
1154-
padding-right: 40px;
1131+
padding-right: 20px;
11551132
}
11561133

11571134
.l-sort-toolbar .sort-by {
11581135
cursor: pointer;
11591136
padding-top: 7px;
1160-
padding-right: 40px;
1137+
padding-left: 40px;
11611138
}
11621139
.l-sort-toolbar .sort-by:hover {
11631140
color: #555;
@@ -1369,9 +1346,11 @@ div.l-content > div.l-separator:nth-of-type(4) {
13691346
}
13701347

13711348

1372-
.l-unit--outdated {
1373-
background-color: #9B3D35;
1374-
color: #fff;
1349+
.units .l-unit.l-unit--outdated {
1350+
background-color: #ffcaca;
1351+
color: #555;
1352+
border-left: 5px solid #ff6f6f;
1353+
border-bottom: 1px solid #fff;
13751354
}
13761355

13771356
.l-unit--suspended .l-unit__name,
@@ -1381,6 +1360,13 @@ div.l-content > div.l-separator:nth-of-type(4) {
13811360
color: #c0c0c0;
13821361
}
13831362

1363+
.l-unit--outdated .l-unit__name {
1364+
color: #333;
1365+
}
1366+
.l-unit--outdated b {
1367+
color: #555;
1368+
}
1369+
13841370
.l-unit--suspended .l-percent {
13851371
border-color: #fff;
13861372
}
@@ -1404,7 +1390,7 @@ div.l-content > div.l-separator:nth-of-type(4) {
14041390

14051391
.l-unit--outdated.selected {
14061392
background: #765D5D !important;
1407-
color: #FEF482 !important;
1393+
color: #333 !important;
14081394
}
14091395

14101396

@@ -1417,7 +1403,7 @@ div.l-content > div.l-separator:nth-of-type(4) {
14171403
.l-unit--suspended.selected .l-percent__fill,
14181404
.l-unit--suspended.selected .l-unit__name,
14191405
.l-unit--suspended.selected .l-unit__name span {
1420-
color: #b2ac87 !important;
1406+
color: #333 !important;
14211407
}
14221408

14231409
.l-unit.selected .l-percent {
@@ -1507,7 +1493,7 @@ div.l-content > div.l-separator:nth-of-type(4) {
15071493
}
15081494

15091495
.l-unit.l-unit--outdated .l-unit__date {
1510-
color: #fff7ae;
1496+
color: #d24c4c;
15111497
font-size: 10px;
15121498
letter-spacing: 3px;
15131499
text-transform: uppercase;
@@ -3122,6 +3108,7 @@ form#vstobjects.suspended {
31223108
.l-sort-toolbar__search-box {
31233109
float: right !important;
31243110
padding-top: 3px;
3111+
padding-right: 0 !important;
31253112
}
31263113
.ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
31273114
-background-color: #dfdedd;

web/inc/i18n/ar.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@
584584
'Starred' => 'المحدد بنجمة',
585585
'Name' => 'الاسم',
586586

587+
'save to favorites' => 'save to favorites',
587588

588589
'File Manager' => 'مدير الملفات',
589590
'size' => 'الحجم',
@@ -751,8 +752,6 @@
751752

752753
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
753754

754-
'no notifications' => 'no notifications',
755-
756755
// Texts below doesn't exist in en.php
757756
'%s rule' => 'قواعد %s',
758757
'MainDomain' => 'النطاق الرئيسي',

web/inc/i18n/bs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@
584584
'Starred' => 'Označen zvjezdicom',
585585
'Name' => 'Ime',
586586

587+
'save to favorites' => 'save to favorites',
587588

588589
'File Manager' => 'File Manager',
589590
'size' => 'veličina',
@@ -750,5 +751,4 @@
750751

751752
'maximum characters length, including prefix' => 'maksimalna dužina sme biti %s karaktera, uključujući i prefix',
752753

753-
'no notifications' => 'no notifications',
754754
);

web/inc/i18n/cn.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,8 @@
585585
'Starred' => '星标',
586586
'Name' => '名称',
587587

588+
'save to favorites' => 'save to favorites',
589+
588590
'File Manager' => '文件管理',
589591
'type' => '类型',
590592
'size' => '大小',
@@ -751,5 +753,4 @@
751753

752754
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
753755

754-
'no notifications' => 'no notifications',
755756
);

web/inc/i18n/cz.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,7 @@
585585
'Starred' => 'Starred',
586586
'Name' => 'Name',
587587

588+
'save to favorites' => 'save to favorites',
588589

589590
'File Manager' => 'File Manager',
590591
'size' => 'size',
@@ -752,5 +753,4 @@
752753

753754
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
754755

755-
'no notifications' => 'no notifications',
756756
);

web/inc/i18n/da.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,7 @@
586586
'Starred' => 'Starred',
587587
'Name' => 'Navn',
588588

589+
'save to favorites' => 'save to favorites',
589590

590591
'File Manager' => 'File Manager',
591592
'size' => 'size',
@@ -753,5 +754,4 @@
753754

754755
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
755756

756-
'no notifications' => 'no notifications',
757757
);

web/inc/i18n/de.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@
584584
'Starred' => 'Starred',
585585
'Name' => 'Name',
586586

587+
'save to favorites' => 'save to favorites',
587588

588589
'File Manager' => 'File Manager',
589590
'size' => 'size',
@@ -751,5 +752,4 @@
751752

752753
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
753754

754-
'no notifications' => 'no notifications',
755755
);

0 commit comments

Comments
 (0)