jsuites 6.0.0-beta.8 → 6.0.0
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/dist/jsuites.css +366 -358
- package/dist/jsuites.js +2917 -4707
- package/package.json +14 -4
- package/.claude/settings.local.json +0 -15
- package/changelog.md +0 -27
package/dist/jsuites.css
CHANGED
|
@@ -3061,7 +3061,7 @@ div[data-before]:before {
|
|
|
3061
3061
|
display: none;
|
|
3062
3062
|
box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
|
|
3063
3063
|
border-radius: 4px;
|
|
3064
|
-
background-color: var(--jss-background-color-header);
|
|
3064
|
+
background-color: var(--jss-background-color-header, #fff);
|
|
3065
3065
|
padding: 4px;
|
|
3066
3066
|
z-index: 50;
|
|
3067
3067
|
text-align: left;
|
|
@@ -3077,360 +3077,369 @@ div[data-before]:before {
|
|
|
3077
3077
|
flex-wrap: wrap;
|
|
3078
3078
|
}
|
|
3079
3079
|
|
|
3080
|
-
:root {
|
|
3081
|
-
--lm-font-color: inherit;
|
|
3082
|
-
--lm-main-color: #2196f3;
|
|
3083
|
-
--lm-main-color-alpha: #2196f388;
|
|
3084
|
-
--lm-main-color-highlight: #1f64e1;
|
|
3085
|
-
--lm-secondary-color: #737373;
|
|
3086
|
-
|
|
3087
|
-
--lm-border-color: #ccc;
|
|
3088
|
-
--lm-border-color-light: #e9e9e9;
|
|
3089
|
-
--lm-border-color-highlight: #aaa;
|
|
3090
|
-
--lm-border-outline: #000;
|
|
3091
|
-
--lm-background-color: #fff;
|
|
3092
|
-
--lm-background-color-header: #f8f8f8;
|
|
3093
|
-
--lm-background-color-highlight: #ececec;
|
|
3094
|
-
--lm-background-color-active: #dcdcdc;
|
|
3095
|
-
--lm-background-color-input: initial;
|
|
3096
|
-
--lm-icon-color: #777;
|
|
3097
|
-
|
|
3098
|
-
--lm-font-grayout: #777;
|
|
3099
|
-
--lm-input-padding: 6px;
|
|
3100
|
-
--lm-border-radius: 2px;
|
|
3101
|
-
--lm-safe-area-top: 0;
|
|
3102
|
-
--lm-safe-area-bottom: 0;
|
|
3103
|
-
--lm-text-color: #000;
|
|
3104
|
-
}
|
|
3105
|
-
|
|
3106
|
-
.lm-dark-mode {
|
|
3107
|
-
--lm-font-color: #ddd;
|
|
3108
|
-
--lm-font-grayout: #777;
|
|
3109
|
-
--lm-border-color: #
|
|
3110
|
-
--lm-border-color-light: #222;
|
|
3111
|
-
--lm-border-color-highlight: #777;
|
|
3112
|
-
--lm-border-outline: #fff;
|
|
3113
|
-
--lm-background-color: #000;
|
|
3114
|
-
--lm-background-color-header: #181818;
|
|
3115
|
-
--lm-background-color-highlight: #282828;
|
|
3116
|
-
--lm-background-color-active: #858585;
|
|
3117
|
-
--lm-background-color-input: #181818;
|
|
3118
|
-
--lm-icon-color: #ccc;
|
|
3119
|
-
}
|
|
3120
|
-
|
|
3121
|
-
.lm-green {
|
|
3122
|
-
--lm-main-color: #39a33b;
|
|
3123
|
-
--lm-main-color-alpha: #39a33b88;
|
|
3124
|
-
--lm-main-color-highlight: #2f8431;
|
|
3125
|
-
}
|
|
3126
|
-
|
|
3127
|
-
@media (prefers-color-scheme: dark) {
|
|
3128
|
-
}
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
body.lm-application {
|
|
3132
|
-
margin: 0;
|
|
3133
|
-
padding: 0;
|
|
3134
|
-
font-family: Montserrat, sans-serif;
|
|
3135
|
-
background: var(--lm-background-color);
|
|
3136
|
-
color: var(--lm-font-color);
|
|
3137
|
-
}
|
|
3138
|
-
|
|
3139
|
-
.lm-application input[type='text'],
|
|
3140
|
-
.lm-application input[type='number'],
|
|
3141
|
-
.lm-application input[type='password'],
|
|
3142
|
-
.lm-application select,
|
|
3143
|
-
.lm-application textarea,
|
|
3144
|
-
.lm-application button,
|
|
3145
|
-
.lm-input {
|
|
3146
|
-
padding: var(--lm-input-padding) var(--lm-input-padding) var(--lm-input-padding) 8px;
|
|
3147
|
-
box-sizing: border-box;
|
|
3148
|
-
border: 1px solid var(--lm-border-color, #ccc);
|
|
3149
|
-
background-color: var(--lm-background-color-input);
|
|
3150
|
-
line-height: initial;
|
|
3151
|
-
border-radius: 2px;
|
|
3152
|
-
color: var(--lm-font-color);
|
|
3153
|
-
font-family: inherit;
|
|
3154
|
-
font-size: inherit;
|
|
3155
|
-
}
|
|
3156
|
-
|
|
3157
|
-
.lm-application *:disabled {
|
|
3158
|
-
color: #888;
|
|
3159
|
-
}
|
|
3160
|
-
|
|
3161
|
-
[visible='false'] {
|
|
3162
|
-
display: none;
|
|
3163
|
-
}
|
|
3164
|
-
|
|
3165
|
-
[visible='true'] {
|
|
3166
|
-
display: block;
|
|
3167
|
-
}
|
|
3168
|
-
|
|
3169
|
-
.lm-container {
|
|
3170
|
-
width: 100%;
|
|
3171
|
-
margin: 0 auto;
|
|
3172
|
-
box-sizing: border-box;
|
|
3173
|
-
}
|
|
3174
|
-
|
|
3175
|
-
.lm-row {
|
|
3176
|
-
display: flex;
|
|
3177
|
-
flex-wrap: nowrap;
|
|
3178
|
-
flex-direction: row;
|
|
3179
|
-
justify-content: space-between;
|
|
3180
|
-
box-sizing: border-box;
|
|
3181
|
-
}
|
|
3182
|
-
|
|
3183
|
-
.lm-row.lm-container {
|
|
3184
|
-
flex-wrap: nowrap;
|
|
3185
|
-
}
|
|
3186
|
-
|
|
3187
|
-
.lm-row.lm-middle {
|
|
3188
|
-
align-items: center;
|
|
3189
|
-
}
|
|
3190
|
-
|
|
3191
|
-
.lm-row.lm-start {
|
|
3192
|
-
justify-content: start;
|
|
3193
|
-
}
|
|
3194
|
-
|
|
3195
|
-
.lm-column {
|
|
3196
|
-
box-sizing: border-box;
|
|
3197
|
-
}
|
|
3198
|
-
|
|
3199
|
-
.lm-column.lm-top {
|
|
3200
|
-
align-self: flex-start;
|
|
3201
|
-
}
|
|
3202
|
-
|
|
3203
|
-
.lm-column.lm-bottom {
|
|
3204
|
-
align-self: flex-end;
|
|
3205
|
-
}
|
|
3206
|
-
|
|
3207
|
-
.lm-form-group {
|
|
3208
|
-
width: 100%;
|
|
3209
|
-
padding-right: 8px;
|
|
3210
|
-
padding-bottom: 8px;
|
|
3211
|
-
box-sizing: border-box;
|
|
3212
|
-
}
|
|
3213
|
-
|
|
3214
|
-
.lm-form-group input[type='text'],
|
|
3215
|
-
.lm-form-group input[type='time'],
|
|
3216
|
-
.lm-form-group input[type='date'],
|
|
3217
|
-
.lm-form-group input[type='password'],
|
|
3218
|
-
.lm-form-group input[type='number'],
|
|
3219
|
-
.lm-form-group select,
|
|
3220
|
-
.lm-form-group textarea,
|
|
3221
|
-
.lm-form-group {
|
|
3222
|
-
width: 100%;
|
|
3223
|
-
}
|
|
3224
|
-
|
|
3225
|
-
.lm-form-group label {
|
|
3226
|
-
display: block;
|
|
3227
|
-
margin-bottom: 4px;
|
|
3228
|
-
}
|
|
3229
|
-
|
|
3230
|
-
.lm-form-group label.lm-switch {
|
|
3231
|
-
display: inline-flex;
|
|
3232
|
-
}
|
|
3233
|
-
|
|
3234
|
-
.lm-f1 {
|
|
3235
|
-
flex: 1;
|
|
3236
|
-
}
|
|
3237
|
-
|
|
3238
|
-
.lm-f2 {
|
|
3239
|
-
flex: 2;
|
|
3240
|
-
}
|
|
3241
|
-
|
|
3242
|
-
.lm-f3 {
|
|
3243
|
-
flex: 3;
|
|
3244
|
-
}
|
|
3245
|
-
|
|
3246
|
-
.lm-f4 {
|
|
3247
|
-
flex: 4;
|
|
3248
|
-
}
|
|
3249
|
-
|
|
3250
|
-
.lm-f5 {
|
|
3251
|
-
flex: 5;
|
|
3252
|
-
}
|
|
3253
|
-
|
|
3254
|
-
.lm-f6 {
|
|
3255
|
-
flex: 6;
|
|
3256
|
-
}
|
|
3257
|
-
|
|
3258
|
-
.lm-f7 {
|
|
3259
|
-
flex: 7;
|
|
3260
|
-
}
|
|
3261
|
-
|
|
3262
|
-
.lm-f8 {
|
|
3263
|
-
flex: 8;
|
|
3264
|
-
}
|
|
3265
|
-
|
|
3266
|
-
.lm-p0 {
|
|
3267
|
-
padding: 0;
|
|
3268
|
-
}
|
|
3269
|
-
|
|
3270
|
-
.lm-p2 {
|
|
3271
|
-
padding: 2px;
|
|
3272
|
-
}
|
|
3273
|
-
|
|
3274
|
-
.lm-p4 {
|
|
3275
|
-
padding: 4px;
|
|
3276
|
-
}
|
|
3277
|
-
|
|
3278
|
-
.lm-p6 {
|
|
3279
|
-
padding: 6px;
|
|
3280
|
-
}
|
|
3281
|
-
|
|
3282
|
-
.lm-p8 {
|
|
3283
|
-
padding: 8px;
|
|
3284
|
-
}
|
|
3285
|
-
|
|
3286
|
-
.lm-p10 {
|
|
3287
|
-
padding: 10px;
|
|
3288
|
-
}
|
|
3289
|
-
|
|
3290
|
-
.lm-p15 {
|
|
3291
|
-
padding: 15px;
|
|
3292
|
-
}
|
|
3293
|
-
|
|
3294
|
-
.lm-p20 {
|
|
3295
|
-
padding: 20px;
|
|
3296
|
-
}
|
|
3297
|
-
|
|
3298
|
-
.lm-p25 {
|
|
3299
|
-
padding: 25px;
|
|
3300
|
-
}
|
|
3301
|
-
|
|
3302
|
-
.lm-p30 {
|
|
3303
|
-
padding: 30px;
|
|
3304
|
-
}
|
|
3305
|
-
|
|
3306
|
-
.lm-application .lm-button,
|
|
3307
|
-
.lm-button {
|
|
3308
|
-
padding: var(--lm-input-padding) 20px;
|
|
3309
|
-
border-radius: 2px;
|
|
3310
|
-
cursor: pointer;
|
|
3311
|
-
outline: none;
|
|
3312
|
-
|
|
3313
|
-
background-color: var(--lm-secondary-color, #737373);
|
|
3314
|
-
border: 1px solid transparent;
|
|
3315
|
-
color: #fff;
|
|
3316
|
-
}
|
|
3317
|
-
|
|
3318
|
-
.lm-application .lm-button.red,
|
|
3319
|
-
.lm-button.red {
|
|
3320
|
-
background-color: #a23131;
|
|
3321
|
-
border: 1px solid transparent;
|
|
3322
|
-
color: #fff;
|
|
3323
|
-
}
|
|
3324
|
-
|
|
3325
|
-
.lm-application .lm-button.blue,
|
|
3326
|
-
.lm-button.blue {
|
|
3327
|
-
border: 1px solid transparent;
|
|
3328
|
-
color: #fff;
|
|
3329
|
-
background-color: #1a73e8;
|
|
3330
|
-
}
|
|
3331
|
-
|
|
3332
|
-
.lm-ripple {
|
|
3333
|
-
background-position: center;
|
|
3334
|
-
transition: background 0.8s;
|
|
3335
|
-
}
|
|
3336
|
-
|
|
3337
|
-
.lm-ripple:hover {
|
|
3338
|
-
background: var(--lm-background-color-highlight, #ebebeb) radial-gradient(circle, transparent 1%, var(--lm-background-color-highlight, #ebebeb) 1%) center/15000%;
|
|
3339
|
-
}
|
|
3340
|
-
|
|
3341
|
-
.lm-ripple:active {
|
|
3342
|
-
background-color: var(--lm-background-color-active, #e8e8e8);
|
|
3343
|
-
background-size: 100%;
|
|
3344
|
-
transition: background 0s;
|
|
3345
|
-
}
|
|
3346
|
-
|
|
3347
|
-
.lm-cursor {
|
|
3348
|
-
cursor: pointer;
|
|
3349
|
-
}
|
|
3350
|
-
|
|
3351
|
-
.lm-center {
|
|
3352
|
-
text-align: center;
|
|
3353
|
-
}
|
|
3354
|
-
|
|
3355
|
-
.lm-loading::before {
|
|
3356
|
-
content: '';
|
|
3357
|
-
position: fixed;
|
|
3358
|
-
top: 0;
|
|
3359
|
-
left: 0;
|
|
3360
|
-
right: 0;
|
|
3361
|
-
height: 3px;
|
|
3362
|
-
z-index: 9999;
|
|
3363
|
-
animation: lm-loading 2s linear infinite;
|
|
3364
|
-
background: #e0e0e0 repeating-linear-gradient(to right, var(--lm-main-color-highlight, #66b244), var(--lm-main-color-highlight, #66b244) 50%, #e0e0e0 50%, #e0e0e0);
|
|
3365
|
-
background-size: 200% 100%;
|
|
3366
|
-
}
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
}
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
}
|
|
3080
|
+
:root {
|
|
3081
|
+
--lm-font-color: inherit;
|
|
3082
|
+
--lm-main-color: #2196f3;
|
|
3083
|
+
--lm-main-color-alpha: #2196f388;
|
|
3084
|
+
--lm-main-color-highlight: #1f64e1;
|
|
3085
|
+
--lm-secondary-color: #737373;
|
|
3086
|
+
|
|
3087
|
+
--lm-border-color: #ccc;
|
|
3088
|
+
--lm-border-color-light: #e9e9e9;
|
|
3089
|
+
--lm-border-color-highlight: #aaa;
|
|
3090
|
+
--lm-border-outline: #000;
|
|
3091
|
+
--lm-background-color: #fff;
|
|
3092
|
+
--lm-background-color-header: #f8f8f8;
|
|
3093
|
+
--lm-background-color-highlight: #ececec;
|
|
3094
|
+
--lm-background-color-active: #dcdcdc;
|
|
3095
|
+
--lm-background-color-input: initial;
|
|
3096
|
+
--lm-icon-color: #777;
|
|
3097
|
+
|
|
3098
|
+
--lm-font-grayout: #777;
|
|
3099
|
+
--lm-input-padding: 6px;
|
|
3100
|
+
--lm-border-radius: 2px;
|
|
3101
|
+
--lm-safe-area-top: 0;
|
|
3102
|
+
--lm-safe-area-bottom: 0;
|
|
3103
|
+
--lm-text-color: #000;
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3106
|
+
.lm-dark-mode {
|
|
3107
|
+
--lm-font-color: #ddd;
|
|
3108
|
+
--lm-font-grayout: #777;
|
|
3109
|
+
--lm-border-color: #444;
|
|
3110
|
+
--lm-border-color-light: #222;
|
|
3111
|
+
--lm-border-color-highlight: #777;
|
|
3112
|
+
--lm-border-outline: #fff;
|
|
3113
|
+
--lm-background-color: #000;
|
|
3114
|
+
--lm-background-color-header: #181818;
|
|
3115
|
+
--lm-background-color-highlight: #282828;
|
|
3116
|
+
--lm-background-color-active: #858585;
|
|
3117
|
+
--lm-background-color-input: #181818;
|
|
3118
|
+
--lm-icon-color: #ccc;
|
|
3119
|
+
}
|
|
3120
|
+
|
|
3121
|
+
.lm-green {
|
|
3122
|
+
--lm-main-color: #39a33b;
|
|
3123
|
+
--lm-main-color-alpha: #39a33b88;
|
|
3124
|
+
--lm-main-color-highlight: #2f8431;
|
|
3125
|
+
}
|
|
3126
|
+
|
|
3127
|
+
@media (prefers-color-scheme: dark) {
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
|
|
3131
|
+
body.lm-application {
|
|
3132
|
+
margin: 0;
|
|
3133
|
+
padding: 0;
|
|
3134
|
+
font-family: Montserrat, sans-serif;
|
|
3135
|
+
background: var(--lm-background-color);
|
|
3136
|
+
color: var(--lm-font-color);
|
|
3137
|
+
}
|
|
3138
|
+
|
|
3139
|
+
.lm-application input[type='text'],
|
|
3140
|
+
.lm-application input[type='number'],
|
|
3141
|
+
.lm-application input[type='password'],
|
|
3142
|
+
.lm-application select,
|
|
3143
|
+
.lm-application textarea,
|
|
3144
|
+
.lm-application button,
|
|
3145
|
+
.lm-input {
|
|
3146
|
+
padding: var(--lm-input-padding) var(--lm-input-padding) var(--lm-input-padding) 8px;
|
|
3147
|
+
box-sizing: border-box;
|
|
3148
|
+
border: 1px solid var(--lm-border-color, #ccc);
|
|
3149
|
+
background-color: var(--lm-background-color-input);
|
|
3150
|
+
line-height: initial;
|
|
3151
|
+
border-radius: 2px;
|
|
3152
|
+
color: var(--lm-font-color);
|
|
3153
|
+
font-family: inherit;
|
|
3154
|
+
font-size: inherit;
|
|
3155
|
+
}
|
|
3156
|
+
|
|
3157
|
+
.lm-application *:disabled {
|
|
3158
|
+
color: #888;
|
|
3159
|
+
}
|
|
3160
|
+
|
|
3161
|
+
[visible='false'] {
|
|
3162
|
+
display: none;
|
|
3163
|
+
}
|
|
3164
|
+
|
|
3165
|
+
[visible='true'] {
|
|
3166
|
+
display: block;
|
|
3167
|
+
}
|
|
3168
|
+
|
|
3169
|
+
.lm-container {
|
|
3170
|
+
width: 100%;
|
|
3171
|
+
margin: 0 auto;
|
|
3172
|
+
box-sizing: border-box;
|
|
3173
|
+
}
|
|
3174
|
+
|
|
3175
|
+
.lm-row {
|
|
3176
|
+
display: flex;
|
|
3177
|
+
flex-wrap: nowrap;
|
|
3178
|
+
flex-direction: row;
|
|
3179
|
+
justify-content: space-between;
|
|
3180
|
+
box-sizing: border-box;
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
.lm-row.lm-container {
|
|
3184
|
+
flex-wrap: nowrap;
|
|
3185
|
+
}
|
|
3186
|
+
|
|
3187
|
+
.lm-row.lm-middle {
|
|
3188
|
+
align-items: center;
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3191
|
+
.lm-row.lm-start {
|
|
3192
|
+
justify-content: start;
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
.lm-column {
|
|
3196
|
+
box-sizing: border-box;
|
|
3197
|
+
}
|
|
3198
|
+
|
|
3199
|
+
.lm-column.lm-top {
|
|
3200
|
+
align-self: flex-start;
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3203
|
+
.lm-column.lm-bottom {
|
|
3204
|
+
align-self: flex-end;
|
|
3205
|
+
}
|
|
3206
|
+
|
|
3207
|
+
.lm-form-group {
|
|
3208
|
+
width: 100%;
|
|
3209
|
+
padding-right: 8px;
|
|
3210
|
+
padding-bottom: 8px;
|
|
3211
|
+
box-sizing: border-box;
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3214
|
+
.lm-form-group input[type='text'],
|
|
3215
|
+
.lm-form-group input[type='time'],
|
|
3216
|
+
.lm-form-group input[type='date'],
|
|
3217
|
+
.lm-form-group input[type='password'],
|
|
3218
|
+
.lm-form-group input[type='number'],
|
|
3219
|
+
.lm-form-group select,
|
|
3220
|
+
.lm-form-group textarea,
|
|
3221
|
+
.lm-form-group {
|
|
3222
|
+
width: 100%;
|
|
3223
|
+
}
|
|
3224
|
+
|
|
3225
|
+
.lm-form-group label {
|
|
3226
|
+
display: block;
|
|
3227
|
+
margin-bottom: 4px;
|
|
3228
|
+
}
|
|
3229
|
+
|
|
3230
|
+
.lm-form-group label.lm-switch {
|
|
3231
|
+
display: inline-flex;
|
|
3232
|
+
}
|
|
3233
|
+
|
|
3234
|
+
.lm-f1 {
|
|
3235
|
+
flex: 1;
|
|
3236
|
+
}
|
|
3237
|
+
|
|
3238
|
+
.lm-f2 {
|
|
3239
|
+
flex: 2;
|
|
3240
|
+
}
|
|
3241
|
+
|
|
3242
|
+
.lm-f3 {
|
|
3243
|
+
flex: 3;
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
.lm-f4 {
|
|
3247
|
+
flex: 4;
|
|
3248
|
+
}
|
|
3249
|
+
|
|
3250
|
+
.lm-f5 {
|
|
3251
|
+
flex: 5;
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3254
|
+
.lm-f6 {
|
|
3255
|
+
flex: 6;
|
|
3256
|
+
}
|
|
3257
|
+
|
|
3258
|
+
.lm-f7 {
|
|
3259
|
+
flex: 7;
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3262
|
+
.lm-f8 {
|
|
3263
|
+
flex: 8;
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3266
|
+
.lm-p0 {
|
|
3267
|
+
padding: 0;
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3270
|
+
.lm-p2 {
|
|
3271
|
+
padding: 2px;
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
.lm-p4 {
|
|
3275
|
+
padding: 4px;
|
|
3276
|
+
}
|
|
3277
|
+
|
|
3278
|
+
.lm-p6 {
|
|
3279
|
+
padding: 6px;
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3282
|
+
.lm-p8 {
|
|
3283
|
+
padding: 8px;
|
|
3284
|
+
}
|
|
3285
|
+
|
|
3286
|
+
.lm-p10 {
|
|
3287
|
+
padding: 10px;
|
|
3288
|
+
}
|
|
3289
|
+
|
|
3290
|
+
.lm-p15 {
|
|
3291
|
+
padding: 15px;
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
.lm-p20 {
|
|
3295
|
+
padding: 20px;
|
|
3296
|
+
}
|
|
3297
|
+
|
|
3298
|
+
.lm-p25 {
|
|
3299
|
+
padding: 25px;
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
.lm-p30 {
|
|
3303
|
+
padding: 30px;
|
|
3304
|
+
}
|
|
3305
|
+
|
|
3306
|
+
.lm-application .lm-button,
|
|
3307
|
+
.lm-button {
|
|
3308
|
+
padding: var(--lm-input-padding) 20px;
|
|
3309
|
+
border-radius: 2px;
|
|
3310
|
+
cursor: pointer;
|
|
3311
|
+
outline: none;
|
|
3312
|
+
|
|
3313
|
+
background-color: var(--lm-secondary-color, #737373);
|
|
3314
|
+
border: 1px solid transparent;
|
|
3315
|
+
color: #fff;
|
|
3316
|
+
}
|
|
3317
|
+
|
|
3318
|
+
.lm-application .lm-button.red,
|
|
3319
|
+
.lm-button.red {
|
|
3320
|
+
background-color: #a23131;
|
|
3321
|
+
border: 1px solid transparent;
|
|
3322
|
+
color: #fff;
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3325
|
+
.lm-application .lm-button.blue,
|
|
3326
|
+
.lm-button.blue {
|
|
3327
|
+
border: 1px solid transparent;
|
|
3328
|
+
color: #fff;
|
|
3329
|
+
background-color: #1a73e8;
|
|
3330
|
+
}
|
|
3331
|
+
|
|
3332
|
+
.lm-ripple {
|
|
3333
|
+
background-position: center;
|
|
3334
|
+
transition: background 0.8s;
|
|
3335
|
+
}
|
|
3336
|
+
|
|
3337
|
+
.lm-ripple:hover {
|
|
3338
|
+
background: var(--lm-background-color-highlight, #ebebeb) radial-gradient(circle, transparent 1%, var(--lm-background-color-highlight, #ebebeb) 1%) center/15000%;
|
|
3339
|
+
}
|
|
3340
|
+
|
|
3341
|
+
.lm-ripple:active {
|
|
3342
|
+
background-color: var(--lm-background-color-active, #e8e8e8);
|
|
3343
|
+
background-size: 100%;
|
|
3344
|
+
transition: background 0s;
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3347
|
+
.lm-cursor {
|
|
3348
|
+
cursor: pointer;
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3351
|
+
.lm-center {
|
|
3352
|
+
text-align: center;
|
|
3353
|
+
}
|
|
3354
|
+
|
|
3355
|
+
.lm-loading::before {
|
|
3356
|
+
content: '';
|
|
3357
|
+
position: fixed;
|
|
3358
|
+
top: 0;
|
|
3359
|
+
left: 0;
|
|
3360
|
+
right: 0;
|
|
3361
|
+
height: 3px;
|
|
3362
|
+
z-index: 9999;
|
|
3363
|
+
animation: lm-loading 2s linear infinite;
|
|
3364
|
+
background: #e0e0e0 repeating-linear-gradient(to right, var(--lm-main-color-highlight, #66b244), var(--lm-main-color-highlight, #66b244) 50%, #e0e0e0 50%, #e0e0e0);
|
|
3365
|
+
background-size: 200% 100%;
|
|
3366
|
+
}
|
|
3367
|
+
|
|
3368
|
+
.lm-icon {
|
|
3369
|
+
font-family: "Material Symbols Outlined", "Material Icons", "FontAwesome";
|
|
3370
|
+
font-size: 24px;
|
|
3371
|
+
width: 24px;
|
|
3372
|
+
height: 24px;
|
|
3373
|
+
line-height: 24px;
|
|
3374
|
+
font-style: normal;
|
|
3375
|
+
}
|
|
3376
|
+
|
|
3377
|
+
@keyframes lm-loading {
|
|
3378
|
+
from {
|
|
3379
|
+
background-position: 100% 0;
|
|
3380
|
+
}
|
|
3381
|
+
to {
|
|
3382
|
+
background-position: 0 0;
|
|
3383
|
+
}
|
|
3384
|
+
}
|
|
3385
|
+
|
|
3386
|
+
/** Dark mode */
|
|
3387
|
+
|
|
3388
|
+
body.lm-dark-mode {
|
|
3389
|
+
background-color: var(--lm-background-color);
|
|
3390
|
+
}
|
|
3391
|
+
|
|
3392
|
+
.lm-dark-mode a {
|
|
3393
|
+
color: white;
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
.lm-dark-mode .lm-button {
|
|
3397
|
+
background-color: #555;
|
|
3398
|
+
border: 1px solid transparent;
|
|
3399
|
+
color: white;
|
|
3400
|
+
}
|
|
3401
|
+
|
|
3402
|
+
@media (min-width: 320px) {
|
|
3403
|
+
.lm-container {
|
|
3404
|
+
padding: 0 2% 0 2%;
|
|
3405
|
+
}
|
|
3406
|
+
}
|
|
3407
|
+
|
|
3408
|
+
@media (min-width: 1200px) {
|
|
3409
|
+
.lm-container {
|
|
3410
|
+
padding: 0 5% 0 5%;
|
|
3411
|
+
}
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
@media (max-width: 720px) {
|
|
3415
|
+
.lm-row {
|
|
3416
|
+
flex-wrap: wrap;
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3419
|
+
.lm-column {
|
|
3420
|
+
min-width: 100%;
|
|
3421
|
+
}
|
|
3422
|
+
|
|
3423
|
+
.lm-column .lm-form-group {
|
|
3424
|
+
padding: 0;
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3427
|
+
::placeholder {
|
|
3428
|
+
text-transform: uppercase;
|
|
3429
|
+
}
|
|
3430
|
+
|
|
3431
|
+
::-webkit-input-placeholder {
|
|
3432
|
+
text-transform: uppercase;
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3435
|
+
:-moz-placeholder {
|
|
3436
|
+
text-transform: uppercase;
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3439
|
+
:-ms-input-placeholder {
|
|
3440
|
+
text-transform: uppercase;
|
|
3441
|
+
}
|
|
3442
|
+
}
|
|
3434
3443
|
|
|
3435
3444
|
.lm-calendar {
|
|
3436
3445
|
user-select: none;
|
|
@@ -3949,7 +3958,7 @@ body.lm-dark-mode {
|
|
|
3949
3958
|
position: relative;
|
|
3950
3959
|
}
|
|
3951
3960
|
|
|
3952
|
-
.lm-menu-submenu > div.lm-menu-item
|
|
3961
|
+
.lm-menu-submenu > div.lm-menu-item span {
|
|
3953
3962
|
text-decoration: none;
|
|
3954
3963
|
flex: 1;
|
|
3955
3964
|
cursor: pointer;
|
|
@@ -4425,7 +4434,7 @@ body.lm-dark-mode {
|
|
|
4425
4434
|
min-height: 200px;
|
|
4426
4435
|
border-radius: 5px;
|
|
4427
4436
|
z-index: 15;
|
|
4428
|
-
background-color: var(--lm-background-color, #fff);
|
|
4437
|
+
background-color: var(--lm-background-color-input, #fff);
|
|
4429
4438
|
box-sizing: border-box;
|
|
4430
4439
|
box-shadow: 0 0 12px rgb(0 0 0 / 22%);
|
|
4431
4440
|
opacity: 1;
|
|
@@ -4954,4 +4963,3 @@ body.lm-dark-mode {
|
|
|
4954
4963
|
position: absolute;
|
|
4955
4964
|
transition: initial;
|
|
4956
4965
|
}
|
|
4957
|
-
|