]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/sass/ng-select.scss
Some fixes for themes
[github/Chocobozzz/PeerTube.git] / client / src / sass / ng-select.scss
1 @use '_variables' as *;
2 @use '_mixins' as *;
3
4 $ng-select-highlight: #f2690d;
5 // $ng-select-primary-text: #333 !default;
6 // $ng-select-disabled-text: #f9f9f9 !default;
7 // $ng-select-border: #ccc !default;
8 // $ng-select-border-radius: 4px !default;
9 // $ng-select-bg: #ffffff !default;
10 // $ng-select-selected: lighten($ng-select-highlight, 46) !default;
11 // $ng-select-marke d: lighten($ng-select-highlight, 48) !default;
12 $ng-select-box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest);
13 // $ng-select-placeholder: lighten($ng-select-primary-text, 40) !default;
14 $ng-select-height: 30px;
15 $ng-select-value-padding-left: 15px;
16 $ng-select-value-font-size: 15px;
17
18 @import '~@ng-select/ng-select/scss/default.theme';
19
20 .ng-select {
21 font-size: $ng-select-value-font-size;
22
23 &.ng-select-focused {
24 &:not(.ng-select-opened) > .ng-select-container {
25 border-color: #ccc !important;
26 box-shadow: none !important;
27 }
28 }
29
30 .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
31 color: pvar(--mainForegroundColor);
32 background-color: pvar(--mainBackgroundColor);
33 }
34
35 .ng-select-container {
36 background-color: pvar(--inputBackgroundColor);
37 }
38
39 .ng-arrow-wrapper {
40 @include padding-right(12px);
41 }
42
43 &.ng-select-single .ng-value-container .ng-value {
44 color: pvar(--inputForegroundColor);
45
46 .ng-value-label { /* stylelint-disable-line */
47 display: flex;
48 align-items: center;
49 }
50 }
51
52 &.ng-select-multiple .ng-select-container .ng-value-container {
53 @include padding-left(12px);
54
55 .ng-value { /* stylelint-disable-line */
56 @include margin-left(12px);
57 }
58 }
59 }