superdesk-ui-framework 3.0.1-beta.3 → 3.0.1-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/styles/_sd-tag-input.scss +201 -296
- package/app/styles/components/_list-item.scss +13 -1
- package/app/styles/components/_sd-photo-preview.scss +1 -1
- package/app/styles/design-tokens/_new-colors.scss +1 -1
- package/app/styles/form-elements/_forms-general.scss +22 -7
- package/app/styles/form-elements/_inputs.scss +131 -54
- package/app-typescript/components/Badge.tsx +3 -2
- package/app-typescript/components/DatePicker.tsx +40 -52
- package/app-typescript/components/DurationInput.tsx +306 -0
- package/app-typescript/components/Form/InputBase.tsx +85 -0
- package/app-typescript/components/Form/InputNew.tsx +105 -0
- package/app-typescript/components/Form/InputWrapper.tsx +79 -0
- package/app-typescript/components/Form/index.tsx +3 -0
- package/app-typescript/components/Input.tsx +28 -45
- package/app-typescript/components/Label.tsx +49 -10
- package/app-typescript/components/Layouts/Layout.tsx +1 -1
- package/app-typescript/components/Lists/ContentList.tsx +4 -4
- package/app-typescript/components/MultiSelect.tsx +37 -50
- package/app-typescript/components/Navigation/BottomNav.tsx +3 -2
- package/app-typescript/components/Select.tsx +23 -41
- package/app-typescript/components/SelectWithTemplate.tsx +32 -7
- package/app-typescript/components/TimePicker.tsx +48 -16
- package/app-typescript/components/TreeSelect.tsx +423 -195
- package/app-typescript/index.ts +3 -1
- package/dist/examples.bundle.js +16398 -15334
- package/dist/playgrounds/react-playgrounds/CoreLayout.tsx +64 -54
- package/dist/playgrounds/react-playgrounds/RundownEditor.tsx +24 -16
- package/dist/playgrounds/react-playgrounds/TestGround.tsx +76 -1
- package/dist/playgrounds/react-playgrounds/components/Layout.tsx +1 -1
- package/dist/react/Badges.tsx +18 -0
- package/dist/react/ContentList.tsx +15 -9
- package/dist/react/DatePicker.tsx +21 -1
- package/dist/react/DurationInput.tsx +104 -0
- package/dist/react/Index.tsx +5 -0
- package/dist/react/Inputs.tsx +153 -2
- package/dist/react/Labels.tsx +51 -1
- package/dist/react/MultiSelect.tsx +4 -1
- package/dist/react/SelectWithTemplate.tsx +6 -1
- package/dist/react/TableList.tsx +22 -44
- package/dist/react/TimePicker.tsx +16 -8
- package/dist/react/TreeSelect.tsx +301 -48
- package/dist/react/tree-select/TreeSelect.tsx +273 -0
- package/dist/react/tree-select/example-1.tsx +71 -0
- package/dist/react/tree-select/example-2.tsx +59 -0
- package/dist/superdesk-ui.bundle.css +411 -370
- package/dist/superdesk-ui.bundle.js +15554 -14493
- package/dist/vendor.bundle.js +27 -27
- package/examples/pages/playgrounds/react-playgrounds/CoreLayout.tsx +64 -54
- package/examples/pages/playgrounds/react-playgrounds/RundownEditor.tsx +24 -16
- package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +76 -1
- package/examples/pages/playgrounds/react-playgrounds/components/Layout.tsx +1 -1
- package/examples/pages/react/Badges.tsx +18 -0
- package/examples/pages/react/ContentList.tsx +15 -9
- package/examples/pages/react/DatePicker.tsx +21 -1
- package/examples/pages/react/DurationInput.tsx +104 -0
- package/examples/pages/react/Index.tsx +5 -0
- package/examples/pages/react/Inputs.tsx +153 -2
- package/examples/pages/react/Labels.tsx +51 -1
- package/examples/pages/react/MultiSelect.tsx +4 -1
- package/examples/pages/react/SelectWithTemplate.tsx +6 -1
- package/examples/pages/react/TableList.tsx +22 -44
- package/examples/pages/react/TimePicker.tsx +16 -8
- package/examples/pages/react/TreeSelect.tsx +301 -48
- package/examples/pages/react/tree-select/TreeSelect.tsx +273 -0
- package/examples/pages/react/tree-select/example-1.tsx +71 -0
- package/examples/pages/react/tree-select/example-2.tsx +59 -0
- package/package.json +2 -1
- package/react/components/Badge.d.ts +1 -0
- package/react/components/Badge.js +2 -2
- package/react/components/DatePicker.d.ts +1 -0
- package/react/components/DatePicker.js +6 -22
- package/react/components/DurationInput.d.ts +38 -0
- package/react/components/DurationInput.js +271 -0
- package/react/components/Form/InputBase.d.ts +42 -0
- package/react/components/Form/InputBase.js +72 -0
- package/react/components/Form/InputNew.d.ts +45 -0
- package/react/components/Form/InputNew.js +73 -0
- package/react/components/Form/InputWrapper.d.ts +28 -0
- package/react/components/Form/InputWrapper.js +91 -0
- package/react/components/Form/index.d.ts +3 -0
- package/react/components/Form/index.js +7 -1
- package/react/components/Input.js +5 -34
- package/react/components/Label.d.ts +1 -0
- package/react/components/Label.js +18 -2
- package/react/components/Layouts/Layout.js +1 -1
- package/react/components/Lists/ContentList.d.ts +45 -0
- package/react/components/Lists/ContentList.js +85 -0
- package/react/components/Navigation/BottomNav.d.ts +1 -0
- package/react/components/Navigation/BottomNav.js +2 -2
- package/react/components/Select.d.ts +1 -1
- package/react/components/Select.js +4 -26
- package/react/components/SelectWithTemplate.d.ts +11 -1
- package/react/components/SelectWithTemplate.js +19 -10
- package/react/components/TimePicker.d.ts +15 -2
- package/react/components/TimePicker.js +15 -4
- package/react/components/TreeSelect.d.ts +75 -0
- package/react/components/TreeSelect.js +448 -0
- package/react/index.d.ts +3 -0
- package/react/index.js +8 -3
@@ -10776,7 +10776,7 @@
|
|
10776
10776
|
--sd-colour-bg__grid-item--selected: var(--sd-colour-bg--04);
|
10777
10777
|
--sd-colour-bg__sliding-toolbar: var(--sd-colour-interactive--darken-30);
|
10778
10778
|
--sd-colour-bg__searchbar: var(--sd-colour-bg--02);
|
10779
|
-
--sd-colour-overlay-actioning: hsla(var(--sd-colour-cool-grey-l--
|
10779
|
+
--sd-colour-overlay-actioning: hsla(var(--sd-colour-cool-grey-l--15), 0.85);
|
10780
10780
|
--color-dropdown-menu-Bg: var(--sd-colour-bg--05);
|
10781
10781
|
--color-modal-Bg: var(--sd-colour-bg--05);
|
10782
10782
|
--sd-colour--shadow-line: hsla(var(--sd-colour-cool-grey-l--70), 0.12);
|
@@ -32928,324 +32928,41 @@ sd-tag-input {
|
|
32928
32928
|
font-weight: 500;
|
32929
32929
|
letter-spacing: 0.08em; }
|
32930
32930
|
|
32931
|
-
tags-input,
|
32931
|
+
tags-input,
|
32932
|
+
.tags-input {
|
32932
32933
|
display: block;
|
32933
32934
|
background-color: var(--color-input-bg); }
|
32934
|
-
tags-input .tags-input__host,
|
32935
|
-
position: relative;
|
32936
|
-
margin-top: 0.5rem;
|
32937
|
-
margin-bottom: 0;
|
32938
|
-
height: 100%; }
|
32939
|
-
tags-input .tags-input__host:active, .tags-input .tags-input__host:active {
|
32940
|
-
outline: none; }
|
32941
|
-
tags-input .tags-input__tags, .tags-input .tags-input__tags {
|
32942
|
-
padding: 0.1rem 0 0 0.1rem;
|
32943
|
-
overflow: hidden;
|
32944
|
-
word-wrap: break-word;
|
32945
|
-
cursor: text;
|
32946
|
-
background-color: transparent;
|
32947
|
-
border: none;
|
32948
|
-
transition: border linear 0.2s, box-shadow linear 0.2s;
|
32949
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
|
32950
|
-
height: 100%; }
|
32951
|
-
tags-input .tags-input__tags:hover, .tags-input .tags-input__tags:hover {
|
32952
|
-
border-color: rgba(0, 0, 0, 0.3); }
|
32953
|
-
tags-input .tags-input__tags.focused, .tags-input .tags-input__tags.focused {
|
32954
|
-
outline: none;
|
32955
|
-
border-bottom: 1px solid var(--sd-colour-interactive);
|
32956
|
-
box-shadow: 0 1px 0 var(--sd-colour-interactive); }
|
32957
|
-
tags-input .tags-input__tags.focused .tags-input__input, .tags-input .tags-input__tags.focused .tags-input__input {
|
32958
|
-
width: auto; }
|
32959
|
-
tags-input .tags-input__tags .tags-input__tag-list, .tags-input .tags-input__tags .tags-input__tag-list {
|
32960
|
-
margin: 0;
|
32961
|
-
padding: 0;
|
32962
|
-
list-style-type: none;
|
32963
|
-
display: flex;
|
32964
|
-
justify-content: center;
|
32965
|
-
align-items: center;
|
32966
|
-
gap: 0.8rem; }
|
32967
|
-
tags-input .tags-input__tags .tags-input__tag-item, .tags-input .tags-input__tags .tags-input__tag-item {
|
32968
|
-
display: inline-flex;
|
32969
|
-
align-items: center;
|
32970
|
-
min-width: 1.8em;
|
32971
|
-
padding: 0;
|
32972
|
-
padding-inline: 1em 1em;
|
32973
|
-
border-radius: var(--b-radius--full);
|
32974
|
-
font-size: 1.4rem;
|
32975
|
-
line-height: 100%;
|
32976
|
-
position: relative;
|
32977
|
-
text-align: center;
|
32978
|
-
font-weight: 400;
|
32979
|
-
transition: background-color .2s ease-out, opacity .1s ease-out;
|
32980
|
-
margin: 0.2rem 0;
|
32981
|
-
margin-right: 0.3rem;
|
32982
|
-
height: 2.4rem;
|
32983
|
-
color: var(--color-text);
|
32984
|
-
transition: background-color .2s ease-out, color .1s ease-out, opacity .1s ease-out;
|
32985
|
-
background: var(--sd-colour__tag-label-Bg--1);
|
32986
|
-
color: currentColor; }
|
32987
|
-
tags-input .tags-input__tags .tags-input__tag-item.selected, .tags-input .tags-input__tags .tags-input__tag-item.selected {
|
32988
|
-
background-color: var(--sd-colour-interactive--alpha-70); }
|
32989
|
-
tags-input .tags-input__tags .tags-input__tag-item:hover, .tags-input .tags-input__tags .tags-input__tag-item:hover {
|
32990
|
-
cursor: pointer; }
|
32991
|
-
tags-input .tags-input__tags .tags-input__tag-item:hover .tags-input__remove-button, .tags-input .tags-input__tags .tags-input__tag-item:hover .tags-input__remove-button {
|
32992
|
-
text-decoration: none;
|
32993
|
-
background-color: var(--sd-colour__tag-label-remove-Bg--hover); }
|
32994
|
-
tags-input .tags-input__tags .tags-input__tag-item:hover .tags-input__remove-button [class^="icon-"], tags-input .tags-input__tags .tags-input__tag-item:hover .tags-input__remove-button [class*=" icon-"], .tags-input .tags-input__tags .tags-input__tag-item:hover .tags-input__remove-button [class^="icon-"], .tags-input .tags-input__tags .tags-input__tag-item:hover .tags-input__remove-button [class*=" icon-"] {
|
32995
|
-
opacity: 0.85; }
|
32996
|
-
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button, .tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button {
|
32997
|
-
height: 1.8rem;
|
32998
|
-
width: 1.8rem;
|
32999
|
-
padding: 0;
|
33000
|
-
display: inline-flex;
|
33001
|
-
align-items: center;
|
33002
|
-
justify-content: center;
|
33003
|
-
font-size: inherit;
|
33004
|
-
line-height: 1;
|
33005
|
-
text-decoration: none;
|
33006
|
-
text-align: center;
|
33007
|
-
vertical-align: middle;
|
33008
|
-
border-radius: var(--b-radius--full);
|
33009
|
-
background-color: var(--sd-colour__tag-label-remove-Bg);
|
33010
|
-
color: var(--color-text);
|
33011
|
-
cursor: pointer;
|
33012
|
-
transition: background-color .2s ease-out, color .1s ease-out, opacity .1s ease-out;
|
33013
|
-
margin-right: -1rem;
|
33014
|
-
margin-left: 0.8rem; }
|
33015
|
-
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button [class^="icon-"], tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button [class*=" icon-"], .tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button [class^="icon-"], .tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button [class*=" icon-"] {
|
33016
|
-
color: var(--color-text-light);
|
33017
|
-
font-size: 1.6rem;
|
33018
|
-
flex-grow: 0;
|
33019
|
-
flex-shrink: 0;
|
33020
|
-
margin-left: 1px;
|
33021
|
-
opacity: 0.4;
|
33022
|
-
transition: color .1s ease-out, opacity .1s ease-out; }
|
33023
|
-
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover, .tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover {
|
33024
|
-
text-decoration: none;
|
33025
|
-
background-color: var(--sd-colour__tag-label-remove-Bg--hover); }
|
33026
|
-
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover [class^="icon-"], tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover [class*=" icon-"], .tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover [class^="icon-"], .tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover [class*=" icon-"] {
|
33027
|
-
opacity: 0.85; }
|
33028
|
-
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active, .tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active {
|
33029
|
-
background-color: var(--sd-colour__tag-label-remove-Bg--hover); }
|
33030
|
-
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active [class^="icon-"], tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active [class*=" icon-"], .tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active [class^="icon-"], .tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active [class*=" icon-"] {
|
33031
|
-
color: var(--sd-colour-interactive);
|
33032
|
-
opacity: 1; }
|
33033
|
-
tags-input .tags-input__tags .tags-input__tag-item ti-tag-item, .tags-input .tags-input__tags .tags-input__tag-item ti-tag-item {
|
33034
|
-
display: flex;
|
33035
|
-
flex-direction: row;
|
33036
|
-
align-items: center; }
|
33037
|
-
tags-input .tags-input__tags .tags-input__tag-item ti-tag-item .tags-input__helper-box, .tags-input .tags-input__tags .tags-input__tag-item ti-tag-item .tags-input__helper-box {
|
33038
|
-
display: flex;
|
33039
|
-
flex-direction: row;
|
33040
|
-
align-items: center; }
|
33041
|
-
tags-input .tags-input__tags .tags-input__tag-item ti-tag-item .tags-input__helper-box span, .tags-input .tags-input__tags .tags-input__tag-item ti-tag-item .tags-input__helper-box span {
|
33042
|
-
flex-grow: 1; }
|
33043
|
-
tags-input .tags-input__tags .tags-input__tag-item-multiselect, .tags-input .tags-input__tags .tags-input__tag-item-multiselect {
|
33044
|
-
margin: 0 !important; }
|
33045
|
-
tags-input .tags-input__tags .tags-input__tag-item-readonly, .tags-input .tags-input__tags .tags-input__tag-item-readonly {
|
33046
|
-
cursor: default !important; }
|
33047
|
-
tags-input .tags-input__tags .tags-input__input, .tags-input .tags-input__tags .tags-input__input {
|
33048
|
-
border: 0;
|
33049
|
-
outline: none;
|
33050
|
-
margin: 0.2rem;
|
33051
|
-
padding: 0;
|
33052
|
-
float: left;
|
33053
|
-
height: 26px;
|
33054
|
-
color: currentColor;
|
33055
|
-
background-color: transparent;
|
33056
|
-
width: 20px; }
|
33057
|
-
tags-input .tags-input__tags .tags-input__input.invalid-tag, .tags-input .tags-input__tags .tags-input__input.invalid-tag {
|
33058
|
-
color: #e41b21; }
|
33059
|
-
tags-input .tags-input__tags .tags-input__input::-ms-clear, .tags-input .tags-input__tags .tags-input__input::-ms-clear {
|
33060
|
-
display: none; }
|
33061
|
-
tags-input .tags-input__tags .tags-input__input:focus, .tags-input .tags-input__tags .tags-input__input:focus {
|
33062
|
-
box-shadow: unset !important; }
|
33063
|
-
tags-input .tags-input__tags .tags-input__input::placeholder, .tags-input .tags-input__tags .tags-input__input::placeholder {
|
33064
|
-
opacity: 0.8;
|
33065
|
-
font-weight: 300;
|
33066
|
-
font-style: italic; }
|
33067
|
-
tags-input .tags-input__tags--boxed, .tags-input .tags-input__tags--boxed {
|
33068
|
-
background-color: rgba(0, 0, 0, 0.05);
|
33069
|
-
padding-left: 0.4rem;
|
33070
|
-
border-radius: var(--b-radius--x-small); }
|
33071
|
-
tags-input .tags-input__tags--boxed:hover, .tags-input .tags-input__tags--boxed:hover {
|
33072
|
-
background-color: rgba(0, 0, 0, 0.1); }
|
33073
|
-
tags-input.ng-invalid .tags-input__tags, .tags-input.ng-invalid .tags-input__tags {
|
33074
|
-
border-bottom: 1px solid #e41b21 !important;
|
33075
|
-
box-shadow: 0 1px 0 #e41b21 !important; }
|
33076
|
-
tags-input[disabled] .tags-input__host:focus, .tags-input[disabled] .tags-input__host:focus {
|
33077
|
-
outline: none; }
|
33078
|
-
tags-input[disabled] .tags-input__tags, .tags-input[disabled] .tags-input__tags {
|
33079
|
-
background-color: #eee;
|
33080
|
-
cursor: default; }
|
33081
|
-
tags-input[disabled] .tags-input__tags .tags-input__tag-item, .tags-input[disabled] .tags-input__tags .tags-input__tag-item {
|
33082
|
-
opacity: 0.65; }
|
33083
|
-
tags-input[disabled] .tags-input__tags .tags-input__tag-item .tags-input__remove-button, .tags-input[disabled] .tags-input__tags .tags-input__tag-item .tags-input__remove-button {
|
33084
|
-
cursor: default; }
|
33085
|
-
tags-input[disabled] .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active, .tags-input[disabled] .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active {
|
33086
|
-
color: #585858; }
|
33087
|
-
tags-input[disabled] .tags-input__tags .tags-input__input, .tags-input[disabled] .tags-input__tags .tags-input__input {
|
33088
|
-
background-color: #eee;
|
33089
|
-
cursor: default; }
|
33090
|
-
tags-input .tags-input__add-button, .tags-input .tags-input__add-button {
|
33091
|
-
float: left;
|
33092
|
-
height: 2.4rem;
|
33093
|
-
width: 2.4rem;
|
33094
|
-
background-color: var(--sd-colour-interactive);
|
33095
|
-
color: #fff;
|
33096
|
-
display: flex;
|
33097
|
-
align-items: center;
|
33098
|
-
text-align: center;
|
33099
|
-
margin: 0.2rem 0.4rem 0.2rem 0;
|
33100
|
-
transition: all 0.3s;
|
33101
|
-
border-radius: var(--b-radius--x-small);
|
33102
|
-
opacity: 0.5;
|
33103
|
-
padding: 0;
|
33104
|
-
justify-content: center; }
|
33105
|
-
tags-input .tags-input__add-button i, .tags-input .tags-input__add-button i {
|
33106
|
-
color: inherit; }
|
33107
|
-
tags-input .tags-input__add-button:hover, .tags-input .tags-input__add-button:hover {
|
33108
|
-
opacity: 1; }
|
33109
|
-
tags-input .tags-input__add-button[disabled], tags-input .tags-input__add-button [disabled]:hover, tags-input .tags-input__add-button [disabled]:active, .tags-input .tags-input__add-button[disabled], .tags-input .tags-input__add-button [disabled]:hover, .tags-input .tags-input__add-button [disabled]:active {
|
33110
|
-
opacity: 0.5;
|
33111
|
-
background-color: rgba(123, 123, 123, 0.4);
|
33112
|
-
cursor: default;
|
33113
|
-
cursor: not-allowed;
|
33114
|
-
color: rgba(255, 255, 255, 0.8); }
|
33115
|
-
tags-input .autocomplete, .tags-input .autocomplete {
|
33116
|
-
margin-top: 0.5rem;
|
33117
|
-
position: absolute;
|
33118
|
-
padding: 0.5rem 0;
|
33119
|
-
z-index: 999;
|
33120
|
-
width: 100%;
|
33121
|
-
background-color: var(--color-dropdown-menu-Bg);
|
33122
|
-
box-shadow: var(--sd-shadow__dropdown); }
|
33123
|
-
tags-input .autocomplete__header, .tags-input .autocomplete__header {
|
33124
|
-
display: flex;
|
33125
|
-
align-items: center;
|
33126
|
-
justify-content: center;
|
33127
|
-
gap: 10px;
|
33128
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
|
33129
|
-
padding: 4px; }
|
33130
|
-
tags-input .autocomplete__icon, .tags-input .autocomplete__icon {
|
33131
|
-
display: flex;
|
33132
|
-
align-items: center;
|
33133
|
-
justify-content: center;
|
33134
|
-
height: 35px;
|
33135
|
-
width: 35px; }
|
33136
|
-
tags-input .autocomplete__icon:hover .arrow-left, .tags-input .autocomplete__icon:hover .arrow-left {
|
33137
|
-
color: var(--sd-colour-interactive--alpha-70);
|
33138
|
-
transition: 0.2s;
|
33139
|
-
transform: translate(-3px); }
|
33140
|
-
tags-input .autocomplete__icon .arrow-left, .tags-input .autocomplete__icon .arrow-left {
|
33141
|
-
cursor: pointer; }
|
33142
|
-
tags-input .autocomplete__icon .search, .tags-input .autocomplete__icon .search {
|
33143
|
-
cursor: not-allowed; }
|
33144
|
-
tags-input .autocomplete__filter, .tags-input .autocomplete__filter {
|
33145
|
-
height: 32px;
|
33146
|
-
width: 100%; }
|
33147
|
-
tags-input .autocomplete__button, .tags-input .autocomplete__button {
|
33148
|
-
height: 32px;
|
33149
|
-
padding: 0 15px;
|
33150
|
-
font-weight: bold;
|
33151
|
-
width: 100%;
|
33152
|
-
cursor: default; }
|
33153
|
-
tags-input .autocomplete__input, .tags-input .autocomplete__input {
|
33154
|
-
height: 32px;
|
33155
|
-
width: 100%;
|
33156
|
-
padding: 4px;
|
33157
|
-
border: none; }
|
33158
|
-
tags-input .autocomplete__button--multiselect, .tags-input .autocomplete__button--multiselect {
|
33159
|
-
background-color: var(--sd-colour-interactive--alpha-10);
|
33160
|
-
border-radius: var(--b-radius--small);
|
33161
|
-
cursor: pointer; }
|
33162
|
-
tags-input .autocomplete__button--multiselect:hover, .tags-input .autocomplete__button--multiselect:hover {
|
33163
|
-
background-color: var(--sd-colour-interactive--alpha-20); }
|
33164
|
-
tags-input .autocomplete-multiselect, .tags-input .autocomplete-multiselect {
|
33165
|
-
padding: 0 !important; }
|
33166
|
-
tags-input .autocomplete-multiselect-width, .tags-input .autocomplete-multiselect-width {
|
33167
|
-
width: 275px !important; }
|
33168
|
-
tags-input .autocomplete .suggestion-list, .tags-input .autocomplete .suggestion-list {
|
33169
|
-
margin: 0;
|
33170
|
-
padding: 0;
|
33171
|
-
list-style-type: none;
|
33172
|
-
max-height: 28rem;
|
33173
|
-
overflow-y: auto;
|
33174
|
-
position: relative; }
|
33175
|
-
tags-input .autocomplete .suggestion-list--multi-select, .tags-input .autocomplete .suggestion-list--multi-select {
|
33176
|
-
padding: 4px 0 !important; }
|
33177
|
-
tags-input .autocomplete .suggestion-item, .tags-input .autocomplete .suggestion-item {
|
33178
|
-
padding: 0.5rem 1rem;
|
33179
|
-
cursor: pointer;
|
33180
|
-
white-space: nowrap;
|
33181
|
-
overflow: hidden;
|
33182
|
-
text-overflow: ellipsis;
|
33183
|
-
color: var(--color-text);
|
33184
|
-
background-color: #fff;
|
33185
|
-
transition: all ease-in-out 0.1s; }
|
33186
|
-
tags-input .autocomplete .suggestion-item.selected, .tags-input .autocomplete .suggestion-item.selected {
|
33187
|
-
background-color: var(--sd-colour-interactive--alpha-30); }
|
33188
|
-
tags-input .autocomplete .suggestion-item.selected:active, .tags-input .autocomplete .suggestion-item.selected:active {
|
33189
|
-
background-color: var(--sd-colour-interactive--alpha-70);
|
33190
|
-
color: #fff; }
|
33191
|
-
tags-input .autocomplete .suggestion-item[disabled], tags-input .autocomplete .suggestion-item[disabled]:hover, tags-input .autocomplete .suggestion-item[disabled]:active, .tags-input .autocomplete .suggestion-item[disabled], .tags-input .autocomplete .suggestion-item[disabled]:hover, .tags-input .autocomplete .suggestion-item[disabled]:active {
|
33192
|
-
background-color: transparent;
|
33193
|
-
opacity: 0.45;
|
33194
|
-
cursor: default;
|
33195
|
-
pointer-events: none; }
|
33196
|
-
tags-input .autocomplete .suggestion-item:hover, .tags-input .autocomplete .suggestion-item:hover {
|
33197
|
-
background-color: var(--sd-colour-interactive--alpha-10) !important; }
|
33198
|
-
tags-input .autocomplete .suggestion-item__icon, .tags-input .autocomplete .suggestion-item__icon {
|
33199
|
-
display: flex;
|
33200
|
-
align-items: center;
|
33201
|
-
justify-content: center; }
|
33202
|
-
tags-input .autocomplete .suggestion-item--multi-select, .tags-input .autocomplete .suggestion-item--multi-select {
|
33203
|
-
display: flex;
|
33204
|
-
justify-content: space-between;
|
33205
|
-
align-items: center; }
|
33206
|
-
tags-input .autocomplete .suggestion-item--disabled, .tags-input .autocomplete .suggestion-item--disabled {
|
33207
|
-
opacity: 0.5; }
|
33208
|
-
|
33209
|
-
.tags-input--multiselect {
|
33210
|
-
position: relative; }
|
33211
|
-
|
33212
|
-
.tags-input {
|
33213
|
-
display: block; }
|
32935
|
+
tags-input .tags-input__host,
|
33214
32936
|
.tags-input .tags-input__host {
|
33215
32937
|
position: relative;
|
33216
32938
|
margin-top: 0.5rem;
|
33217
32939
|
margin-bottom: 0;
|
33218
32940
|
height: 100%; }
|
32941
|
+
tags-input .tags-input__host:active,
|
33219
32942
|
.tags-input .tags-input__host:active {
|
33220
32943
|
outline: none; }
|
32944
|
+
tags-input .tags-input__tags,
|
33221
32945
|
.tags-input .tags-input__tags {
|
33222
|
-
|
32946
|
+
display: flex;
|
32947
|
+
align-items: flex-start;
|
32948
|
+
padding: 0.4rem 0.4rem 0.3rem 0.4rem;
|
33223
32949
|
overflow: hidden;
|
33224
32950
|
word-wrap: break-word;
|
33225
|
-
cursor: text;
|
33226
32951
|
background-color: transparent;
|
33227
32952
|
border: none;
|
33228
|
-
|
33229
|
-
|
33230
|
-
height: 100%;
|
33231
|
-
display: flex;
|
33232
|
-
align-items: center;
|
33233
|
-
min-height: 3.2rem; }
|
33234
|
-
.tags-input .tags-input__tags:hover {
|
33235
|
-
border-color: rgba(0, 0, 0, 0.3); }
|
33236
|
-
.tags-input .tags-input__tags.focused {
|
33237
|
-
outline: none;
|
33238
|
-
border-bottom: 1px solid var(--sd-colour-interactive);
|
33239
|
-
box-shadow: 0 1px 0 var(--sd-colour-interactive); }
|
33240
|
-
.tags-input .tags-input__tags.focused .tags-input__input {
|
33241
|
-
width: auto; }
|
32953
|
+
height: 100%; }
|
32954
|
+
tags-input .tags-input__tags .tags-input__tag-list,
|
33242
32955
|
.tags-input .tags-input__tags .tags-input__tag-list {
|
33243
32956
|
margin: 0;
|
33244
32957
|
padding: 0;
|
33245
32958
|
list-style-type: none;
|
33246
32959
|
display: flex;
|
32960
|
+
justify-content: flex-start;
|
32961
|
+
align-items: center;
|
33247
32962
|
flex-wrap: wrap;
|
32963
|
+
padding-inline-start: 0.4rem;
|
33248
32964
|
gap: 0.4rem; }
|
32965
|
+
tags-input .tags-input__tags .tags-input__tag-item,
|
33249
32966
|
.tags-input .tags-input__tags .tags-input__tag-item {
|
33250
32967
|
display: inline-flex;
|
33251
32968
|
align-items: center;
|
@@ -33263,12 +32980,16 @@ tags-input, .tags-input {
|
|
33263
32980
|
margin-right: 0.3rem;
|
33264
32981
|
height: 2.4rem;
|
33265
32982
|
color: var(--color-text);
|
33266
|
-
float: left;
|
33267
32983
|
transition: background-color .2s ease-out, color .1s ease-out, opacity .1s ease-out;
|
33268
32984
|
background: var(--sd-colour__tag-label-Bg--1);
|
33269
32985
|
color: currentColor; }
|
32986
|
+
tags-input .tags-input__tags .tags-input__tag-item.selected,
|
33270
32987
|
.tags-input .tags-input__tags .tags-input__tag-item.selected {
|
33271
32988
|
background-color: var(--sd-colour-interactive--alpha-70); }
|
32989
|
+
tags-input .tags-input__tags .tags-input__tag-item:hover,
|
32990
|
+
.tags-input .tags-input__tags .tags-input__tag-item:hover {
|
32991
|
+
cursor: pointer; }
|
32992
|
+
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button,
|
33272
32993
|
.tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button {
|
33273
32994
|
height: 1.8rem;
|
33274
32995
|
width: 1.8rem;
|
@@ -33286,80 +33007,111 @@ tags-input, .tags-input {
|
|
33286
33007
|
color: var(--color-text);
|
33287
33008
|
cursor: pointer;
|
33288
33009
|
transition: background-color .2s ease-out, color .1s ease-out, opacity .1s ease-out;
|
33289
|
-
margin-
|
33290
|
-
margin-
|
33291
|
-
|
33010
|
+
margin-right: -1rem;
|
33011
|
+
margin-left: 0.8rem; }
|
33012
|
+
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button [class^="icon-"], tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button [class*=" icon-"],
|
33013
|
+
.tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button [class^="icon-"],
|
33014
|
+
.tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button [class*=" icon-"] {
|
33292
33015
|
color: var(--color-text-light);
|
33293
33016
|
font-size: 1.6rem;
|
33294
33017
|
flex-grow: 0;
|
33295
33018
|
flex-shrink: 0;
|
33296
|
-
margin-
|
33019
|
+
margin-left: 1px;
|
33297
33020
|
opacity: 0.4;
|
33298
33021
|
transition: color .1s ease-out, opacity .1s ease-out; }
|
33022
|
+
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover,
|
33299
33023
|
.tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover {
|
33300
33024
|
text-decoration: none;
|
33301
33025
|
background-color: var(--sd-colour__tag-label-remove-Bg--hover); }
|
33302
|
-
|
33026
|
+
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover [class^="icon-"], tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover [class*=" icon-"],
|
33027
|
+
.tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover [class^="icon-"],
|
33028
|
+
.tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:hover [class*=" icon-"] {
|
33303
33029
|
opacity: 0.85; }
|
33030
|
+
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active,
|
33304
33031
|
.tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active {
|
33305
33032
|
background-color: var(--sd-colour__tag-label-remove-Bg--hover); }
|
33306
|
-
|
33033
|
+
tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active [class^="icon-"], tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active [class*=" icon-"],
|
33034
|
+
.tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active [class^="icon-"],
|
33035
|
+
.tags-input .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active [class*=" icon-"] {
|
33307
33036
|
color: var(--sd-colour-interactive);
|
33308
33037
|
opacity: 1; }
|
33038
|
+
tags-input .tags-input__tags .tags-input__tag-item ti-tag-item,
|
33309
33039
|
.tags-input .tags-input__tags .tags-input__tag-item ti-tag-item {
|
33310
33040
|
display: flex;
|
33311
33041
|
flex-direction: row;
|
33312
33042
|
align-items: center; }
|
33043
|
+
tags-input .tags-input__tags .tags-input__tag-item ti-tag-item .tags-input__helper-box,
|
33313
33044
|
.tags-input .tags-input__tags .tags-input__tag-item ti-tag-item .tags-input__helper-box {
|
33314
33045
|
display: flex;
|
33315
33046
|
flex-direction: row;
|
33316
33047
|
align-items: center; }
|
33048
|
+
tags-input .tags-input__tags .tags-input__tag-item ti-tag-item .tags-input__helper-box span,
|
33317
33049
|
.tags-input .tags-input__tags .tags-input__tag-item ti-tag-item .tags-input__helper-box span {
|
33318
33050
|
flex-grow: 1; }
|
33051
|
+
tags-input .tags-input__tags .tags-input__tag-item--multi-select,
|
33052
|
+
.tags-input .tags-input__tags .tags-input__tag-item--multi-select {
|
33053
|
+
margin: 0 !important; }
|
33054
|
+
tags-input .tags-input__tags .tags-input__tag-item--readonly,
|
33055
|
+
.tags-input .tags-input__tags .tags-input__tag-item--readonly {
|
33056
|
+
cursor: default !important; }
|
33057
|
+
tags-input .tags-input__tags .tags-input__input,
|
33319
33058
|
.tags-input .tags-input__tags .tags-input__input {
|
33320
33059
|
border: 0;
|
33321
33060
|
outline: none;
|
33322
33061
|
margin: 0.2rem;
|
33323
33062
|
padding: 0;
|
33063
|
+
float: left;
|
33324
33064
|
height: 26px;
|
33325
33065
|
color: currentColor;
|
33326
|
-
background-color: transparent;
|
33066
|
+
background-color: transparent;
|
33067
|
+
width: 20px; }
|
33068
|
+
tags-input .tags-input__tags .tags-input__input.invalid-tag,
|
33327
33069
|
.tags-input .tags-input__tags .tags-input__input.invalid-tag {
|
33328
33070
|
color: #e41b21; }
|
33071
|
+
tags-input .tags-input__tags .tags-input__input::-ms-clear,
|
33329
33072
|
.tags-input .tags-input__tags .tags-input__input::-ms-clear {
|
33330
33073
|
display: none; }
|
33074
|
+
tags-input .tags-input__tags .tags-input__input:focus,
|
33331
33075
|
.tags-input .tags-input__tags .tags-input__input:focus {
|
33332
33076
|
box-shadow: unset !important; }
|
33077
|
+
tags-input .tags-input__tags .tags-input__input::placeholder,
|
33333
33078
|
.tags-input .tags-input__tags .tags-input__input::placeholder {
|
33334
33079
|
opacity: 0.8;
|
33335
33080
|
font-weight: 300;
|
33336
33081
|
font-style: italic; }
|
33082
|
+
tags-input .tags-input__tags--boxed,
|
33337
33083
|
.tags-input .tags-input__tags--boxed {
|
33338
33084
|
background-color: rgba(0, 0, 0, 0.05);
|
33339
|
-
padding-
|
33085
|
+
padding-left: 0.4rem;
|
33340
33086
|
border-radius: var(--b-radius--x-small); }
|
33087
|
+
tags-input .tags-input__tags--boxed:hover,
|
33341
33088
|
.tags-input .tags-input__tags--boxed:hover {
|
33342
33089
|
background-color: rgba(0, 0, 0, 0.1); }
|
33090
|
+
tags-input.ng-invalid .tags-input__tags,
|
33343
33091
|
.tags-input.ng-invalid .tags-input__tags {
|
33344
33092
|
border-bottom: 1px solid #e41b21 !important;
|
33345
33093
|
box-shadow: 0 1px 0 #e41b21 !important; }
|
33094
|
+
tags-input[disabled] .tags-input__host:focus,
|
33346
33095
|
.tags-input[disabled] .tags-input__host:focus {
|
33347
33096
|
outline: none; }
|
33097
|
+
tags-input[disabled] .tags-input__tags,
|
33348
33098
|
.tags-input[disabled] .tags-input__tags {
|
33349
33099
|
background-color: #eee;
|
33350
33100
|
cursor: default; }
|
33101
|
+
tags-input[disabled] .tags-input__tags .tags-input__tag-item,
|
33351
33102
|
.tags-input[disabled] .tags-input__tags .tags-input__tag-item {
|
33352
33103
|
opacity: 0.65; }
|
33104
|
+
tags-input[disabled] .tags-input__tags .tags-input__tag-item .tags-input__remove-button,
|
33353
33105
|
.tags-input[disabled] .tags-input__tags .tags-input__tag-item .tags-input__remove-button {
|
33354
33106
|
cursor: default; }
|
33107
|
+
tags-input[disabled] .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active,
|
33355
33108
|
.tags-input[disabled] .tags-input__tags .tags-input__tag-item .tags-input__remove-button:active {
|
33356
33109
|
color: #585858; }
|
33110
|
+
tags-input[disabled] .tags-input__tags .tags-input__input,
|
33357
33111
|
.tags-input[disabled] .tags-input__tags .tags-input__input {
|
33358
33112
|
background-color: #eee;
|
33359
33113
|
cursor: default; }
|
33360
|
-
|
33361
|
-
border-bottom: 1px solid #E51C23 !important;
|
33362
|
-
box-shadow: 0 1px 0 #E51C23 !important; }
|
33114
|
+
tags-input .tags-input__add-button,
|
33363
33115
|
.tags-input .tags-input__add-button {
|
33364
33116
|
height: 2.4rem;
|
33365
33117
|
width: 2.4rem;
|
@@ -33368,37 +33120,49 @@ tags-input, .tags-input {
|
|
33368
33120
|
display: flex;
|
33369
33121
|
align-items: center;
|
33370
33122
|
text-align: center;
|
33371
|
-
margin-block-start: 0.2rem;
|
33372
|
-
margin-block-end: 0.2rem;
|
33373
|
-
margin-inline-start: 0;
|
33374
|
-
margin-inline-end: 0.4rem;
|
33375
33123
|
transition: all 0.3s;
|
33376
33124
|
border-radius: var(--b-radius--x-small);
|
33377
33125
|
opacity: 0.5;
|
33378
33126
|
padding: 0;
|
33379
33127
|
justify-content: center;
|
33380
33128
|
flex-shrink: 0; }
|
33129
|
+
tags-input .tags-input__add-button i,
|
33381
33130
|
.tags-input .tags-input__add-button i {
|
33382
33131
|
color: inherit; }
|
33132
|
+
tags-input .tags-input__add-button:hover,
|
33383
33133
|
.tags-input .tags-input__add-button:hover {
|
33384
33134
|
opacity: 1; }
|
33385
|
-
|
33135
|
+
tags-input .tags-input__add-button[disabled], tags-input .tags-input__add-button [disabled]:hover, tags-input .tags-input__add-button [disabled]:active,
|
33136
|
+
.tags-input .tags-input__add-button[disabled],
|
33137
|
+
.tags-input .tags-input__add-button [disabled]:hover,
|
33138
|
+
.tags-input .tags-input__add-button [disabled]:active {
|
33386
33139
|
opacity: 0.5;
|
33387
33140
|
background-color: rgba(123, 123, 123, 0.4);
|
33388
33141
|
cursor: default;
|
33389
33142
|
cursor: not-allowed;
|
33390
33143
|
color: rgba(255, 255, 255, 0.8); }
|
33144
|
+
tags-input .tags-input__remove-value,
|
33145
|
+
.tags-input .tags-input__remove-value {
|
33146
|
+
display: flex;
|
33147
|
+
align-items: center;
|
33148
|
+
align-self: flex-end;
|
33149
|
+
margin-inline-start: auto;
|
33150
|
+
z-index: 2;
|
33151
|
+
cursor: pointer;
|
33152
|
+
opacity: 0.5;
|
33153
|
+
transition: opacity 0.3s ease; }
|
33154
|
+
tags-input .tags-input__remove-value:hover,
|
33155
|
+
.tags-input .tags-input__remove-value:hover {
|
33156
|
+
opacity: 1; }
|
33157
|
+
tags-input .autocomplete,
|
33391
33158
|
.tags-input .autocomplete {
|
33392
|
-
margin-block-start: 0.5rem;
|
33393
33159
|
position: absolute;
|
33394
|
-
padding: 0;
|
33395
|
-
padding-block-start: 0.5rem;
|
33396
|
-
padding-block-end: 0.5rem;
|
33160
|
+
padding: 0.5rem 0;
|
33397
33161
|
z-index: 999;
|
33398
33162
|
width: 100%;
|
33399
|
-
border-radius: var(--b-radius--small);
|
33400
33163
|
background-color: var(--color-dropdown-menu-Bg);
|
33401
33164
|
box-shadow: var(--sd-shadow__dropdown); }
|
33165
|
+
tags-input .autocomplete .suggestion-list,
|
33402
33166
|
.tags-input .autocomplete .suggestion-list {
|
33403
33167
|
margin: 0;
|
33404
33168
|
padding: 0;
|
@@ -33406,6 +33170,15 @@ tags-input, .tags-input {
|
|
33406
33170
|
max-height: 28rem;
|
33407
33171
|
overflow-y: auto;
|
33408
33172
|
position: relative; }
|
33173
|
+
tags-input .autocomplete .suggestion-list--multi-select,
|
33174
|
+
.tags-input .autocomplete .suggestion-list--multi-select {
|
33175
|
+
padding: 4px 0 !important; }
|
33176
|
+
tags-input .autocomplete .suggestion-list--loader,
|
33177
|
+
.tags-input .autocomplete .suggestion-list--loader {
|
33178
|
+
padding: 4px 0 !important;
|
33179
|
+
position: relative;
|
33180
|
+
min-height: 56px; }
|
33181
|
+
tags-input .autocomplete .suggestion-item,
|
33409
33182
|
.tags-input .autocomplete .suggestion-item {
|
33410
33183
|
padding: 0.5rem 1rem;
|
33411
33184
|
cursor: pointer;
|
@@ -33413,19 +33186,222 @@ tags-input, .tags-input {
|
|
33413
33186
|
overflow: hidden;
|
33414
33187
|
text-overflow: ellipsis;
|
33415
33188
|
color: var(--color-text);
|
33416
|
-
transition: all ease
|
33417
|
-
|
33418
|
-
|
33189
|
+
transition: all ease 0.2s;
|
33190
|
+
min-height: 3.2rem; }
|
33191
|
+
tags-input .autocomplete .suggestion-item.selected,
|
33419
33192
|
.tags-input .autocomplete .suggestion-item.selected {
|
33420
|
-
background-color: var(--sd-colour-interactive--alpha-
|
33193
|
+
background-color: var(--sd-colour-interactive--alpha-30); }
|
33194
|
+
tags-input .autocomplete .suggestion-item.selected:active,
|
33421
33195
|
.tags-input .autocomplete .suggestion-item.selected:active {
|
33422
33196
|
background-color: var(--sd-colour-interactive--alpha-70);
|
33423
33197
|
color: #fff; }
|
33424
|
-
|
33198
|
+
tags-input .autocomplete .suggestion-item[disabled], tags-input .autocomplete .suggestion-item[disabled]:hover, tags-input .autocomplete .suggestion-item[disabled]:active,
|
33199
|
+
.tags-input .autocomplete .suggestion-item[disabled],
|
33200
|
+
.tags-input .autocomplete .suggestion-item[disabled]:hover,
|
33201
|
+
.tags-input .autocomplete .suggestion-item[disabled]:active {
|
33425
33202
|
background-color: transparent;
|
33426
33203
|
opacity: 0.45;
|
33427
33204
|
cursor: default;
|
33428
33205
|
pointer-events: none; }
|
33206
|
+
tags-input .autocomplete .suggestion-item:hover,
|
33207
|
+
.tags-input .autocomplete .suggestion-item:hover {
|
33208
|
+
background-color: var(--sd-colour-interactive--alpha-10) !important; }
|
33209
|
+
tags-input .autocomplete .suggestion-item .suggestion-item__icon,
|
33210
|
+
.tags-input .autocomplete .suggestion-item .suggestion-item__icon {
|
33211
|
+
display: flex;
|
33212
|
+
align-items: center;
|
33213
|
+
justify-content: center;
|
33214
|
+
opacity: 0.5; }
|
33215
|
+
tags-input .autocomplete .suggestion-item--multi-select,
|
33216
|
+
.tags-input .autocomplete .suggestion-item--multi-select {
|
33217
|
+
display: flex;
|
33218
|
+
justify-content: space-between;
|
33219
|
+
align-items: center; }
|
33220
|
+
tags-input .autocomplete .suggestion-item--disabled,
|
33221
|
+
.tags-input .autocomplete .suggestion-item--disabled {
|
33222
|
+
opacity: 0.5; }
|
33223
|
+
|
33224
|
+
.tags-input {
|
33225
|
+
padding-inline: 0 !important;
|
33226
|
+
height: auto !important;
|
33227
|
+
min-height: 3.2rem; }
|
33228
|
+
.tags-input .tags-input__tags .tags-input__input {
|
33229
|
+
border: 0;
|
33230
|
+
outline: none;
|
33231
|
+
margin: 0.2rem;
|
33232
|
+
padding: 0;
|
33233
|
+
height: 26px;
|
33234
|
+
color: currentColor;
|
33235
|
+
background-color: transparent; }
|
33236
|
+
.tags-input .tags-input__tags .tags-input__input.invalid-tag {
|
33237
|
+
color: #e41b21; }
|
33238
|
+
.tags-input .tags-input__tags .tags-input__input::-ms-clear {
|
33239
|
+
display: none; }
|
33240
|
+
.tags-input .tags-input__tags .tags-input__input:focus {
|
33241
|
+
box-shadow: unset !important; }
|
33242
|
+
.tags-input .tags-input__tags .tags-input__input::placeholder {
|
33243
|
+
opacity: 0.8;
|
33244
|
+
font-weight: 300;
|
33245
|
+
font-style: italic; }
|
33246
|
+
.tags-input .tags-input__tags--boxed {
|
33247
|
+
background-color: rgba(0, 0, 0, 0.05);
|
33248
|
+
padding-inline-start: 0.4rem;
|
33249
|
+
border-radius: var(--b-radius--x-small); }
|
33250
|
+
.tags-input .tags-input__tags--boxed:hover {
|
33251
|
+
background-color: rgba(0, 0, 0, 0.1); }
|
33252
|
+
.tags-input .tags-input__helper-box {
|
33253
|
+
display: flex;
|
33254
|
+
align-items: center; }
|
33255
|
+
.tags-input .autocomplete {
|
33256
|
+
position: absolute;
|
33257
|
+
padding: 0;
|
33258
|
+
padding-block-start: 0.5rem;
|
33259
|
+
padding-block-end: 0.5rem;
|
33260
|
+
z-index: 999;
|
33261
|
+
width: 100%;
|
33262
|
+
border-radius: var(--b-radius--small);
|
33263
|
+
background-color: var(--color-dropdown-menu-Bg);
|
33264
|
+
box-shadow: var(--sd-shadow__dropdown); }
|
33265
|
+
.tags-input .autocomplete .autocomplete__header {
|
33266
|
+
display: flex;
|
33267
|
+
align-items: center;
|
33268
|
+
justify-content: center;
|
33269
|
+
gap: 4px;
|
33270
|
+
border-bottom: 1px solid var(--sd-colour-line--light);
|
33271
|
+
padding: 4px; }
|
33272
|
+
.tags-input .autocomplete .autocomplete__category-header {
|
33273
|
+
display: flex;
|
33274
|
+
align-items: center;
|
33275
|
+
justify-content: center;
|
33276
|
+
gap: 4px;
|
33277
|
+
border-bottom: 1px solid var(--sd-colour-line--x-light);
|
33278
|
+
padding: 4px; }
|
33279
|
+
.tags-input .autocomplete .autocomplete__icon {
|
33280
|
+
display: flex;
|
33281
|
+
align-items: center;
|
33282
|
+
justify-content: center;
|
33283
|
+
height: 35px;
|
33284
|
+
width: 35px; }
|
33285
|
+
.tags-input .autocomplete .autocomplete__icon:hover .arrow-left {
|
33286
|
+
color: var(--sd-colour-interactive--alpha-70);
|
33287
|
+
transition: 0.2s;
|
33288
|
+
transform: translate(-3px); }
|
33289
|
+
.tags-input .autocomplete .autocomplete__icon .arrow-left {
|
33290
|
+
cursor: pointer; }
|
33291
|
+
.tags-input .autocomplete .autocomplete__icon .search {
|
33292
|
+
cursor: default;
|
33293
|
+
opacity: 0.65; }
|
33294
|
+
.tags-input .autocomplete .autocomplete__filter {
|
33295
|
+
height: 32px;
|
33296
|
+
width: 100%;
|
33297
|
+
display: flex;
|
33298
|
+
align-items: center;
|
33299
|
+
gap: 4px; }
|
33300
|
+
.tags-input .autocomplete .autocomplete__button {
|
33301
|
+
height: 32px;
|
33302
|
+
padding: 0 15px;
|
33303
|
+
font-weight: 600;
|
33304
|
+
width: auto;
|
33305
|
+
cursor: default;
|
33306
|
+
margin-inline-start: auto; }
|
33307
|
+
.tags-input .autocomplete .autocomplete__category-title {
|
33308
|
+
font-weight: 600;
|
33309
|
+
padding: 0;
|
33310
|
+
cursor: default; }
|
33311
|
+
.tags-input .autocomplete .autocomplete__input {
|
33312
|
+
height: 32px;
|
33313
|
+
width: 100%;
|
33314
|
+
padding: 4px;
|
33315
|
+
border: none;
|
33316
|
+
background-color: transparent;
|
33317
|
+
color: var(--color-text); }
|
33318
|
+
.tags-input .autocomplete .autocomplete__input::placeholder {
|
33319
|
+
color: var(--color-text-lighter);
|
33320
|
+
font-weight: 300; }
|
33321
|
+
.tags-input .autocomplete .autocomplete__button--multi-select {
|
33322
|
+
background-color: transparent;
|
33323
|
+
border: 1px solid var(--sd-colour-interactive--alpha-50);
|
33324
|
+
border-radius: var(--b-radius--small);
|
33325
|
+
color: var(--sd-colour-interactive);
|
33326
|
+
cursor: pointer;
|
33327
|
+
transition: all ease 0.2s;
|
33328
|
+
font-size: 1.3rem;
|
33329
|
+
font-weight: 400;
|
33330
|
+
margin-inline-end: 0.8rem;
|
33331
|
+
height: 2.8rem; }
|
33332
|
+
.tags-input .autocomplete .autocomplete__button--multi-select:hover {
|
33333
|
+
border: 1px solid var(--sd-colour-interactive);
|
33334
|
+
box-shadow: inset 0 0 0 2px var(--sd-colour-interactive--alpha-20); }
|
33335
|
+
.tags-input .autocomplete .autocomplete__button--multi-select:active {
|
33336
|
+
border: 1px solid var(--sd-colour-interactive);
|
33337
|
+
box-shadow: inset 0 0 0 3px var(--sd-colour-interactive--alpha-30); }
|
33338
|
+
.tags-input .autocomplete .autocomplete__button--multi-select.autocomplete__button--disabled, .tags-input .autocomplete .autocomplete__button--multi-select.autocomplete__button--disabled:hover {
|
33339
|
+
opacity: 0.75;
|
33340
|
+
border: 1px solid var(--sd-colour-line--light);
|
33341
|
+
color: var(--color-text-light);
|
33342
|
+
cursor: not-allowed;
|
33343
|
+
box-shadow: none; }
|
33344
|
+
.tags-input .autocomplete--multi-select {
|
33345
|
+
padding: 0 !important;
|
33346
|
+
margin-block-start: 0; }
|
33347
|
+
.tags-input .autocomplete--fixed-width {
|
33348
|
+
width: 275px !important; }
|
33349
|
+
|
33350
|
+
.tags-input--multi-select,
|
33351
|
+
.tags-input--single-select {
|
33352
|
+
position: relative; }
|
33353
|
+
|
33354
|
+
.tags-input--single-select .tags-input__tags {
|
33355
|
+
align-items: center; }
|
33356
|
+
|
33357
|
+
.tags-input--single-select::after {
|
33358
|
+
position: absolute;
|
33359
|
+
z-index: 1;
|
33360
|
+
display: inline-block;
|
33361
|
+
margin-inline-end: 1rem;
|
33362
|
+
vertical-align: middle;
|
33363
|
+
border-left: 0.4rem solid transparent;
|
33364
|
+
border-right: 0.4rem solid transparent;
|
33365
|
+
border-top: 0.4rem solid var(--color-text);
|
33366
|
+
pointer-events: none;
|
33367
|
+
opacity: 0.4;
|
33368
|
+
content: "";
|
33369
|
+
z-index: 0;
|
33370
|
+
inset-inline-end: 0;
|
33371
|
+
inset-block-start: 1.5rem; }
|
33372
|
+
|
33373
|
+
.tags-input--single-select:hover::after {
|
33374
|
+
opacity: 0.6; }
|
33375
|
+
|
33376
|
+
.tags-input__overlay-button {
|
33377
|
+
position: absolute;
|
33378
|
+
inset: 0; }
|
33379
|
+
|
33380
|
+
.tags-input__single-item {
|
33381
|
+
display: flex;
|
33382
|
+
align-items: center;
|
33383
|
+
width: 100%;
|
33384
|
+
justify-content: stretch;
|
33385
|
+
padding-inline-start: 0.8rem;
|
33386
|
+
padding-inline-end: 2.4rem; }
|
33387
|
+
.tags-input__single-item .tags-input__helper-box {
|
33388
|
+
display: flex;
|
33389
|
+
width: 100%;
|
33390
|
+
align-items: center; }
|
33391
|
+
.tags-input__single-item .tags-input__remove-button {
|
33392
|
+
display: flex;
|
33393
|
+
align-items: center;
|
33394
|
+
align-self: flex-end;
|
33395
|
+
margin-inline-start: auto;
|
33396
|
+
z-index: 2;
|
33397
|
+
cursor: pointer;
|
33398
|
+
opacity: 0.5;
|
33399
|
+
transition: opacity 0.3s ease; }
|
33400
|
+
.tags-input__single-item .tags-input__remove-button:hover {
|
33401
|
+
opacity: 1; }
|
33402
|
+
.tags-input__single-item .tags-input__placeholder {
|
33403
|
+
color: var(--color-text-lighter);
|
33404
|
+
font-weight: 300; }
|
33429
33405
|
|
33430
33406
|
.boxed-list {
|
33431
33407
|
display: flex;
|
@@ -38977,6 +38953,13 @@ a.text-link {
|
|
38977
38953
|
cursor: grabbing;
|
38978
38954
|
cursor: -moz-grabbing;
|
38979
38955
|
cursor: -webkit-grabbing; }
|
38956
|
+
.sd-list-item.actioning:hover {
|
38957
|
+
cursor: progress; }
|
38958
|
+
.sd-list-item.actioning:hover .sd-list-item__action-menu {
|
38959
|
+
padding: 0;
|
38960
|
+
width: 0;
|
38961
|
+
overflow: hidden;
|
38962
|
+
opacity: 0; }
|
38980
38963
|
.sd-list-item.actioning::before {
|
38981
38964
|
content: '';
|
38982
38965
|
position: absolute;
|
@@ -38989,7 +38972,8 @@ a.text-link {
|
|
38989
38972
|
background-repeat: no-repeat;
|
38990
38973
|
background-position: center center;
|
38991
38974
|
background-size: 45px;
|
38992
|
-
background-color:
|
38975
|
+
background-color: var(--sd-colour-overlay-actioning);
|
38976
|
+
border-radius: var(--b-radius--small); }
|
38993
38977
|
.sd-list-item.locked .sd-list-item__border {
|
38994
38978
|
background: #e41b21; }
|
38995
38979
|
.sd-list-item.archived:after {
|
@@ -40574,7 +40558,7 @@ a.text-link {
|
|
40574
40558
|
background-repeat: no-repeat;
|
40575
40559
|
background-position: center center;
|
40576
40560
|
background-size: 60px;
|
40577
|
-
background-color:
|
40561
|
+
background-color: var(--sd-colour-overlay-actioning); }
|
40578
40562
|
|
40579
40563
|
.sd-photo-preview__video {
|
40580
40564
|
display: grid;
|
@@ -45514,12 +45498,6 @@ a.text-link {
|
|
45514
45498
|
width: 100%;
|
45515
45499
|
margin-bottom: 1rem;
|
45516
45500
|
margin-right: 0; }
|
45517
|
-
.form__row label + div,
|
45518
|
-
.form__row-item label + div {
|
45519
|
-
margin-top: .4rem; }
|
45520
|
-
.form__row label + div .label,
|
45521
|
-
.form__row-item label + div .label {
|
45522
|
-
margin-bottom: .3rem; }
|
45523
45501
|
|
45524
45502
|
.label--active {
|
45525
45503
|
color: var(--sd-colour-interactive--darken-10); }
|
@@ -45648,6 +45626,20 @@ a.text-link {
|
|
45648
45626
|
background-color: var(--color-form-bg);
|
45649
45627
|
color: var(--color-text); }
|
45650
45628
|
|
45629
|
+
.form__group-new {
|
45630
|
+
display: flex;
|
45631
|
+
flex-direction: row;
|
45632
|
+
width: 100%;
|
45633
|
+
align-items: flex-start;
|
45634
|
+
gap: 1.6rem; }
|
45635
|
+
.form__group-new .sd-input {
|
45636
|
+
flex: 1 1 0;
|
45637
|
+
min-width: 12rem;
|
45638
|
+
margin: 0; }
|
45639
|
+
.form__group-new .btn {
|
45640
|
+
flex: 0 0 auto;
|
45641
|
+
margin-top: 1.6rem; }
|
45642
|
+
|
45651
45643
|
.form-label {
|
45652
45644
|
display: inline-block;
|
45653
45645
|
font-size: 1.1rem;
|
@@ -46028,7 +46020,8 @@ a.text-link {
|
|
46028
46020
|
grid-template-columns: auto 1fr auto;
|
46029
46021
|
grid-template-rows: 1.6rem auto auto;
|
46030
46022
|
grid-gap: 0;
|
46031
|
-
position: relative;
|
46023
|
+
position: relative;
|
46024
|
+
align-self: stretch; }
|
46032
46025
|
.sd-input .sd-input__input {
|
46033
46026
|
-webkit-appearance: none;
|
46034
46027
|
-moz-appearance: none;
|
@@ -46059,6 +46052,9 @@ a.text-link {
|
|
46059
46052
|
background-color: var(--sd-colour-interactive--alpha-20); }
|
46060
46053
|
.sd-input .sd-input__input:focus::placeholder {
|
46061
46054
|
opacity: 0.45; }
|
46055
|
+
.sd-input .sd-input__input-container {
|
46056
|
+
grid-row: 2/3;
|
46057
|
+
grid-column: 2/4; }
|
46062
46058
|
.sd-input textarea.sd-input__input {
|
46063
46059
|
height: auto;
|
46064
46060
|
min-height: 3.2rem; }
|
@@ -46267,6 +46263,14 @@ a.text-link {
|
|
46267
46263
|
.sd-input--disabled select.sd-input__select:hover::after {
|
46268
46264
|
opacity: 0.3;
|
46269
46265
|
filter: "alpha(opacity=30)"; }
|
46266
|
+
.sd-input--disabled div.sd-input__duration-input, .sd-input--disabled div.sd-input__duration-input:hover, .sd-input--disabled div.sd-input__duration-input:focus {
|
46267
|
+
opacity: 0.5;
|
46268
|
+
cursor: not-allowed !important;
|
46269
|
+
box-shadow: none; }
|
46270
|
+
.sd-input--disabled div input.duration-input, .sd-input--disabled div input.duration-input:hover, .sd-input--disabled div input.duration-input:focus {
|
46271
|
+
opacity: 0.5;
|
46272
|
+
cursor: not-allowed !important;
|
46273
|
+
box-shadow: none; }
|
46270
46274
|
.sd-input--disabled .sd-input__label, .sd-input--disabled .sd-input__message-box, .sd-input--disabled .sd-input__char-count {
|
46271
46275
|
opacity: 0.5 !important;
|
46272
46276
|
pointer-events: none !important; }
|
@@ -46279,6 +46283,38 @@ a.text-link {
|
|
46279
46283
|
.sd-input--full-width {
|
46280
46284
|
flex-grow: 1;
|
46281
46285
|
width: 100%; }
|
46286
|
+
.sd-input--medium.sd-input--boxed-style .sd-input__input,
|
46287
|
+
.sd-input--medium.sd-input--boxed-style .sd-input__select {
|
46288
|
+
border-radius: var(--b-radius--medium); }
|
46289
|
+
.sd-input--medium.sd-input--boxed-style .sd-input__input:focus,
|
46290
|
+
.sd-input--medium.sd-input--boxed-style .sd-input__select:focus {
|
46291
|
+
box-shadow: inset 0 0 0 3px var(--sd-colour-interactive--alpha-20); }
|
46292
|
+
.sd-input--large .sd-input__input,
|
46293
|
+
.sd-input--large .sd-input__select {
|
46294
|
+
padding: 0 1.6rem;
|
46295
|
+
min-height: 4.8rem;
|
46296
|
+
font-size: 2.4rem;
|
46297
|
+
font-weight: 500; }
|
46298
|
+
.sd-input--large .sd-input__select {
|
46299
|
+
line-height: 2.4rem; }
|
46300
|
+
.sd-input--large .sd-input__select option {
|
46301
|
+
color: var(--color-text);
|
46302
|
+
font-size: 1.4rem !important;
|
46303
|
+
line-height: 2rem;
|
46304
|
+
background-color: var(--color-dropdown-menu-Bg); }
|
46305
|
+
.sd-input--x-large .sd-input__input,
|
46306
|
+
.sd-input--x-large .sd-input__select {
|
46307
|
+
padding: 0 1.6rem;
|
46308
|
+
min-height: 5.6rem;
|
46309
|
+
font-size: 3.2rem;
|
46310
|
+
font-weight: 500; }
|
46311
|
+
.sd-input--x-large .sd-input__select {
|
46312
|
+
line-height: 3.2rem; }
|
46313
|
+
.sd-input--x-large .sd-input__select option {
|
46314
|
+
color: var(--color-text);
|
46315
|
+
font-size: 1.4rem !important;
|
46316
|
+
line-height: 2rem;
|
46317
|
+
background-color: var(--color-dropdown-menu-Bg); }
|
46282
46318
|
.sd-input--boxed-style .sd-input__input,
|
46283
46319
|
.sd-input--boxed-style .sd-input__select {
|
46284
46320
|
border: 0;
|
@@ -46297,7 +46333,10 @@ a.text-link {
|
|
46297
46333
|
border-color: var(--sd-colour-interactive--alpha-50);
|
46298
46334
|
box-shadow: inset 0 0 0 4px var(--sd-colour-interactive--alpha-20);
|
46299
46335
|
background-color: transparent; }
|
46300
|
-
.sd-input--boxed-style.sd-input--disabled input.sd-input__input, .sd-input--boxed-style.sd-input--disabled input.sd-input__input:hover, .sd-input--boxed-style.sd-input--disabled input.sd-input__input:focus,
|
46336
|
+
.sd-input--boxed-style.sd-input--disabled input.sd-input__input, .sd-input--boxed-style.sd-input--disabled input.sd-input__input:hover, .sd-input--boxed-style.sd-input--disabled input.sd-input__input:focus,
|
46337
|
+
.sd-input--boxed-style.sd-input--disabled textarea.sd-input__input,
|
46338
|
+
.sd-input--boxed-style.sd-input--disabled textarea.sd-input__input:hover,
|
46339
|
+
.sd-input--boxed-style.sd-input--disabled textarea.sd-input__input:focus {
|
46301
46340
|
opacity: 0.5;
|
46302
46341
|
background-color: transparent;
|
46303
46342
|
border: 2px solid var(--color-input-border) !important;
|
@@ -46307,7 +46346,17 @@ a.text-link {
|
|
46307
46346
|
background-color: transparent;
|
46308
46347
|
border: 2px solid var(--color-input-border) !important;
|
46309
46348
|
box-shadow: none; }
|
46310
|
-
.sd-input--boxed-style.sd-input--disabled .
|
46349
|
+
.sd-input--boxed-style.sd-input--disabled .tags-input__add-button {
|
46350
|
+
pointer-events: none; }
|
46351
|
+
.sd-input--boxed-style.sd-input--disabled .sd-input__label .sd-input__label,
|
46352
|
+
.sd-input--boxed-style.sd-input--disabled .sd-input__label .sd-input__message-box,
|
46353
|
+
.sd-input--boxed-style.sd-input--disabled .sd-input__label .sd-input__char-count,
|
46354
|
+
.sd-input--boxed-style.sd-input--disabled .sd-input__message-box .sd-input__label,
|
46355
|
+
.sd-input--boxed-style.sd-input--disabled .sd-input__message-box .sd-input__message-box,
|
46356
|
+
.sd-input--boxed-style.sd-input--disabled .sd-input__message-box .sd-input__char-count,
|
46357
|
+
.sd-input--boxed-style.sd-input--disabled .sd-input__char-count .sd-input__label,
|
46358
|
+
.sd-input--boxed-style.sd-input--disabled .sd-input__char-count .sd-input__message-box,
|
46359
|
+
.sd-input--boxed-style.sd-input--disabled .sd-input__char-count .sd-input__char-count {
|
46311
46360
|
opacity: 0.5; }
|
46312
46361
|
.sd-input--boxed-style.sd-input--disabled .sd-input__hint,
|
46313
46362
|
.sd-input--boxed-style.sd-input--disabled .sd-input__message,
|
@@ -46321,38 +46370,6 @@ a.text-link {
|
|
46321
46370
|
box-shadow: none; }
|
46322
46371
|
.sd-input--boxed-style.sd-input--invalid .sd-input__label, .sd-input--boxed-style.sd-input--invalid .sd-input__message {
|
46323
46372
|
color: #e41b21; }
|
46324
|
-
.sd-input--medium.sd-input--boxed-style .sd-input__input,
|
46325
|
-
.sd-input--medium.sd-input--boxed-style .sd-input__select {
|
46326
|
-
border-radius: var(--b-radius--medium); }
|
46327
|
-
.sd-input--medium.sd-input--boxed-style .sd-input__input:focus,
|
46328
|
-
.sd-input--medium.sd-input--boxed-style .sd-input__select:focus {
|
46329
|
-
box-shadow: inset 0 0 0 3px var(--sd-colour-interactive--alpha-20); }
|
46330
|
-
.sd-input--large .sd-input__input,
|
46331
|
-
.sd-input--large .sd-input__select {
|
46332
|
-
padding: 0 1.6rem;
|
46333
|
-
min-height: 4.8rem;
|
46334
|
-
font-size: 2.4rem;
|
46335
|
-
font-weight: 500; }
|
46336
|
-
.sd-input--large .sd-input__select {
|
46337
|
-
line-height: 2.4rem; }
|
46338
|
-
.sd-input--large .sd-input__select option {
|
46339
|
-
color: var(--color-text);
|
46340
|
-
font-size: 1.4rem !important;
|
46341
|
-
line-height: 2rem;
|
46342
|
-
background-color: var(--color-dropdown-menu-Bg); }
|
46343
|
-
.sd-input--x-large .sd-input__input,
|
46344
|
-
.sd-input--x-large .sd-input__select {
|
46345
|
-
padding: 0 1.6rem;
|
46346
|
-
min-height: 5.6rem;
|
46347
|
-
font-size: 3.2rem;
|
46348
|
-
font-weight: 500; }
|
46349
|
-
.sd-input--x-large .sd-input__select {
|
46350
|
-
line-height: 3.2rem; }
|
46351
|
-
.sd-input--x-large .sd-input__select option {
|
46352
|
-
color: var(--color-text);
|
46353
|
-
font-size: 1.4rem !important;
|
46354
|
-
line-height: 2rem;
|
46355
|
-
background-color: var(--color-dropdown-menu-Bg); }
|
46356
46373
|
.sd-input--boxed-label {
|
46357
46374
|
grid-template-columns: auto 1fr auto;
|
46358
46375
|
grid-template-rows: auto auto auto; }
|
@@ -46419,13 +46436,18 @@ a.text-link {
|
|
46419
46436
|
display: inline-block;
|
46420
46437
|
color: var(--color-text);
|
46421
46438
|
text-align: end;
|
46422
|
-
width: 2.5ch;
|
46439
|
+
width: 2.5ch;
|
46440
|
+
font-size: 1.4rem; }
|
46423
46441
|
.sd-input__duration-input input::-webkit-outer-spin-button, .sd-input__duration-input input::-webkit-inner-spin-button {
|
46424
46442
|
-webkit-appearance: none;
|
46425
46443
|
margin: 0; }
|
46426
46444
|
.sd-input__duration-input input[type=number] {
|
46427
46445
|
-moz-appearance: textfield; }
|
46428
46446
|
|
46447
|
+
.sd-input__duration-input span {
|
46448
|
+
display: flex;
|
46449
|
+
align-items: center; }
|
46450
|
+
|
46429
46451
|
.sd-input__duration-input .sd-input__suffix {
|
46430
46452
|
height: 3.2rem;
|
46431
46453
|
line-height: 3.2rem;
|
@@ -46442,7 +46464,26 @@ a.text-link {
|
|
46442
46464
|
.sd-input .p-dropdown,
|
46443
46465
|
.sd-input .tags-input {
|
46444
46466
|
grid-row: 2/3;
|
46445
|
-
grid-column: 2/4;
|
46467
|
+
grid-column: 2/4;
|
46468
|
+
width: 100%; }
|
46469
|
+
|
46470
|
+
.sd-input.sd-input--disabled .p-multiselect,
|
46471
|
+
.sd-input.sd-input--disabled .p-calendar,
|
46472
|
+
.sd-input.sd-input--disabled .p-multiselect,
|
46473
|
+
.sd-input.sd-input--disabled .p-dropdown,
|
46474
|
+
.sd-input.sd-input--disabled .tags-input, .sd-input.sd-input--disabled:hover .p-multiselect,
|
46475
|
+
.sd-input.sd-input--disabled:hover .p-calendar,
|
46476
|
+
.sd-input.sd-input--disabled:hover .p-multiselect,
|
46477
|
+
.sd-input.sd-input--disabled:hover .p-dropdown,
|
46478
|
+
.sd-input.sd-input--disabled:hover .tags-input {
|
46479
|
+
opacity: 0.5;
|
46480
|
+
cursor: not-allowed; }
|
46481
|
+
|
46482
|
+
.sd-input.sd-input--disabled .p-calendar, .sd-input.sd-input--disabled:hover .p-calendar {
|
46483
|
+
border-bottom: 1px dotted var(--color-input-border);
|
46484
|
+
background-color: var(--color-input-bg); }
|
46485
|
+
.sd-input.sd-input--disabled .p-calendar .p-calendar-icon, .sd-input.sd-input--disabled:hover .p-calendar .p-calendar-icon {
|
46486
|
+
pointer-events: none; }
|
46446
46487
|
|
46447
46488
|
.sd-toggle, .sd-switch {
|
46448
46489
|
display: inline-block;
|