mirror of
https://github.com/openvk/openvk
synced 2025-03-20 16:28:16 +03:00
Global: Fix format of the code 🎨 [CSS]
I used Beautify (an extension for VSCode) this time. This extension seems to have done the job well ngl. Still better than manually correcting the tabs :/
This commit is contained in:
parent
35a9c040fc
commit
505274d354
1 changed files with 1883 additions and 1843 deletions
|
@ -19,7 +19,8 @@ html {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nobold, nobold {
|
.nobold,
|
||||||
|
nobold {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: gray;
|
color: gray;
|
||||||
}
|
}
|
||||||
|
@ -159,7 +160,8 @@ html {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 3px 3px 3px 6px;
|
padding: 3px 3px 3px 6px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-top: 1px solid #fff; /* fix */
|
border-top: 1px solid #fff;
|
||||||
|
/* fix */
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -305,7 +307,8 @@ html {
|
||||||
margin-left: 2pt;
|
margin-left: 2pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
#profile_link, .profile_link {
|
#profile_link,
|
||||||
|
.profile_link {
|
||||||
display: block;
|
display: block;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
|
@ -327,20 +330,24 @@ html {
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#profile_link:hover, .profile_link:hover {
|
#profile_link:hover,
|
||||||
|
.profile_link:hover {
|
||||||
background: #ECECEC;
|
background: #ECECEC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.action_links > .profile_link, .action_links > .profile_link_form > .profile_link {
|
.action_links>.profile_link,
|
||||||
|
.action_links>.profile_link_form>.profile_link {
|
||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile_link.disable > a, .profile_link.disable {
|
.profile_link.disable>a,
|
||||||
|
.profile_link.disable {
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
color: grey;
|
color: grey;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile_link.loading > a::after, .profile_link.loading::after {
|
.profile_link.loading>a::after,
|
||||||
|
.profile_link.loading::after {
|
||||||
content: "";
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background-image: url('/assets/packages/static/openvk/img/loading_mini.gif');
|
background-image: url('/assets/packages/static/openvk/img/loading_mini.gif');
|
||||||
|
@ -414,7 +421,7 @@ html {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border: 1px solid #CCC;
|
border: 1px solid #CCC;
|
||||||
background-color: #f7f7f7;
|
background-color: #f7f7f7;
|
||||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);;
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
float: right;
|
float: right;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
|
@ -456,7 +463,8 @@ html {
|
||||||
padding: 5px 7px 4px;
|
padding: 5px 7px 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=checkbox], input[type=radio] {
|
input[type=checkbox],
|
||||||
|
input[type=radio] {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
|
@ -477,11 +485,13 @@ html {
|
||||||
background-image: url("../img/radio.png");
|
background-image: url("../img/radio.png");
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=checkbox]:hover, input[type=radio]:hover {
|
input[type=checkbox]:hover,
|
||||||
|
input[type=radio]:hover {
|
||||||
background-position: 0 -28px;
|
background-position: 0 -28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=checkbox]:checked, input[type=radio]:checked {
|
input[type=checkbox]:checked,
|
||||||
|
input[type=radio]:checked {
|
||||||
background-position: 0 -14px;
|
background-position: 0 -14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -558,7 +568,17 @@ html {
|
||||||
padding-top: 0px;
|
padding-top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="text"], input[type="password"], input[type~="text"], input[type~="password"], input[type="email"], input[type="phone"], input[type~="email"], input[type~="phone"], input[type="search"], input[type~="search"], select {
|
input[type="text"],
|
||||||
|
input[type="password"],
|
||||||
|
input[type~="text"],
|
||||||
|
input[type~="password"],
|
||||||
|
input[type="email"],
|
||||||
|
input[type="phone"],
|
||||||
|
input[type~="email"],
|
||||||
|
input[type~="phone"],
|
||||||
|
input[type="search"],
|
||||||
|
input[type~="search"],
|
||||||
|
select {
|
||||||
border: 1px solid #C0CAD5;
|
border: 1px solid #C0CAD5;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
|
@ -705,7 +725,8 @@ html {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#fastlogin input[type=text], #fastlogin input[type=password] {
|
#fastlogin input[type=text],
|
||||||
|
#fastlogin input[type=password] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -840,7 +861,8 @@ html {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ovk-album:not(:first-child), .ovk-note:not(:first-child) {
|
.ovk-album:not(:first-child),
|
||||||
|
.ovk-note:not(:first-child) {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
@ -901,7 +923,8 @@ html {
|
||||||
border-top: 1px solid #d6d6d6;
|
border-top: 1px solid #d6d6d6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.crp-entry--image, .crp-entry--info {
|
.crp-entry--image,
|
||||||
|
.crp-entry--info {
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -951,7 +974,8 @@ html {
|
||||||
max-width: 42px;
|
max-width: 42px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.crp-entry--message---av, .crp-entry--message---text {
|
.crp-entry--message---av,
|
||||||
|
.crp-entry--message---text {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
@ -963,15 +987,18 @@ html {
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.crp-entry--message---text, .messenger-app--messages---message .time {
|
.crp-entry--message---text,
|
||||||
|
.messenger-app--messages---message .time {
|
||||||
color: #404036;
|
color: #404036;
|
||||||
}
|
}
|
||||||
|
|
||||||
.messenger-app--messages, .messenger-app--input {
|
.messenger-app--messages,
|
||||||
|
.messenger-app--input {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.messenger-app--messages, .messenger-app--input {
|
.messenger-app--messages,
|
||||||
|
.messenger-app--input {
|
||||||
padding: 10px 70px;
|
padding: 10px 70px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -980,7 +1007,8 @@ html {
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.messenger-app--messages---message, .messenger-app--input {
|
.messenger-app--messages---message,
|
||||||
|
.messenger-app--input {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
@ -990,11 +1018,13 @@ html {
|
||||||
margin-bottom: 1.2rem;
|
margin-bottom: 1.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.messenger-app--messages---message .ava, .messenger-app--input > .ava {
|
.messenger-app--messages---message .ava,
|
||||||
|
.messenger-app--input>.ava {
|
||||||
max-width: 64px;
|
max-width: 64px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.messenger-app--messages---message .ava, .messenger-app--input > .ava {
|
.messenger-app--messages---message .ava,
|
||||||
|
.messenger-app--input>.ava {
|
||||||
width: 52px;
|
width: 52px;
|
||||||
height: 52px;
|
height: 52px;
|
||||||
}
|
}
|
||||||
|
@ -1004,7 +1034,8 @@ html {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.messenger-app--messages---message ._content span, .messenger-app--messages---message ._content > a {
|
.messenger-app--messages---message ._content span,
|
||||||
|
.messenger-app--messages---message ._content>a {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1090,7 +1121,9 @@ html {
|
||||||
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: #507597;
|
background-color: #507597;
|
||||||
|
@ -1507,11 +1540,13 @@ html {
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gift_sel > .gift_price, .gift_sel > .gift_limit {
|
.gift_sel>.gift_price,
|
||||||
|
.gift_sel>.gift_limit {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gift_sel:hover > .gift_price, .gift_sel:hover > .gift_limit {
|
.gift_sel:hover>.gift_price,
|
||||||
|
.gift_sel:hover>.gift_limit {
|
||||||
visibility: unset;
|
visibility: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1567,16 +1602,19 @@ html {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ovkDraw .literally .lc-picker, .literally .lc-options.horz-toolbar {
|
#ovkDraw .literally .lc-picker,
|
||||||
|
.literally .lc-options.horz-toolbar {
|
||||||
background-color: #f7f7f7;
|
background-color: #f7f7f7;
|
||||||
border-color: rgba(0, 0, 0, 0.15);
|
border-color: rgba(0, 0, 0, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ovkDraw .literally .lc-picker .toolbar-button.selected:not(.disabled), #ovkDraw .literally .horz-toolbar .square-toolbar-button.selected:not(.disabled) {
|
#ovkDraw .literally .lc-picker .toolbar-button.selected:not(.disabled),
|
||||||
|
#ovkDraw .literally .horz-toolbar .square-toolbar-button.selected:not(.disabled) {
|
||||||
background-color: #cdcdcd;
|
background-color: #cdcdcd;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ovkDraw .literally .lc-picker .toolbar-button:hover:not(.disabled), #ovkDraw .literally .horz-toolbar .square-toolbar-button:hover:not(.disabled) {
|
#ovkDraw .literally .lc-picker .toolbar-button:hover:not(.disabled),
|
||||||
|
#ovkDraw .literally .horz-toolbar .square-toolbar-button:hover:not(.disabled) {
|
||||||
border-color: #cdcdcd;
|
border-color: #cdcdcd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1598,7 +1636,8 @@ html {
|
||||||
}
|
}
|
||||||
|
|
||||||
.knowledgeBaseArticle {
|
.knowledgeBaseArticle {
|
||||||
margin-top: -11px; /* this is very stupid fix but nah */
|
margin-top: -11px;
|
||||||
|
/* this is very stupid fix but nah */
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar-list {
|
.avatar-list {
|
||||||
|
@ -1916,6 +1955,7 @@ html {
|
||||||
.mb_tab#active a {
|
.mb_tab#active a {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile_thumb {
|
.profile_thumb {
|
||||||
padding: 0px 10px 0px 0px;
|
padding: 0px 10px 0px 0px;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
|
|
Loading…
Reference in a new issue