diff options
| author | julian laplace <julescarbon@gmail.com> | 2022-10-30 21:03:16 +0100 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2022-10-30 21:03:16 +0100 |
| commit | bc8e849ad0033f8385c0ff7052a3c44cf1e729b5 (patch) | |
| tree | fc4dd2920f394b9b02dd1089a8625b6bc1871f27 /public/assets/css | |
| parent | d2481245a88f189ea0d1b69cc91a684f3e2bb46b (diff) | |
expand/post icons
Diffstat (limited to 'public/assets/css')
| -rw-r--r-- | public/assets/css/hootstream.css | 72 |
1 files changed, 52 insertions, 20 deletions
diff --git a/public/assets/css/hootstream.css b/public/assets/css/hootstream.css index eee0e9b..2acd5ce 100644 --- a/public/assets/css/hootstream.css +++ b/public/assets/css/hootstream.css @@ -41,36 +41,55 @@ justify-content: flex-start; align-items: center; } -#hootevents .threadTitle .text .actions { +#hootevents .threadTitle .actions { display: flex; flex-direction: row; justify-content: flex-start; align-items: center; - transition: opacity 0.1s; - opacity: 0.8; user-select: none; } -#hootevents .threadTitle:hover .text .actions { +#hootevents .threadTitle:hover .actions { opacity: 1; } -#hootevents .threadTitle .text .actions div { +#hootevents .threadTitle .actions div { cursor: default; margin-left: 0.5rem; } -#hootevents .threadTitle .text .actions .action { +#hootevents .threadTitle .actions .action { + font-size: 0.75rem; cursor: pointer; - color: #48f; - opacity: 0.9; + color: #bef; transition: opacity 0.1s; + display: flex; + flex-direction: row; + flex-wrap: ; + align-items: flex-start; + justify-content: center; } -#hootevents .threadTitle .text .actions .action:hover { +#hootevents .threadTitle .actions .action:hover { text-decoration: underline; opacity: 1; } -#hootevents .threadTitle .text .actions .action[data-action="play"] { +#hootevents .threadTitle .actions .action[data-action="play"] { color: #8df; } +.icon:not(:root) { + overflow: hidden; +} +.icon { + pointer-events: none; + user-select: none; + width: 0.675em; + height: 0.675em; + display: inline-block; + fill: currentcolor; + flex-shrink: 0; + transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; + font-size: 1.5rem; + margin: 0; +} + /** ImAgeS and other image lISTS!! */ #hootevents .imageList { padding-left: 7.5rem; @@ -192,8 +211,6 @@ #hootevents .hoot .threadLink { color: #6bf; font-size: 16px; - text-decoration: none; - border-bottom: 1px solid; } /** DiViDErZ */ @@ -221,17 +238,17 @@ #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) + rgba(127, 127, 127, 0.01), + rgba(127, 127, 127, 0.08), + rgba(127, 127, 127, 0.01) ); } #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) + rgba(96, 96, 96, 0.01), + rgba(96, 96, 96, 0.1), + rgba(96, 96, 96, 0.01) ); } #hootevents .thread + .thread { @@ -465,20 +482,35 @@ color: #888; } #hootfilters .filter, -#hootfilters .sort label { +#hootfilters .sort label, +#hootfilters .links a { background: rgba(127, 127, 167, 0.4); border-radius: 0.5rem; padding: 0.375rem 0.5rem; opacity: 0.9; } +#hootevents .threadTitle .actions .action { + background: rgba(127, 127, 167, 0.4); + border-radius: 0.5rem; + padding: 0.125rem; + opacity: 0.9; +} +#hootfilters .links a { + margin: 0 0.125rem; + background: rgba(127, 127, 167, 0.2); +} #hootfilters .filterSet { opacity: 0.9; transition: opacity 0.1s; } #hootfilters .filter:hover, -#hootfilters .sort:hover label { +#hootfilters .sort:hover label, +#hootfilters .links a:hover { opacity: 1; } +#hootfilters .links a:hover { + background: rgba(127, 127, 167, 0.3); +} #hootfilters .filterSet:hover { opacity: 1; } |
