mirror of https://github.com/Chocobozzz/PeerTube
Blue links color in comments
parent
ff33642709
commit
6304df89d6
|
@ -13,6 +13,7 @@ rules:
|
||||||
attribute-quotes: 0
|
attribute-quotes: 0
|
||||||
border-zero: 0
|
border-zero: 0
|
||||||
no-color-keywords: 0
|
no-color-keywords: 0
|
||||||
|
no-color-literals: 0
|
||||||
no-css-comments: 0
|
no-css-comments: 0
|
||||||
no-important: 0
|
no-important: 0
|
||||||
no-trailing-zero: 1
|
no-trailing-zero: 1
|
||||||
|
@ -20,6 +21,10 @@ rules:
|
||||||
space-before-bang: 1
|
space-before-bang: 1
|
||||||
space-after-colon: 1
|
space-after-colon: 1
|
||||||
space-before-colon: 1
|
space-before-colon: 1
|
||||||
|
clean-import-paths: 0
|
||||||
hex-length: 1
|
hex-length: 1
|
||||||
hex-notation: 0
|
hex-notation: 0
|
||||||
|
nesting-depth:
|
||||||
|
- 1
|
||||||
|
- max-depth: 4
|
||||||
indentation: 2
|
indentation: 2
|
||||||
|
|
|
@ -48,15 +48,17 @@
|
||||||
.comment-html {
|
.comment-html {
|
||||||
@include peertube-word-wrap;
|
@include peertube-word-wrap;
|
||||||
|
|
||||||
|
// Mentions
|
||||||
/deep/ a {
|
/deep/ a {
|
||||||
@include disable-default-a-behaviour;
|
|
||||||
|
|
||||||
color: #000;
|
|
||||||
|
|
||||||
// Semi bold mentions
|
|
||||||
&:not(.linkified-url) {
|
&:not(.linkified-url) {
|
||||||
|
@include disable-default-a-behaviour;
|
||||||
|
|
||||||
|
color: #000;
|
||||||
|
|
||||||
font-weight: $font-semibold;
|
font-weight: $font-semibold;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,7 +66,8 @@
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
.comment-action-reply, .comment-action-delete {
|
.comment-action-reply,
|
||||||
|
.comment-action-delete {
|
||||||
color: #585858;
|
color: #585858;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
@ -92,7 +95,7 @@
|
||||||
|
|
||||||
@media screen and (max-width: 600px) {
|
@media screen and (max-width: 600px) {
|
||||||
.children {
|
.children {
|
||||||
margin-left: -40px;
|
margin-left: -35px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.root-comment {
|
.root-comment {
|
||||||
|
|
Loading…
Reference in New Issue