@volo/ngx-lepton-x.lite 3.3.1 → 4.0.0-rc.1
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.
|
@@ -2981,6 +2981,7 @@ textarea.form-control-lg {
|
|
|
2981
2981
|
|
|
2982
2982
|
.form-control,
|
|
2983
2983
|
.form-select {
|
|
2984
|
+
font-weight: 400;
|
|
2984
2985
|
background-color: #f5f5f7;
|
|
2985
2986
|
border-radius: 0.5rem;
|
|
2986
2987
|
transition: background-color 0.2s, border-color 0.4s;
|
|
@@ -2994,21 +2995,50 @@ textarea.form-control-lg {
|
|
|
2994
2995
|
border-color: #e7e9ec;
|
|
2995
2996
|
color: #161616;
|
|
2996
2997
|
}
|
|
2998
|
+
.form-control:disabled,
|
|
2999
|
+
.form-select:disabled {
|
|
3000
|
+
color: rgba(104, 107, 110, 0.5);
|
|
3001
|
+
border-color: #e7e9ec;
|
|
3002
|
+
background-color: #e7e9ec;
|
|
3003
|
+
}
|
|
3004
|
+
|
|
3005
|
+
.form-control[disabled]::placeholder {
|
|
3006
|
+
color: rgba(104, 107, 110, 0.5);
|
|
3007
|
+
}
|
|
3008
|
+
.form-control[disabled] ~ .input-group-text {
|
|
3009
|
+
color: rgba(104, 107, 110, 0.5) !important;
|
|
3010
|
+
background-color: #f5f6f8 !important;
|
|
3011
|
+
}
|
|
2997
3012
|
|
|
2998
3013
|
.input-group-text {
|
|
2999
3014
|
border-color: #e7e9ec;
|
|
3000
3015
|
background-color: #ffffff;
|
|
3001
3016
|
}
|
|
3017
|
+
.input-group-text.disabled {
|
|
3018
|
+
color: rgba(104, 107, 110, 0.5) !important;
|
|
3019
|
+
background-color: #f5f6f8 !important;
|
|
3020
|
+
}
|
|
3002
3021
|
|
|
3003
3022
|
.form-check-input {
|
|
3004
3023
|
border-width: 1px;
|
|
3005
3024
|
border-color: #e7e9ec !important;
|
|
3006
3025
|
}
|
|
3007
|
-
|
|
3008
3026
|
.form-check-input:checked {
|
|
3009
3027
|
border-color: #f72585 !important;
|
|
3010
3028
|
background-color: #f72585 !important;
|
|
3011
3029
|
}
|
|
3030
|
+
.form-check-input[disabled] {
|
|
3031
|
+
opacity: 1;
|
|
3032
|
+
background-color: #e7e9ec;
|
|
3033
|
+
}
|
|
3034
|
+
.form-check-input[disabled]:checked {
|
|
3035
|
+
border-color: rgba(104, 107, 110, 0.1) !important;
|
|
3036
|
+
background-color: rgba(104, 107, 110, 0.5) !important;
|
|
3037
|
+
}
|
|
3038
|
+
.form-check-input[disabled] ~ .form-check-label {
|
|
3039
|
+
color: rgba(104, 107, 110, 0.5);
|
|
3040
|
+
opacity: 1;
|
|
3041
|
+
}
|
|
3012
3042
|
|
|
3013
3043
|
.form-switch .form-check-input:focus {
|
|
3014
3044
|
outline: 0;
|
|
@@ -3035,6 +3065,9 @@ textarea.form-control-lg {
|
|
|
3035
3065
|
.form-select {
|
|
3036
3066
|
background-position: right 0.75rem center;
|
|
3037
3067
|
}
|
|
3068
|
+
.form-select:disabled {
|
|
3069
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23A2B1BD' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
|
|
3070
|
+
}
|
|
3038
3071
|
|
|
3039
3072
|
select.form-select option:checked, select.form-select option:focus, select.form-select option:active {
|
|
3040
3073
|
background: #f72585 !important;
|
|
@@ -3045,7 +3078,8 @@ select.form-select option:checked[selected], select.form-select option:focus[sel
|
|
|
3045
3078
|
color: #fff !important;
|
|
3046
3079
|
}
|
|
3047
3080
|
|
|
3048
|
-
.input-group > .form-control:focus,
|
|
3081
|
+
.input-group > .form-control:focus,
|
|
3082
|
+
.input-group > .form-select:focus {
|
|
3049
3083
|
z-index: 1;
|
|
3050
3084
|
}
|
|
3051
3085
|
|
|
@@ -3058,7 +3092,10 @@ select.form-select option:checked[selected], select.form-select option:focus[sel
|
|
|
3058
3092
|
border-color: #c00d49 !important;
|
|
3059
3093
|
}
|
|
3060
3094
|
|
|
3061
|
-
.form-floating > .form-control:focus ~ label,
|
|
3095
|
+
.form-floating > .form-control:focus ~ label,
|
|
3096
|
+
.form-floating > .form-control:not(:placeholder-shown) ~ label,
|
|
3097
|
+
.form-floating > .form-control-plaintext ~ label,
|
|
3098
|
+
.form-floating > .form-select ~ label {
|
|
3062
3099
|
opacity: 0.75;
|
|
3063
3100
|
transform: scale(0.8) translateY(-0.15rem) translateX(0.35rem);
|
|
3064
3101
|
}
|
|
@@ -4980,6 +5017,14 @@ select.form-select option:checked[selected], select.form-select option:focus[sel
|
|
|
4980
5017
|
.card .card-footer {
|
|
4981
5018
|
padding-top: 0;
|
|
4982
5019
|
}
|
|
5020
|
+
@media only screen and (max-width: 767px) {
|
|
5021
|
+
.card {
|
|
5022
|
+
margin-bottom: 16px;
|
|
5023
|
+
}
|
|
5024
|
+
.card .card-body {
|
|
5025
|
+
padding: 16px;
|
|
5026
|
+
}
|
|
5027
|
+
}
|
|
4983
5028
|
|
|
4984
5029
|
.accordion-item {
|
|
4985
5030
|
background-color: #ffffff !important;
|
|
@@ -3010,6 +3010,7 @@ textarea.form-control-lg {
|
|
|
3010
3010
|
|
|
3011
3011
|
.form-control,
|
|
3012
3012
|
.form-select {
|
|
3013
|
+
font-weight: 400;
|
|
3013
3014
|
background-color: #f5f5f7;
|
|
3014
3015
|
border-radius: 0.5rem;
|
|
3015
3016
|
transition: background-color 0.2s, border-color 0.4s;
|
|
@@ -3023,21 +3024,54 @@ textarea.form-control-lg {
|
|
|
3023
3024
|
border-color: #e7e9ec;
|
|
3024
3025
|
color: #161616;
|
|
3025
3026
|
}
|
|
3027
|
+
.form-control:disabled,
|
|
3028
|
+
.form-select:disabled {
|
|
3029
|
+
color: rgba(104, 107, 110, 0.5);
|
|
3030
|
+
border-color: #e7e9ec;
|
|
3031
|
+
background-color: #e7e9ec;
|
|
3032
|
+
}
|
|
3033
|
+
|
|
3034
|
+
.form-control[disabled]::-moz-placeholder {
|
|
3035
|
+
color: rgba(104, 107, 110, 0.5);
|
|
3036
|
+
}
|
|
3037
|
+
|
|
3038
|
+
.form-control[disabled]::placeholder {
|
|
3039
|
+
color: rgba(104, 107, 110, 0.5);
|
|
3040
|
+
}
|
|
3041
|
+
.form-control[disabled] ~ .input-group-text {
|
|
3042
|
+
color: rgba(104, 107, 110, 0.5) !important;
|
|
3043
|
+
background-color: #f5f6f8 !important;
|
|
3044
|
+
}
|
|
3026
3045
|
|
|
3027
3046
|
.input-group-text {
|
|
3028
3047
|
border-color: #e7e9ec;
|
|
3029
3048
|
background-color: #ffffff;
|
|
3030
3049
|
}
|
|
3050
|
+
.input-group-text.disabled {
|
|
3051
|
+
color: rgba(104, 107, 110, 0.5) !important;
|
|
3052
|
+
background-color: #f5f6f8 !important;
|
|
3053
|
+
}
|
|
3031
3054
|
|
|
3032
3055
|
.form-check-input {
|
|
3033
3056
|
border-width: 1px;
|
|
3034
3057
|
border-color: #e7e9ec !important;
|
|
3035
3058
|
}
|
|
3036
|
-
|
|
3037
3059
|
.form-check-input:checked {
|
|
3038
3060
|
border-color: #f72585 !important;
|
|
3039
3061
|
background-color: #f72585 !important;
|
|
3040
3062
|
}
|
|
3063
|
+
.form-check-input[disabled] {
|
|
3064
|
+
opacity: 1;
|
|
3065
|
+
background-color: #e7e9ec;
|
|
3066
|
+
}
|
|
3067
|
+
.form-check-input[disabled]:checked {
|
|
3068
|
+
border-color: rgba(104, 107, 110, 0.1) !important;
|
|
3069
|
+
background-color: rgba(104, 107, 110, 0.5) !important;
|
|
3070
|
+
}
|
|
3071
|
+
.form-check-input[disabled] ~ .form-check-label {
|
|
3072
|
+
color: rgba(104, 107, 110, 0.5);
|
|
3073
|
+
opacity: 1;
|
|
3074
|
+
}
|
|
3041
3075
|
|
|
3042
3076
|
.form-switch .form-check-input:focus {
|
|
3043
3077
|
outline: 0;
|
|
@@ -3064,6 +3098,9 @@ textarea.form-control-lg {
|
|
|
3064
3098
|
.form-select {
|
|
3065
3099
|
background-position: left 0.75rem center;
|
|
3066
3100
|
}
|
|
3101
|
+
.form-select:disabled {
|
|
3102
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23A2B1BD' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
|
|
3103
|
+
}
|
|
3067
3104
|
|
|
3068
3105
|
select.form-select option:checked, select.form-select option:focus, select.form-select option:active {
|
|
3069
3106
|
background: #f72585 !important;
|
|
@@ -3074,7 +3111,8 @@ select.form-select option:checked[selected], select.form-select option:focus[sel
|
|
|
3074
3111
|
color: #fff !important;
|
|
3075
3112
|
}
|
|
3076
3113
|
|
|
3077
|
-
.input-group > .form-control:focus,
|
|
3114
|
+
.input-group > .form-control:focus,
|
|
3115
|
+
.input-group > .form-select:focus {
|
|
3078
3116
|
z-index: 1;
|
|
3079
3117
|
}
|
|
3080
3118
|
|
|
@@ -3092,7 +3130,10 @@ select.form-select option:checked[selected], select.form-select option:focus[sel
|
|
|
3092
3130
|
transform: scale(0.8) translateY(-0.15rem) translateX(-0.35rem);
|
|
3093
3131
|
}
|
|
3094
3132
|
|
|
3095
|
-
.form-floating > .form-control:focus ~ label,
|
|
3133
|
+
.form-floating > .form-control:focus ~ label,
|
|
3134
|
+
.form-floating > .form-control:not(:placeholder-shown) ~ label,
|
|
3135
|
+
.form-floating > .form-control-plaintext ~ label,
|
|
3136
|
+
.form-floating > .form-select ~ label {
|
|
3096
3137
|
opacity: 0.75;
|
|
3097
3138
|
transform: scale(0.8) translateY(-0.15rem) translateX(-0.35rem);
|
|
3098
3139
|
}
|
|
@@ -5016,6 +5057,14 @@ select.form-select option:checked[selected], select.form-select option:focus[sel
|
|
|
5016
5057
|
.card .card-footer {
|
|
5017
5058
|
padding-top: 0;
|
|
5018
5059
|
}
|
|
5060
|
+
@media only screen and (max-width: 767px) {
|
|
5061
|
+
.card {
|
|
5062
|
+
margin-bottom: 16px;
|
|
5063
|
+
}
|
|
5064
|
+
.card .card-body {
|
|
5065
|
+
padding: 16px;
|
|
5066
|
+
}
|
|
5067
|
+
}
|
|
5019
5068
|
|
|
5020
5069
|
.accordion-item {
|
|
5021
5070
|
background-color: #ffffff !important;
|
|
@@ -85,7 +85,7 @@ select:-webkit-autofill:focus {
|
|
|
85
85
|
}
|
|
86
86
|
@media only screen and (max-width: 767px) {
|
|
87
87
|
.lpx-content-container .lpx-content {
|
|
88
|
-
padding: 3em
|
|
88
|
+
padding: 3em 1.14em 4em 1.14em;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
|
|
@@ -119,6 +119,12 @@ select:-webkit-autofill:focus {
|
|
|
119
119
|
margin-bottom: 0.875rem;
|
|
120
120
|
margin-top: 0.875rem;
|
|
121
121
|
}
|
|
122
|
+
@media only screen and (max-width: 767px) {
|
|
123
|
+
.lpx-main-title {
|
|
124
|
+
margin-bottom: 0;
|
|
125
|
+
margin-top: 0;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
122
128
|
|
|
123
129
|
.login-section-wrapper {
|
|
124
130
|
height: 100vh;
|
|
@@ -86,7 +86,7 @@ select:-webkit-autofill:focus {
|
|
|
86
86
|
}
|
|
87
87
|
@media only screen and (max-width: 767px) {
|
|
88
88
|
.lpx-content-container .lpx-content {
|
|
89
|
-
padding: 3em
|
|
89
|
+
padding: 3em 1.14em 4em 1.14em;
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
|
|
@@ -120,6 +120,12 @@ select:-webkit-autofill:focus {
|
|
|
120
120
|
margin-bottom: 0.875rem;
|
|
121
121
|
margin-top: 0.875rem;
|
|
122
122
|
}
|
|
123
|
+
@media only screen and (max-width: 767px) {
|
|
124
|
+
.lpx-main-title {
|
|
125
|
+
margin-bottom: 0;
|
|
126
|
+
margin-top: 0;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
123
129
|
|
|
124
130
|
.login-section-wrapper {
|
|
125
131
|
height: 100vh;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volo/ngx-lepton-x.lite",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-rc.1",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.3.0",
|
|
6
6
|
"bootstrap-icons": "~1.7.2",
|
|
7
7
|
"@ng-bootstrap/ng-bootstrap": "~16.0.0",
|
|
8
|
-
"@volo/ngx-lepton-x.core": "
|
|
8
|
+
"@volo/ngx-lepton-x.core": "4.0.0-rc.1"
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|