diff options
author | Manti <67705577+mantikafasi@users.noreply.github.com> | 2023-09-21 18:16:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-21 17:16:15 +0200 |
commit | e5c0898dd6ee4bae213aa2d727e15714739d2f91 (patch) | |
tree | b429661bc240115992c70b36974068139cc39a55 /src/plugins/reviewDB/style.css | |
parent | 9550b74b2ac00be97201855efc85bc527926d610 (diff) | |
download | Vencord-e5c0898dd6ee4bae213aa2d727e15714739d2f91.tar.gz Vencord-e5c0898dd6ee4bae213aa2d727e15714739d2f91.tar.bz2 Vencord-e5c0898dd6ee4bae213aa2d727e15714739d2f91.zip |
[ReviewDB] add emojis, discord markdown & notifications (#1718)
Co-authored-by: V <vendicated@riseup.net>
Diffstat (limited to 'src/plugins/reviewDB/style.css')
-rw-r--r-- | src/plugins/reviewDB/style.css | 37 |
1 files changed, 31 insertions, 6 deletions
diff --git a/src/plugins/reviewDB/style.css b/src/plugins/reviewDB/style.css index 83cf087..f4d890f 100644 --- a/src/plugins/reviewDB/style.css +++ b/src/plugins/reviewDB/style.css @@ -14,7 +14,16 @@ overflow: hidden; background: transparent; border: 1px solid var(--profile-message-input-border-color); - font-size: 14px; +} + +.vc-rdb-modal-footer > div { + width: 100%; + margin: 6px 16px; +} + +/* When input becomes disabled(while sending review), input adds unneccesary padding to left, this prevents it */ +.vc-rdb-input > div > div { + padding-left: 0 !important; } .vc-rdb-placeholder { @@ -24,13 +33,12 @@ color: var(--text-muted); } -.vc-rdb-modal-footer { - padding: 0; +.vc-rdb-input * { + font-size: 14px; } -.vc-rdb-modal-footer > div { - width: 100%; - margin: 6px 16px; +.vc-rdb-modal-footer { + padding: 0; } .vc-rdb-modal-footer .vc-rdb-input { @@ -49,3 +57,20 @@ .vc-rdb-modal-reviews { margin-top: 16px; } + +.vc-rdb-review { + margin-top: 8px; + margin-bottom: 8px; +} + +.vc-rdb-review-comment img { + vertical-align: text-top; +} + +.vc-rdb-review-comment { + overflow-y: hidden; + margin-top: 1px; + margin-bottom: 8px; + color: var(--text-normal); + font-size: 15px; +} |