Fixing issues (?) on some pages

This commit is contained in:
dsrev 2020-07-13 06:55:45 +03:00
parent 3a1410051a
commit 6f24f6ee5e
8 changed files with 105 additions and 141 deletions

View file

@ -1,14 +1,15 @@
{extends "../@layout.xml"} {extends "../@layout.xml"}
{block title}Создать группу{/block} {block title}{_"create_group"}{/block}
{block header} {block header}
Создать группу {_"create_group"}
{/block} {/block}
{block content} {block content}
<h4>Основная информация</h4> <div class="container_gray">
<h4>{_"create_group"}</h4>
<form method="POST" enctype="multipart/form-data"> <form method="POST" enctype="multipart/form-data">
<table cellspacing="7" cellpadding="0" width="40%" border="0"> <table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
<tbody> <tbody>
<tr> <tr>
<td width="120" valign="top"> <td width="120" valign="top">
@ -23,7 +24,7 @@
<span class="nobold">{_"description"}: </span> <span class="nobold">{_"description"}: </span>
</td> </td>
<td> <td>
<textarea type="text" name="about" style="resize:none;width:159px;"></textarea> <textarea type="text" name="about"></textarea>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -38,4 +39,5 @@
</tbody> </tbody>
</table> </table>
</form> </form>
</div>
{/block} {/block}

View file

@ -2,7 +2,7 @@
{var iterator = iterator_to_array($albums)} {var iterator = iterator_to_array($albums)}
{var page = $paginatorConf->page} {var page = $paginatorConf->page}
{block title}Альбомы {$owner->getCanonicalName()}{/block} {block title}{_"albums"} {$owner->getCanonicalName()}{/block}
{block header} {block header}
<a href="{$owner->getURL()}">{$owner->getCanonicalName()}</a> <a href="{$owner->getURL()}">{$owner->getCanonicalName()}</a>

View file

@ -1,5 +1,5 @@
{extends "../@layout.xml"} {extends "../@layout.xml"}
{block title}Создать альбом{/block} {block title}{_"creating_album"}{/block}
{block header} {block header}
{ifset $club} {ifset $club}
@ -16,8 +16,10 @@
{/block} {/block}
{block content} {block content}
<div class="container_gray">
<h4>{_"creating_album"}</h4>
<form method="post" enctype="multipart/form-data"> <form method="post" enctype="multipart/form-data">
<table cellspacing="6"> <table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
<tbody> <tbody>
<tr> <tr>
<td width="120" valign="top"><span class="nobold">{_"name"}:</span></td> <td width="120" valign="top"><span class="nobold">{_"name"}:</span></td>
@ -25,7 +27,7 @@
</tr> </tr>
<tr> <tr>
<td width="120" valign="top"><span class="nobold">{_"description"}:</span></td> <td width="120" valign="top"><span class="nobold">{_"description"}:</span></td>
<td><textarea style="margin: 0px; height: 50px; width: 159px; resize: none;" name="desc"></textarea></td> <td><textarea name="desc"></textarea></td>
</tr> </tr>
<tr> <tr>
<td width="120" valign="top"></td> <td width="120" valign="top"></td>
@ -37,4 +39,5 @@
</tbody> </tbody>
</table> </table>
</form> </form>
</div>
{/block} {/block}

View file

@ -36,7 +36,7 @@
<h4>{_"main_information"}</h4> <h4>{_"main_information"}</h4>
<form action="/edit?act=main" method="POST" enctype="multipart/form-data"> <form action="/edit?act=main" method="POST" enctype="multipart/form-data">
<table cellspacing="7" cellpadding="0" width="40%" border="0" align="center"> <table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
<tbody> <tbody>
<tr> <tr>
<td width="120" valign="top"> <td width="120" valign="top">
@ -145,7 +145,7 @@
<h4>{_"contact_information"}</h4> <h4>{_"contact_information"}</h4>
<form action="/edit?act=contacts" method="POST" enctype="multipart/form-data"> <form action="/edit?act=contacts" method="POST" enctype="multipart/form-data">
<table cellspacing="7" cellpadding="0" width="40%" border="0" align="center"> <table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
<tbody> <tbody>
<tr> <tr>
<td width="120" valign="top"> <td width="120" valign="top">
@ -196,14 +196,14 @@
<h4>{_"personal_information"}</h4> <h4>{_"personal_information"}</h4>
<form action="/edit?act=interests" method="POST" enctype="multipart/form-data"> <form action="/edit?act=interests" method="POST" enctype="multipart/form-data">
<table cellspacing="7" cellpadding="0" width="40%" border="0" align="center"> <table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
<tbody> <tbody>
<tr> <tr>
<td width="120" valign="top"> <td width="120" valign="top">
<span class="nobold">{_"interests"}: </span> <span class="nobold">{_"interests"}: </span>
</td> </td>
<td> <td>
<textarea type="text" name="interests" style="resize:none;width:159px;">{$user->getInterests()}</textarea> <textarea type="text" name="interests">{$user->getInterests()}</textarea>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -211,7 +211,7 @@
<span class="nobold">{_"favorite_music"}: </span> <span class="nobold">{_"favorite_music"}: </span>
</td> </td>
<td> <td>
<textarea type="text" name="fav_music" style="resize:none;width:159px;">{$user->getFavoriteMusic()}</textarea> <textarea type="text" name="fav_music">{$user->getFavoriteMusic()}</textarea>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -219,7 +219,7 @@
<span class="nobold">{_"favorite_films"}: </span> <span class="nobold">{_"favorite_films"}: </span>
</td> </td>
<td> <td>
<textarea type="text" name="fav_films" style="resize:none;width:159px;">{$user->getFavoriteFilms()}</textarea> <textarea type="text" name="fav_films">{$user->getFavoriteFilms()}</textarea>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -227,7 +227,7 @@
<span class="nobold">{_"favorite_shows"}: </span> <span class="nobold">{_"favorite_shows"}: </span>
</td> </td>
<td> <td>
<textarea type="text" name="fav_shows" style="resize:none;width:159px;">{$user->getFavoriteShows()}</textarea> <textarea type="text" name="fav_shows">{$user->getFavoriteShows()}</textarea>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -235,7 +235,7 @@
<span class="nobold">{_"favorite_books"}: </span> <span class="nobold">{_"favorite_books"}: </span>
</td> </td>
<td> <td>
<textarea type="text" name="fav_books" style="resize:none;width:159px;">{$user->getFavoriteBooks()}</textarea> <textarea type="text" name="fav_books">{$user->getFavoriteBooks()}</textarea>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -243,7 +243,7 @@
<span class="nobold">{_"favorite_quotes"}: </span> <span class="nobold">{_"favorite_quotes"}: </span>
</td> </td>
<td> <td>
<textarea type="text" name="fav_quote" style="resize:none;width:159px;">{$user->getFavoriteQuote()}</textarea> <textarea type="text" name="fav_quote">{$user->getFavoriteQuote()}</textarea>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -251,7 +251,7 @@
<span class="nobold">{_"information_about"}: </span> <span class="nobold">{_"information_about"}: </span>
</td> </td>
<td> <td>
<textarea type="text" name="about" style="resize:none;width:159px;">{$user->getDescription()}</textarea> <textarea type="text" name="about">{$user->getDescription()}</textarea>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -271,7 +271,7 @@
<h4>{_"profile_picture"}</h4> <h4>{_"profile_picture"}</h4>
<form action="/al_avatars.pl" method="POST" enctype="multipart/form-data"> <form action="/al_avatars.pl" method="POST" enctype="multipart/form-data">
<table cellspacing="7" cellpadding="0" width="40%" border="0" align="center"> <table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
<tbody> <tbody>
<tr> <tr>
<td width="120" valign="top"> <td width="120" valign="top">

View file

@ -2,7 +2,7 @@
{var iterator = $user->getClubs($page)} {var iterator = $user->getClubs($page)}
{var count = $user->getClubCount()} {var count = $user->getClubCount()}
{block title}Группы{/block} {block title}{_"groups"}{/block}
{block header} {block header}
<a href="{$user->getURL()}">{$user->getCanonicalName()}</a> » {_"groups"} <a href="{$user->getURL()}">{$user->getCanonicalName()}</a> » {_"groups"}

View file

@ -3,13 +3,19 @@
{block header} {block header}
<a href="{$thisUser->getURL()}">{$thisUser->getCanonicalName()}</a> <a href="{$thisUser->getURL()}">{$thisUser->getCanonicalName()}</a>
» »
Видеозапись <a href="/videos{$thisUser->getId()}">{_"videos"}</a>
»
<a href="/video{$thisUser->getId()}_{$video->getId()}">{_"video"}</a>
»
Изменить видеозапись
{/block} {/block}
{block content} {block content}
<div class="container_gray">
<h4>Изменить видеозапись</h4>
<form method="post" enctype="multipart/form-data"> <form method="post" enctype="multipart/form-data">
<table cellspacing="6"> <table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
<tbody> <tbody>
<tr> <tr>
<td width="120" valign="top"><span class="nobold">{_"name"}:</span></td> <td width="120" valign="top"><span class="nobold">{_"name"}:</span></td>
@ -20,7 +26,7 @@
<tr> <tr>
<td width="120" valign="top"><span class="nobold">{_"description"}:</span></td> <td width="120" valign="top"><span class="nobold">{_"description"}:</span></td>
<td> <td>
<textarea style="margin: 0px; height: 50px; width: 159px; resize: none;" name="desc">{$video->getDescription()}</textarea> <textarea name="desc">{$video->getDescription()}</textarea>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -33,4 +39,5 @@
</tbody> </tbody>
</table> </table>
</form> </form>
</div>
{/block} {/block}

View file

@ -1,5 +1,5 @@
{extends "../@layout.xml"} {extends "../@layout.xml"}
{block title}Загрузить видео{/block} {block title}{_"upload_video"}{/block}
{block header} {block header}
<a href="{$thisUser->getURL()}">{$thisUser->getCanonicalName()}</a> <a href="{$thisUser->getURL()}">{$thisUser->getCanonicalName()}</a>
@ -10,8 +10,10 @@
{/block} {/block}
{block content} {block content}
<div class="container_gray">
<h4>{_"upload_video"}</h4>
<form method="post" enctype="multipart/form-data"> <form method="post" enctype="multipart/form-data">
<table cellspacing="6"> <table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
<tbody> <tbody>
<tr> <tr>
<td width="120" valign="top"><span class="nobold">{_"name"}:</span></td> <td width="120" valign="top"><span class="nobold">{_"name"}:</span></td>
@ -19,7 +21,7 @@
</tr> </tr>
<tr> <tr>
<td width="120" valign="top"><span class="nobold">{_"description"}:</span></td> <td width="120" valign="top"><span class="nobold">{_"description"}:</span></td>
<td><textarea style="margin: 0px; height: 50px; width: 159px; resize: none;" name="desc"></textarea></td> <td><textarea name="desc"></textarea></td>
</tr> </tr>
<tr> <tr>
<td width="120" valign="top"><span class="nobold">{_"video"}:</span></td> <td width="120" valign="top"><span class="nobold">{_"video"}:</span></td>
@ -39,4 +41,5 @@
</tbody> </tbody>
</table> </table>
</form> </form>
</div>
{/block} {/block}

View file

@ -1,9 +1,10 @@
/* /*
Website's Style Website's Style
Developers: Veselcraft Developers: Veselcraft
*/ */
html { html {
overflow-y: scroll; overflow-y: scroll;
} }
@ -15,7 +16,6 @@ body {
text-align: left; text-align: left;
font-family: tahoma, verdana, arial, sans-serif; font-family: tahoma, verdana, arial, sans-serif;
font-size: 11px; font-size: 11px;
/* cursor: url('/style/pizda1.cur'), pointer; */
} }
span { span {
@ -25,10 +25,8 @@ span {
} }
.nobold { .nobold {
font-weight: normal; font-weight: normal;
color: gray; color: gray;
} }
a { a {
@ -42,23 +40,19 @@ a {
margin: 0 auto; margin: 0 auto;
} }
/* header crap */
.page_header { .page_header {
position: relative; position: relative;
width: 791px; width: 791px;
height: 45px; height: 45px;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 0; background-position: 0;
background: url(../img/header.png); background: url('../img/header.png');
} }
#page_act { #page_act {
border-bottom: 1px solid border-bottom: 1px solid #d5dde6;
#d5dde6; padding: 2px 10px 5px 10px;
padding: 2px 10px 5px 10px; color: #2B587A;
color:
#2B587A;
width: 608px; width: 608px;
margin-left: -10px; margin-left: -10px;
} }
@ -83,7 +77,7 @@ color:
height: 29px; height: 29px;
padding: 11px 4px 0 7px; padding: 11px 4px 0 7px;
background-size: 1.5px 41px; background-size: 1.5px 41px;
background: url(../img/divider.png) no-repeat; background: url('../img/divider.png') no-repeat;
} }
.header_navigation .link a { .header_navigation .link a {
@ -97,14 +91,10 @@ color:
color: #fff; color: #fff;
} }
/* Sidebar crap */
.sidebar { .sidebar {
width: 118px; width: 118px;
margin: 4px 0 0 4px; margin: 4px 0 0 4px;
float: left; float: left;
} }
.navigation { .navigation {
@ -113,7 +103,6 @@ color:
} }
.navigation .link { .navigation .link {
display: block; display: block;
padding: 3px 3px 3px 6px; padding: 3px 3px 3px 6px;
text-decoration: none; text-decoration: none;
@ -127,8 +116,6 @@ color:
cursor: pointer; cursor: pointer;
background: none; background: none;
margin-bottom: 1px; margin-bottom: 1px;
} }
.navigation .link:hover { .navigation .link:hover {
@ -160,38 +147,30 @@ color:
border-top: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC;
} }
/* page crap */
.page_body { .page_body {
width: 632px; width: 632px;
float: right; float: right;
margin-right: 15px; margin-right: 15px;
margin-top: -2px; margin-top: -2px;
font-size: 11px; font-size: 11px;
text-align: left; text-align: left;
} }
.wrap1 { .wrap1 {
border: 1px solid #EBF0F4; border: 1px solid #EBF0F4;
border-top: 0px; border-top: 0px;
width: 626px; width: auto;
} }
.wrap2 { .wrap2 {
border-right: 1px solid #F6F8FA; border-right: 1px solid #F6F8FA;
border-top: 0px; border-top: 0px;
} }
.page_yellowheader { .page_yellowheader {
padding: 4px 10px 5px; padding: 4px 10px 5px;
font-weight: bold; font-weight: bold;
background: url(../img/header_yellow.png) repeat-x; background: url('../img/header_yellow.png') repeat-x;
background-color: #EEE5B8; background-color: #EEE5B8;
border-right: solid 1px #DCD4A4; border-right: solid 1px #DCD4A4;
border-left: solid 1px #E4DDB4; border-left: solid 1px #E4DDB4;
@ -200,16 +179,13 @@ color:
} }
#wrapHI { #wrapHI {
border-right: solid 1px #D5DDE6; border-right: solid 1px #D5DDE6;
border-left: solid 1px #D5DDE6; border-left: solid 1px #D5DDE6;
} }
#wrapH {
#wrapH {
border-right: solid 1px #EAEEF3; border-right: solid 1px #EAEEF3;
border-left: solid 1px #EAEEF3; border-left: solid 1px #EAEEF3;
} }
.page_yellowheader span { .page_yellowheader span {
@ -298,22 +274,16 @@ color:
width: 200px; width: 200px;
text-align: left; text-align: left;
cursor: pointer; cursor: pointer;
} }
#profile_links { #profile_links {
margin: 10px 0; margin: 10px 0;
} }
#profile_link:hover, .profile_link:hover { #profile_link:hover, .profile_link:hover {
background: #ECECEC; background: #ECECEC;
} }
/* на этом месте я заплакал */
.page_footer { .page_footer {
margin-left: 95px; margin-left: 95px;
padding-top: 5px; padding-top: 5px;
@ -323,8 +293,7 @@ color:
table { table {
font-size: 11px; font-size: 11px;
text-align: left; text-align: left;
/* ненавижу, блять, костыли */
} }
.information { .information {
@ -337,14 +306,6 @@ table {
background-color: #ffc3c3; background-color: #ffc3c3;
} }
/* kun vi tre agrable pensi pri morto
кстати это из песни дельфина взято
вдруг кто не знал
я просто влюблён, извините за
пиздобляские комментарии в CSS коде
<3 */
.page_footer .link { .page_footer .link {
padding: 3px 7px; padding: 3px 7px;
display: inline-block; display: inline-block;
@ -360,8 +321,6 @@ table {
margin-bottom: 6px; margin-bottom: 6px;
} }
.page_status { .page_status {
font-weight: normal; font-weight: normal;
font-size: 11px; font-size: 11px;
@ -371,14 +330,6 @@ table {
max-height: 39px; max-height: 39px;
height: auto !important; height: auto !important;
} }
/*
у тебя спид
и значит мы умрём
*/
/* and we begin to make some graphic crap */
.button { .button {
border-radius: 2px; border-radius: 2px;
@ -461,7 +412,7 @@ input[type=checkbox]:checked {
} }
.content_title_unexpanded { .content_title_unexpanded {
background-image: url(../img/flex_arrow_shut.gif); background-image: url('../img/flex_arrow_shut.gif');
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: #eee; background-color: #eee;
border-top: solid 1px #ccc; border-top: solid 1px #ccc;
@ -511,8 +462,6 @@ h4 {
font-family: verdana, arial, sans-serif; font-family: verdana, arial, sans-serif;
} }
/* post */
.post { .post {
width: 100%; width: 100%;
overflow: hidden; overflow: hidden;
@ -649,40 +598,35 @@ table.User {
margin-bottom: -10px; margin-bottom: -10px;
} }
/* МОНТИРУЮ МОНТИРУЮ БЛЯТЬ */
.container_gray .content { .container_gray .content {
background: #fff; background: #fff;
padding: 5px; padding: 5px;
border: #DEDEDE solid 1px; border: #DEDEDE solid 1px;
clear: both; clear: both;
} }
.tabs { .tabs {
border-bottom: 1px solid #707070; border-bottom: 1px solid #707070;
margin-left: -12px; margin-left: -12px;
margin-right: -6px; margin-right: -6px;
} }
#activetabs {
#activetabs {
background: #707070; background: #707070;
border-radius: 3px 3px 0px 0px; border-radius: 3px 3px 0px 0px;
} }
.tab {
.tab {
display: inline-block; display: inline-block;
padding: 4px 6px; padding: 4px 6px;
margin-left: 15px; margin-left: 15px;
} }
#act_tab_a { #act_tab_a {
color: white; color: white;
} }
.container_gray .content {
.container_gray .content {
background: #fff; background: #fff;
padding: 4px; padding: 4px;
border: #DEDEDE solid 1px; border: #DEDEDE solid 1px;
@ -695,7 +639,6 @@ table.User {
border: #DEDEDE solid 1px; border: #DEDEDE solid 1px;
padding: 6px; padding: 6px;
margin-top:6px; margin-top:6px;
} }
.ovk-album { .ovk-album {
@ -812,19 +755,24 @@ table.User {
height: 40px; height: 40px;
object-fit: cover; object-fit: cover;
} }
.dialogi td { .dialogi td {
vertical-align: top; vertical-align: top;
padding: 5px; padding: 5px;
} }
.dialogi { .dialogi {
border-collapse: collapse; border-collapse: collapse;
} }
.dialogi tr:first-child { .dialogi tr:first-child {
border: none; border: none;
} }
.dialogi tr { .dialogi tr {
border-top: 1px solid #ddd; border-top: 1px solid #ddd;
} }
.messenger-app--input---messagebox textarea { .messenger-app--input---messagebox textarea {
width: 100%; width: 100%;
height: 40px !important; height: 40px !important;
@ -837,6 +785,7 @@ table.User {
height: 72px !important; height: 72px !important;
border-top: 1px solid #d6d6d6; border-top: 1px solid #d6d6d6;
} }
.messenger-app--input---messagebox .button { .messenger-app--input---messagebox .button {
float: right; float: right;
} }
@ -849,24 +798,16 @@ table.User {
display: grid; display: grid;
grid-template-columns: 32px 32px 32px 1fr; grid-template-columns: 32px 32px 32px 1fr;
padding: 8px; padding: 8px;
border-bottom: 1px solid border-bottom: 1px solid #c1c1c1;
#c1c1c1;
border-bottom-style: solid; border-bottom-style: solid;
border-bottom-style: dashed; border-bottom-style: dashed;
} }
.music-app--player .play, .music-app--player .perv, .music-app--player .next { .music-app--player .play, .music-app--player .perv, .music-app--player .next {
-webkit-appearance: none; -webkit-appearance: none;
-moz-appearance: none; -moz-appearance: none;
background-color: background-color: #507597;
color: #fff;
#507597;
color:
#fff;
height: 20px; height: 20px;
margin: 5px; margin: 5px;
border: none; border: none;
@ -874,7 +815,6 @@ color:
cursor: pointer; cursor: pointer;
padding: 0; padding: 0;
font-size: 10px; font-size: 10px;
} }
.music-app--player .info { .music-app--player .info {
@ -891,30 +831,19 @@ color:
} }
.music-app--player .info .track { .music-app--player .info .track {
margin-top: 8px; margin-top: 8px;
height: 5px; height: 5px;
width: 70%; width: 70%;
background-color: background-color: #fff;
border-top: 1px solid #507597;
#fff;
border-top: 1px solid
#507597;
float: left; float: left;
} }
.music-app--player .info .track .inner-track { .music-app--player .info .track .inner-track {
background-color: #507597;
background-color:
#507597;
height: inherit; height: inherit;
width: 15px; width: 15px;
opacity: .7; opacity: .7;
} }
.settings_delete { .settings_delete {
@ -930,6 +859,8 @@ textarea {
border: 1px solid #C0CAD5; border: 1px solid #C0CAD5;
font-size: 9pt; font-size: 9pt;
min-height: 42px; min-height: 42px;
width: 100%;
resize: none;
} }
#faqhead { #faqhead {
@ -1028,13 +959,6 @@ body.scrolled .toTop:hover {
cursor: pointer; cursor: pointer;
} }
/* бля чуваки я извиняюсь
за пиздострадательские комментарии
в коде мне одиноко просто было
(да и в принципе и сейчас) */
/* Vriska-chan was here */
.ugc-table.slim { .ugc-table.slim {
width: 100%; width: 100%;
} }
@ -1101,53 +1025,64 @@ body.scrolled .toTop:hover {
width: 100%; width: 100%;
display: block; display: block;
} }
.like_wrap { .like_wrap {
color: #2F5879; color: #2F5879;
font-size: 10px; font-size: 10px;
cursor: pointer; cursor: pointer;
float: right; float: right;
} }
.heart { .heart {
background: url(/assets/packages/static/openvk/img/like.gif) no-repeat 1px 0px; background: url('/assets/packages/static/openvk/img/like.gif') no-repeat 1px 0px;
height: 10px; height: 10px;
margin: 2px 3px 0px; margin: 2px 3px 0px;
width: 11px; width: 11px;
float: left; float: left;
} }
.likeCnt { .likeCnt {
font-size: 10px; font-size: 10px;
margin-right: 3px; margin-right: 3px;
float: left; float: left;
} }
.heart:hover { .heart:hover {
opacity: 1 !important; opacity: 1 !important;
} }
.content_title_expanded { .content_title_expanded {
margin-top: 5px; margin-top: 5px;
} }
.page-wrap { .page-wrap {
border-bottom: solid 1px #C3CAD2; border-bottom: solid 1px #C3CAD2;
border-left: solid 1px #DAE1E8; border-left: solid 1px #DAE1E8;
border-right: solid 1px #DAE1E8; border-right: solid 1px #DAE1E8;
padding: 10px; padding: 10px;
} }
.wrap1 { .wrap1 {
width: auto; width: auto;
border: 1px solid #EBF0F4; border: 1px solid #EBF0F4;
border-top: 0px; border-top: 0px;
} }
.wrap2 { .wrap2 {
border-right: 1px solid #F6F8FA; border-right: 1px solid #F6F8FA;
border-top: 0px; border-top: 0px;
} }
#wrapH { #wrapH {
border-right: solid 1px #EAEEF3; border-right: solid 1px #EAEEF3;
border-left: solid 1px #EAEEF3; border-left: solid 1px #EAEEF3;
} }
#wrapHI { #wrapHI {
border-right: solid 1px #D5DDE6; border-right: solid 1px #D5DDE6;
border-left: solid 1px #D5DDE6; border-left: solid 1px #D5DDE6;
} }
.ugc-table td { .ugc-table td {
vertical-align: top !important; vertical-align: top !important;
font-size: 11px; font-size: 11px;
@ -1155,28 +1090,34 @@ body.scrolled .toTop:hover {
margin: 0px; margin: 0px;
padding: 1px 0px 1px 0px; padding: 1px 0px 1px 0px;
} }
.label { .label {
width: 120px !important; width: 120px !important;
color: gray; color: gray;
} }
.ugc-table tr > td:nth-of-type(2) { .ugc-table tr > td:nth-of-type(2) {
display: block; display: block;
width: unset; width: unset;
overflow: hidden; overflow: hidden;
} }
.right_big_block { .right_big_block {
width: 396px; width: 396px;
float: right; float: right;
} }
#basicInfo { #basicInfo {
padding: 5px 0px 15px 8px; padding: 5px 0px 15px 8px;
} }
.accountInfo { .accountInfo {
padding: 0px; padding: 0px;
margin: 0px 0px 0px 8px; margin: 0px 0px 0px 8px;
border-bottom: solid 1px #DAE1E8; border-bottom: solid 1px #DAE1E8;
display: block; display: block;
} }
.profileName { .profileName {
width: 225px; width: 225px;
color: #45688E; color: #45688E;
@ -1185,6 +1126,7 @@ body.scrolled .toTop:hover {
margin: 0px; margin: 0px;
padding: 2px 5px 0px 0px; padding: 2px 5px 0px 0px;
} }
.profileName h2 { .profileName h2 {
color: #45688E; color: #45688E;
font-size: 13px; font-size: 13px;
@ -1192,32 +1134,39 @@ body.scrolled .toTop:hover {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
.notes_titles { .notes_titles {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
list-style: none; list-style: none;
} }
.written { .written {
background: url(/assets/packages/static/openvk/img/note.gif) no-repeat 0px 1px; background: url('/assets/packages/static/openvk/img/note.gif') no-repeat 0px 1px;
padding: 0px 0px 6px 22px; padding: 0px 0px 6px 22px;
} }
.written a { .written a {
display: block; display: block;
padding: 0px 0px 1px 0px; padding: 0px 0px 1px 0px;
} }
.notes_titles small { .notes_titles small {
color: #333; color: #333;
font-weight: normal; font-weight: normal;
display: block; display: block;
font-size: 9px; font-size: 9px;
} }
.notes_titles small a { .notes_titles small a {
display: inline; display: inline;
font-weight: normal; font-weight: normal;
} }
.data { .data {
width: 260px !important; width: 260px !important;
} }
.right_big_block h4 { .right_big_block h4 {
margin: 1px 0px 0px; margin: 1px 0px 0px;
padding: 4px 0px 2px !important; padding: 4px 0px 2px !important;