summaryrefslogtreecommitdiff
path: root/public/assets/css
diff options
context:
space:
mode:
authorjulian laplace <julescarbon@gmail.com>2022-10-27 20:56:44 +0200
committerjulian laplace <julescarbon@gmail.com>2022-10-27 20:56:44 +0200
commita785cfa3d2977e80a7419894e3767e9b8f45fe5b (patch)
tree0de4182e4e04a1fea1531a7cb92fdc763e1bc89c /public/assets/css
parent7ac985f220ccedb8c4c305e15521c94436aa3dfb (diff)
click row
Diffstat (limited to 'public/assets/css')
-rw-r--r--public/assets/css/hootstream.css18
1 files changed, 15 insertions, 3 deletions
diff --git a/public/assets/css/hootstream.css b/public/assets/css/hootstream.css
index da65bc5..97d1a77 100644
--- a/public/assets/css/hootstream.css
+++ b/public/assets/css/hootstream.css
@@ -60,7 +60,7 @@
padding-left: 7.5rem;
margin-bottom: 1rem;
display: flex;
- flex-direction: row;
+ flex-flow: row wrap;
align-items: flex-end;
}
#hootevents .hootText img {
@@ -188,6 +188,7 @@
margin-left: 8.25rem;
width: calc(100% - 12rem);
height: 0;
+ display: none;
}
#hootevents .divider.dark {
border-top: 1px solid rgba(88, 88, 88, 0.4);
@@ -196,14 +197,24 @@
border-bottom: 0;
}
#hootevents .thread {
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+}
+#hootevents .thread:nth-child(odd) {
background: linear-gradient(
90deg,
rgba(127, 127, 127, 0),
rgba(127, 127, 127, 0.05),
rgba(127, 127, 127, 0)
);
- margin-top: 1rem;
- margin-bottom: 1rem;
+}
+#hootevents .thread:nth-child(even) {
+ background: linear-gradient(
+ 90deg,
+ rgba(96, 96, 96, 0),
+ rgba(96, 96, 96, 0.05),
+ rgba(96, 96, 96, 0)
+ );
}
#hootevents .thread + .thread {
margin-top: 0;
@@ -263,6 +274,7 @@
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
+ cursor: pointer;
}
#hootevents .fileRow div {
color: rgba(64, 64, 64, 1);