mirror of https://github.com/zulip/zulip.git
stylelint: Fix css stylistic violations in various scss stylesheets.
This commit is contained in:
parent
be77e600ee
commit
fa3a337f37
|
@ -60,7 +60,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes bounce {
|
@keyframes bounce {
|
||||||
0%, 100% {
|
0%,
|
||||||
|
100% {
|
||||||
-webkit-transform: translateY(0px);
|
-webkit-transform: translateY(0px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -276,5 +277,5 @@
|
||||||
#hotspot_intro_reply_icon {
|
#hotspot_intro_reply_icon {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
transform: perspective(1px) translateY(-75%)
|
transform: perspective(1px) translateY(-75%);
|
||||||
}
|
}
|
||||||
|
|
|
@ -113,7 +113,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes shake {
|
@keyframes shake {
|
||||||
10%, 90% {
|
10%,
|
||||||
|
90% {
|
||||||
transform: translate3d(-1px, 0, 0);
|
transform: translate3d(-1px, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -167,7 +167,8 @@
|
||||||
margin-left: 7px;
|
margin-left: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#searchbox, #searchbox_legacy {
|
#searchbox,
|
||||||
|
#searchbox_legacy {
|
||||||
margin-left: 42px;
|
margin-left: 42px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -244,7 +245,8 @@
|
||||||
margin-right: 115px;
|
margin-right: 115px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#searchbox, #searchbox_legacy {
|
#searchbox,
|
||||||
|
#searchbox_legacy {
|
||||||
.input-append .fa-search {
|
.input-append .fa-search {
|
||||||
top: 5px;
|
top: 5px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -422,7 +422,8 @@ a.title:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
img.screenshot {
|
img.screenshot {
|
||||||
/* This makes it so screenshots are still shown if they are larger than their span.*/
|
/* This makes it so screenshots are still shown
|
||||||
|
even if they are larger than their span. */
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1890,7 +1891,7 @@ input.new-organization-button {
|
||||||
}
|
}
|
||||||
|
|
||||||
.line-break-desktop {
|
.line-break-desktop {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1103,10 +1103,10 @@ td.pointer {
|
||||||
|
|
||||||
.selected_message .messagebox-content {
|
.selected_message .messagebox-content {
|
||||||
box-shadow: inset 0px 0px 0px 2px hsl(215, 47%, 50%),
|
box-shadow: inset 0px 0px 0px 2px hsl(215, 47%, 50%),
|
||||||
-1px -1px 0px 0px hsl(215, 47%, 50%),
|
-1px -1px 0px 0px hsl(215, 47%, 50%),
|
||||||
1px 1px 0px 0px hsl(215, 47%, 50%),
|
1px 1px 0px 0px hsl(215, 47%, 50%),
|
||||||
-1px 1px 0px 0px hsl(215, 47%, 50%),
|
-1px 1px 0px 0px hsl(215, 47%, 50%),
|
||||||
1px -1px 0px 0px hsl(215, 47%, 50%);
|
1px -1px 0px 0px hsl(215, 47%, 50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.message_sender {
|
.message_sender {
|
||||||
|
|
|
@ -238,7 +238,7 @@ a.button:hover {
|
||||||
line-height: 100%;
|
line-height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* iOS converts adreses in emails to links automatically*/
|
/* iOS converts adreses in emails to links automatically */
|
||||||
.apple-link a {
|
.apple-link a {
|
||||||
color: inherit !important;
|
color: inherit !important;
|
||||||
font-family: inherit !important;
|
font-family: inherit !important;
|
||||||
|
|
Loading…
Reference in New Issue