]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix multiple select tags value theming
authorChocobozzz <me@florianbigard.com>
Mon, 27 Feb 2023 14:51:11 +0000 (15:51 +0100)
committerChocobozzz <me@florianbigard.com>
Mon, 27 Feb 2023 14:51:11 +0000 (15:51 +0100)
client/src/sass/ng-select.scss

index b0af4f763ef2c9fddec5291834472a9fcdf9531f..f55b3d2d14030b02effa06f386f6eb8e84bbc3d7 100644 (file)
@@ -75,7 +75,7 @@ $ng-select-input-text: pvar(--mainForegroundColor);
   &.ng-select-single .ng-value-container .ng-value {
     color: pvar(--inputForegroundColor);
 
-    .ng-value-label { /* stylelint-disable-line */
+    .ng-value-label {
       display: flex;
       align-items: center;
     }
@@ -84,8 +84,14 @@ $ng-select-input-text: pvar(--mainForegroundColor);
   &.ng-select-multiple .ng-select-container .ng-value-container {
     @include padding-left(12px);
 
-    .ng-value { /* stylelint-disable-line */
+    .ng-value {
       @include margin-left(12px);
+
+      background-color: pvar(--mainColorLightest);
+
+      .ng-value-icon {
+        border: none !important;
+      }
     }
   }
 }