Last active
June 11, 2020 05:38
-
-
Save rqx110/53d707c562836d243279154e6bd4c7d7 to your computer and use it in GitHub Desktop.
custom theme for https://github.com/ng-select/ng-select
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ng-select-highlight: #9aabff; | |
@ng-select-primary-text: #495057; | |
@ng-select-disabled-text: #f9f9f9; | |
@ng-select-border: #e2e5ec; | |
@ng-select-border-radius: 4px; | |
@ng-select-bg: #ffffff; | |
@ng-select-selected: #f3f6f9; | |
@ng-select-marked: #f3f6f9; | |
@ng-select-placeholder: lighten(@ng-select-primary-text, 40); | |
@ng-select-height: calc(1.5em + 1.3rem + 2px); | |
@ng-select-value-padding-left: 10px; | |
@ng-select-value-font-size: 0.9em; | |
.ng-select { | |
&.ng-select-opened { | |
> .ng-select-container { | |
background: @ng-select-bg; | |
border-color: @ng-select-highlight; | |
&:hover { | |
box-shadow: none; | |
} | |
.ng-arrow { | |
top: -2px; | |
border-color: transparent transparent darken(@ng-select-border, 20); | |
border-width: 0 5px 5px; | |
&:hover { | |
border-color: transparent transparent darken(@ng-select-border, 60); | |
} | |
} | |
} | |
&.ng-select-bottom { | |
> .ng-select-container { | |
border-bottom-right-radius: 0; | |
border-bottom-left-radius: 0; | |
} | |
} | |
&.ng-select-top { | |
> .ng-select-container { | |
border-top-right-radius: 0; | |
border-top-left-radius: 0; | |
} | |
} | |
} | |
&.ng-select-focused { | |
&:not(.ng-select-opened) > .ng-select-container { | |
border-color: @ng-select-highlight; | |
} | |
} | |
&.ng-select-disabled { | |
> .ng-select-container { | |
background-color: @ng-select-disabled-text; | |
} | |
} | |
.ng-has-value .ng-placeholder { | |
display: none; | |
} | |
.ng-select-container { | |
color: @ng-select-primary-text; | |
background-color: @ng-select-bg; | |
border-radius: @ng-select-border-radius; | |
border: 1px solid @ng-select-border; | |
min-height: @ng-select-height; | |
align-items: center; | |
.ng-value-container { | |
align-items: center; | |
padding-left: @ng-select-value-padding-left; | |
.ng-placeholder { | |
color: @ng-select-placeholder; | |
} | |
} | |
} | |
&.ng-select-single { | |
.ng-select-container { | |
min-height: @ng-select-height; | |
.ng-value-container { | |
.ng-input { | |
top: 10px; | |
left: 0; | |
padding-left: @ng-select-value-padding-left; | |
padding-right: 50px; | |
} | |
} | |
} | |
} | |
&.ng-select-multiple { | |
&.ng-select-disabled { | |
> .ng-select-container .ng-value-container .ng-value { | |
background-color: @ng-select-disabled-text; | |
border: 1px solid lighten(@ng-select-border, 10); | |
.ng-value-label { | |
padding: 0 5px; | |
} | |
} | |
} | |
.ng-select-container { | |
.ng-value-container { | |
padding-top: 5px; | |
padding-left: 7px; | |
.ng-value { | |
font-size: @ng-select-value-font-size; | |
margin-bottom: 5px; | |
background-color: @ng-select-selected; | |
border-radius: 2px; | |
margin-right: 5px; | |
&.ng-value-disabled { | |
background-color: @ng-select-disabled-text; | |
.ng-value-label { | |
padding-left: 5px; | |
} | |
} | |
.ng-value-label { | |
display: inline-block; | |
padding: 1px 5px; | |
} | |
.ng-value-icon { | |
display: inline-block; | |
padding: 1px 5px; | |
&:hover { | |
background-color: darken(@ng-select-selected, 5); | |
} | |
&.left { | |
border-right: 1px solid darken(@ng-select-selected, 10); | |
} | |
&.right { | |
border-left: 1px solid darken(@ng-select-selected, 10); | |
} | |
} | |
} | |
.ng-input { | |
padding: 0 0 3px 3px; | |
} | |
.ng-placeholder { | |
top: 10px; | |
padding-bottom: 5px; | |
padding-left: 3px; | |
} | |
} | |
} | |
} | |
.ng-clear-wrapper { | |
color: darken(@ng-select-border, 20); | |
&:hover .ng-clear { | |
color: #D0021B; | |
} | |
} | |
.ng-spinner-zone { | |
padding: 5px 5px 0 0; | |
} | |
.ng-arrow-wrapper { | |
width: 25px; | |
padding-right: 5px; | |
&:hover { | |
.ng-arrow { | |
border-top-color: darken(@ng-select-border, 40); | |
} | |
} | |
.ng-arrow { | |
border-color: darken(@ng-select-border, 20) transparent transparent; | |
border-style: solid; | |
border-width: 5px 5px 2.5px; | |
} | |
} | |
} | |
.ng-dropdown-panel { | |
background-color: @ng-select-bg; | |
border: 1px solid @ng-select-border; | |
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); | |
left: 0; | |
&.ng-select-bottom { | |
top: 100%; | |
border-bottom-right-radius: 4px; | |
border-bottom-left-radius: 4px; | |
border-top-color: @ng-select-highlight; | |
margin-top: -1px; | |
.ng-dropdown-panel-items { | |
.ng-option { | |
&:last-child { | |
border-bottom-right-radius: 4px; | |
border-bottom-left-radius: 4px; | |
} | |
} | |
} | |
} | |
&.ng-select-top { | |
bottom: 100%; | |
border-top-right-radius: 4px; | |
border-top-left-radius: 4px; | |
border-bottom-color: @ng-select-highlight; | |
margin-bottom: -1px; | |
.ng-dropdown-panel-items { | |
.ng-option { | |
&:first-child { | |
border-top-right-radius: 4px; | |
border-top-left-radius: 4px; | |
} | |
} | |
} | |
} | |
.ng-dropdown-header { | |
border-bottom: 1px solid @ng-select-border; | |
padding: 5px 7px; | |
} | |
.ng-dropdown-footer { | |
border-top: 1px solid @ng-select-border; | |
padding: 5px 7px; | |
} | |
.ng-dropdown-panel-items { | |
.ng-optgroup { | |
user-select: none; | |
padding: 8px 10px; | |
font-weight: 500; | |
color: rgba(0, 0, 0, 0.54); | |
cursor: pointer; | |
&.ng-option-disabled { | |
cursor: default; | |
} | |
&.ng-option-marked { | |
background-color: @ng-select-marked; | |
} | |
&.ng-option-selected, &.ng-option-selected.ng-option-marked { | |
background-color: @ng-select-selected; | |
font-weight: 600; | |
} | |
} | |
.ng-option { | |
background-color: @ng-select-bg; | |
color: rgba(0, 0, 0, .87); | |
padding: 8px 10px; | |
&.ng-option-selected, &.ng-option-selected.ng-option-marked { | |
color: @ng-select-primary-text; | |
background-color: @ng-select-selected; | |
.ng-option-label { | |
font-weight: 600; | |
} | |
} | |
&.ng-option-marked { | |
background-color: @ng-select-marked; | |
color: @ng-select-primary-text; | |
} | |
&.ng-option-disabled { | |
color: lighten(@ng-select-primary-text, 60); | |
} | |
&.ng-option-child { | |
padding-left: 22px; | |
} | |
.ng-tag-label { | |
font-size: 80%; | |
font-weight: 400; | |
padding-right: 5px; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment