aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-05-17 15:19:40 +0200
committerChocobozzz <me@florianbigard.com>2023-05-17 15:19:40 +0200
commit42379e4eef2987472790656d6b8ab6c3a57825fa (patch)
treefa042cd60e9c5b7c0092ad52d6988efd09243838 /client/src/sass
parentd3fcf1c57ab898e18654910e880875a911fbd128 (diff)
downloadPeerTube-42379e4eef2987472790656d6b8ab6c3a57825fa.tar.gz
PeerTube-42379e4eef2987472790656d6b8ab6c3a57825fa.tar.zst
PeerTube-42379e4eef2987472790656d6b8ab6c3a57825fa.zip
Fix table th on RTL layout
Diffstat (limited to 'client/src/sass')
-rw-r--r--client/src/sass/primeng-custom.scss9
1 files changed, 7 insertions, 2 deletions
diff --git a/client/src/sass/primeng-custom.scss b/client/src/sass/primeng-custom.scss
index 7f65eded7..cf55bad79 100644
--- a/client/src/sass/primeng-custom.scss
+++ b/client/src/sass/primeng-custom.scss
@@ -545,11 +545,16 @@ p-table {
545 } 545 }
546 546
547 th { 547 th {
548 @include padding-left(15px);
549 @include padding-right(0px);
550
551 padding-top: 5px !important;
552 padding-bottom: 5px !important;
553
548 border: none !important; 554 border: none !important;
549 border-bottom: 1px solid !important; 555 border-bottom: 1px solid !important;
550 border-color: pvar(--submenuBackgroundColor) !important; 556 border-color: pvar(--submenuBackgroundColor) !important;
551 text-align: left !important; 557 text-align: start !important;
552 padding: 5px 0 5px 15px !important;
553 font-weight: $font-semibold !important; 558 font-weight: $font-semibold !important;
554 color: pvar(--mainForegroundColor) !important; 559 color: pvar(--mainForegroundColor) !important;
555 560