Compare commits

...

3 commits

Author SHA1 Message Date
Slava Petrov
544c7714d4
Merge a870e60571 into e67963ed37 2024-12-16 23:22:13 +01:00
ayato
e67963ed37
fix(messagebox): remove min-height from dialogue boxes (#1188) 2024-12-15 18:04:52 +03:00
Slava Petrov
a870e60571 news left menu 2024-12-13 16:57:19 +03:00
6 changed files with 23 additions and 3 deletions

View file

@ -239,6 +239,14 @@
</object> </object>
</a> </a>
</div> </div>
<div id="news" n:if="OPENVK_ROOT_CONF['openvk']['preferences']['news']['enable']">
<b>{_news} </b>
<hr size="1">
<text>{php echo OPENVK_ROOT_CONF['openvk']['preferences']['news']['title'];}</text>
<br><br>
<a href="{php echo OPENVK_ROOT_CONF['openvk']['preferences']['news']['link'];}">Подробнее »</a>
</div>
<div n:if="OPENVK_ROOT_CONF['openvk']['preferences']['commerce'] && $thisUser->getCoins() != 0" id="votesBalance"> <div n:if="OPENVK_ROOT_CONF['openvk']['preferences']['commerce'] && $thisUser->getCoins() != 0" id="votesBalance">
{tr("you_still_have_x_points", $thisUser->getCoins())|noescape} {tr("you_still_have_x_points", $thisUser->getCoins())|noescape}

View file

@ -16,7 +16,6 @@ body.dimmed > .dimmer #absolute_territory {
z-index: 1024; z-index: 1024;
position: fixed; position: fixed;
width: 420px; width: 420px;
min-height: 200px;
top: 50%; top: 50%;
left: 50%; left: 50%;
margin-right: -50%; margin-right: -50%;
@ -50,7 +49,6 @@ body.dimmed > .dimmer #absolute_territory {
.ovk-diag-body { .ovk-diag-body {
padding: 20px; padding: 20px;
min-height: 110px;
} }
.ovk-diag-action { .ovk-diag-action {

View file

@ -2314,7 +2314,7 @@ li {
padding-left: 15px; padding-left: 15px;
} }
#votesBalance { #votesBalance, #news {
margin-top: 10px; margin-top: 10px;
padding: 7px; padding: 7px;
background-color: #f6f6f6; background-color: #f6f6f6;
@ -2323,6 +2323,12 @@ li {
user-select: none; user-select: none;
} }
#news b
{
color: #8A0000;
font-size: 12px;
}
.cookies-popup { .cookies-popup {
position: fixed; position: fixed;
bottom: 0; bottom: 0;

View file

@ -1138,6 +1138,8 @@
"increased_your_rating_by" = "increased your rating by"; "increased_your_rating_by" = "increased your rating by";
"news" = "News";
/* Gifts */ /* Gifts */
"gift" = "Gift"; "gift" = "Gift";

View file

@ -1078,6 +1078,8 @@
"negative_rating_value" = "Мы не можем украсть рейтинг у другого человека, извините."; "negative_rating_value" = "Мы не можем украсть рейтинг у другого человека, извините.";
"increased_your_rating_by" = "повысил ваш рейтинг на"; "increased_your_rating_by" = "повысил ваш рейтинг на";
"news" = "Новость";
/* Gifts */ /* Gifts */
"gift" = "Подарок"; "gift" = "Подарок";

View file

@ -17,6 +17,10 @@ openvk:
minLength: 3 # won't affect existing short urls or the ones set via admin panel minLength: 3 # won't affect existing short urls or the ones set via admin panel
forbiddenNames: forbiddenNames:
- "index.php" - "index.php"
news:
enable: false
link: "/link"
title: "я покакал"
photos: photos:
upgradeStructure: false upgradeStructure: false
photoSaving: "quick" photoSaving: "quick"