File tree Expand file tree Collapse file tree
src/components/allowed-users/components/PermissionsConfig Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export const PermissionExplanations = styled.div`
7979 ul {
8080 margin: 0;
8181 padding-left: 1.25rem;
82-
82+
8383 li {
8484 margin-bottom: 0.5rem;
8585 font-size: 13px;
@@ -100,25 +100,27 @@ export const PermissionExplanations = styled.div`
100100export const ForcedSelectWrapper = styled . div < { $isForced : boolean } > `
101101 .ant-select {
102102 width: 100%;
103-
103+ .ant-select-arrow{
104+ color: ${ ( props ) => ( ! props . $isForced ? `var(--text-main-color)` : `var(--text-light-color)` ) } ;
105+ }
104106 .ant-select-selector {
105- background-color: ${ props => props . $isForced ? '#1a1d35' : '#25284B' } !important;
106- border: ${ props => props . $isForced ? '1px solid #434343' : '1px solid #d9d9d9' } !important;
107- color: ${ props => props . $isForced ? '#8c8c8c' : '#d9d9d9' } !important;
107+ background-color: ${ ( props ) => ( props . $isForced ? '#1a1d35' : '#25284B' ) } !important;
108+ border: ${ ( props ) => ( props . $isForced ? '1px solid #434343' : '1px solid #d9d9d9' ) } !important;
109+ color: ${ ( props ) => ( props . $isForced ? '#8c8c8c' : '#d9d9d9' ) } !important;
108110 }
109-
111+
110112 .ant-select-selection-item {
111- color: ${ props => props . $isForced ? '#8c8c8c' : '#d9d9d9' } !important;
113+ color: ${ ( props ) => ( props . $isForced ? '#8c8c8c' : '#d9d9d9' ) } !important;
112114 }
113-
115+
114116 &.ant-select-disabled {
115117 .ant-select-selector {
116- background-color: ${ props => props . $isForced ? '#1a1d35' : '#25284B' } !important;
117- border: ${ props => props . $isForced ? '1px solid #434343' : '1px solid #d9d9d9' } !important;
118+ background-color: ${ ( props ) => ( props . $isForced ? '#1a1d35' : '#25284B' ) } !important;
119+ border: ${ ( props ) => ( props . $isForced ? '1px solid #434343' : '1px solid #d9d9d9' ) } !important;
118120 }
119-
121+
120122 .ant-select-selection-item {
121- color: ${ props => props . $isForced ? '#8c8c8c' : '#d9d9d9' } !important;
123+ color: ${ ( props ) => ( props . $isForced ? '#8c8c8c' : '#d9d9d9' ) } !important;
122124 }
123125 }
124126 }
You can’t perform that action at this time.
0 commit comments