Change number-leading-zero

This commit is contained in:
Pavel Djundik 2017-08-23 19:08:35 +03:00
parent 16f6230524
commit 14db6d7266
2 changed files with 8 additions and 9 deletions

View File

@ -2,4 +2,3 @@ extends: stylelint-config-standard
rules: rules:
indentation: tab indentation: tab
number-leading-zero: never

View File

@ -10,16 +10,16 @@
} }
::-moz-placeholder { ::-moz-placeholder {
color: rgba(131, 148, 150, .9); color: rgba(131, 148, 150, 0.9);
opacity: 1; opacity: 1;
} }
::-webkit-input-placeholder { ::-webkit-input-placeholder {
color: rgba(131, 148, 150, .9); color: rgba(131, 148, 150, 0.9);
} }
:-ms-input-placeholder { :-ms-input-placeholder {
color: rgba(131, 148, 150, .9); color: rgba(131, 148, 150, 0.9);
} }
body, body,
@ -33,7 +33,7 @@ body,
i.hostmask { i.hostmask {
font-size: 90%; font-size: 90%;
opacity: .7; opacity: 0.7;
} }
/* Hide nick (and edit) in input bar, not ideal */ /* Hide nick (and edit) in input bar, not ideal */
@ -92,12 +92,12 @@ body {
} }
#chat .show-more-button { #chat .show-more-button {
background: rgba(88, 110, 117, .3); background: rgba(88, 110, 117, 0.3);
color: #fff; color: #fff;
border: 0; border: 0;
border-radius: 0; border-radius: 0;
text-transform: uppercase; text-transform: uppercase;
transition: background .2s; transition: background 0.2s;
} }
#chat .show-more-button:hover { #chat .show-more-button:hover {
@ -358,10 +358,10 @@ body {
@media (min-width: 480px) { @media (min-width: 480px) {
#chat .from::after { #chat .from::after {
background: linear-gradient(to right, rgba(5, 17, 20, .5) 0%, #051114 100%); background: linear-gradient(to right, rgba(5, 17, 20, 0.5) 0%, #051114 100%);
} }
#chat .channel .highlight .from::after { #chat .channel .highlight .from::after {
background: linear-gradient(to right, rgba(173, 20, 87, .5) 0%, #ad1457 100%); background: linear-gradient(to right, rgba(173, 20, 87, 0.5) 0%, #ad1457 100%);
} }
} }