@utahdts/utah-design-system-header 5.0.1 → 5.1.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/style.css +94 -0
- package/dist/utah-design-system-header.es.js +631 -611
- package/dist/utah-design-system-header.umd.js +39 -19
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -766,6 +766,14 @@ variables and settings
|
|
|
766
766
|
.utah-design-system .utds-icon-after-mail-open::after {
|
|
767
767
|
content: "\e93f";
|
|
768
768
|
}
|
|
769
|
+
.utah-design-system .utds-icon-before-ai::before,
|
|
770
|
+
.utah-design-system .utds-icon-after-ai::after {
|
|
771
|
+
content: "\e940";
|
|
772
|
+
}
|
|
773
|
+
.utah-design-system .utds-icon-before-send::before,
|
|
774
|
+
.utah-design-system .utds-icon-after-send::after {
|
|
775
|
+
content: "\e941";
|
|
776
|
+
}
|
|
769
777
|
/*
|
|
770
778
|
############ _media-size-vars.scss ############
|
|
771
779
|
Media Sizes - SCSS Variables
|
|
@@ -2422,6 +2430,87 @@ component specific, BEM (Block, Element, Modifier)
|
|
|
2422
2430
|
.utah-design-system .tag--clearable .tag--small {
|
|
2423
2431
|
padding: 0 0 0 var(--spacing-xs);
|
|
2424
2432
|
}
|
|
2433
|
+
.utah-design-system .chatbot__wrapper {
|
|
2434
|
+
max-width: calc(100% - 2 * (1rem + var(--spacing-2xs)));
|
|
2435
|
+
}
|
|
2436
|
+
.utah-design-system .chatbot__wrapper .button--confirm {
|
|
2437
|
+
padding: 0 var(--spacing-xs);
|
|
2438
|
+
}
|
|
2439
|
+
.utah-design-system .chatbot__input-wrapper {
|
|
2440
|
+
background: var(--gray-light-color);
|
|
2441
|
+
border-radius: var(--radius-small);
|
|
2442
|
+
padding: var(--spacing-s) var(--spacing);
|
|
2443
|
+
}
|
|
2444
|
+
.utah-design-system .chatbot__input-wrapper label.text-area__label {
|
|
2445
|
+
/*
|
|
2446
|
+
display: flex;
|
|
2447
|
+
align-items: center;
|
|
2448
|
+
position: relative;
|
|
2449
|
+
margin-left: calc(1rem + var(--spacing-2xs));
|
|
2450
|
+
|
|
2451
|
+
&:before {
|
|
2452
|
+
content: '\e940';
|
|
2453
|
+
display: inline-block;
|
|
2454
|
+
font-family: "utah design system";
|
|
2455
|
+
font-style: normal;
|
|
2456
|
+
font-weight: normal;
|
|
2457
|
+
font-size: 1em;
|
|
2458
|
+
line-height: 1;
|
|
2459
|
+
-webkit-font-smoothing: antialiased;
|
|
2460
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2461
|
+
position: absolute;
|
|
2462
|
+
left: calc(-1rem - var(--spacing-2xs));
|
|
2463
|
+
}
|
|
2464
|
+
*/
|
|
2465
|
+
}
|
|
2466
|
+
.utah-design-system .chatbot__input-wrapper textarea {
|
|
2467
|
+
border: none;
|
|
2468
|
+
background: none;
|
|
2469
|
+
padding: var(--spacing-xs) 0;
|
|
2470
|
+
field-sizing: content;
|
|
2471
|
+
}
|
|
2472
|
+
.utah-design-system .chatbot__answer-wrapper {
|
|
2473
|
+
display: flex;
|
|
2474
|
+
flex-direction: column;
|
|
2475
|
+
}
|
|
2476
|
+
.utah-design-system .chatbot__answer-user {
|
|
2477
|
+
align-self: flex-end;
|
|
2478
|
+
background-color: var(--gray-light-color);
|
|
2479
|
+
padding: var(--spacing-s) var(--spacing);
|
|
2480
|
+
border-radius: var(--radius-medium) var(--radius-medium) 0 var(--radius-medium);
|
|
2481
|
+
margin-bottom: var(--spacing);
|
|
2482
|
+
max-width: 85%;
|
|
2483
|
+
position: relative;
|
|
2484
|
+
}
|
|
2485
|
+
.utah-design-system .chatbot__answer-user:after {
|
|
2486
|
+
content: "";
|
|
2487
|
+
display: block;
|
|
2488
|
+
width: 0;
|
|
2489
|
+
height: 0;
|
|
2490
|
+
position: absolute;
|
|
2491
|
+
bottom: 0;
|
|
2492
|
+
right: -10px;
|
|
2493
|
+
border-style: solid;
|
|
2494
|
+
border-width: 5px;
|
|
2495
|
+
border-color: transparent transparent var(--gray-light-color) var(--gray-light-color);
|
|
2496
|
+
}
|
|
2497
|
+
.utah-design-system .chatbot__answer-ai {
|
|
2498
|
+
position: relative;
|
|
2499
|
+
padding-left: calc(1rem + var(--spacing-2xs));
|
|
2500
|
+
}
|
|
2501
|
+
.utah-design-system .chatbot__answer-ai:before {
|
|
2502
|
+
content: "\e940";
|
|
2503
|
+
display: inline-block;
|
|
2504
|
+
font-family: "utah design system";
|
|
2505
|
+
font-style: normal;
|
|
2506
|
+
font-weight: normal;
|
|
2507
|
+
font-size: 1em;
|
|
2508
|
+
line-height: 1;
|
|
2509
|
+
-webkit-font-smoothing: antialiased;
|
|
2510
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2511
|
+
position: absolute;
|
|
2512
|
+
left: 0;
|
|
2513
|
+
}
|
|
2425
2514
|
.utah-design-system .footer-agency-information {
|
|
2426
2515
|
background: var(--gray-color);
|
|
2427
2516
|
color: white;
|
|
@@ -5084,6 +5173,11 @@ BEM standard: Block, Element, Modifier
|
|
|
5084
5173
|
box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
|
|
5085
5174
|
color: var(--primary-color);
|
|
5086
5175
|
}
|
|
5176
|
+
@media screen and (max-width: 768px) {
|
|
5177
|
+
.utah-design-system .on-this-page__list .back-to-top {
|
|
5178
|
+
display: none;
|
|
5179
|
+
}
|
|
5180
|
+
}
|
|
5087
5181
|
/* ---- Project Components ---- */
|
|
5088
5182
|
/*
|
|
5089
5183
|
############ _popup.scss ############
|