diff options
author | 2023-11-09 21:38:34 -0500 | |
---|---|---|
committer | 2023-11-10 10:38:34 +0800 | |
commit | cdd4609f82111a05f6e3d35d639adf4d4abc7e93 (patch) | |
tree | 4e51aef3d33849d0bb02dae2f6f3eaf75d6818a6 | |
parent | efac2cd0b633f07d299c21be1665e93f0124f03b (diff) | |
download | refined-github-main.tar.gz refined-github-main.tar.zst refined-github-main.zip |
Co-authored-by: Federico Brigante <me@fregante.com>
-rw-r--r-- | source/features/clean-checks-list.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source/features/clean-checks-list.css b/source/features/clean-checks-list.css index 698babd8..886d5f4b 100644 --- a/source/features/clean-checks-list.css +++ b/source/features/clean-checks-list.css @@ -28,6 +28,20 @@ opacity: 50%; } +/* Untruncate long check descriptions: https://github.com/hashicorp/consul/commit/38d94282ca0a1ed66d21ebb5c966a97e450d0ae3 */ +.merge-status-item .css-truncate { + white-space: unset !important; +} + +/* Top align check symbol */ +.merge-status-item .merge-status-icon { + align-self: flex-start !important; + + & svg { + height: 20px; + } +} + /* Test URLs https://github.com/refined-github/refined-github/commit/5c9d630423d66732cb1e2bd7935fc67c133f6072 |