jupiter-dynamic-forms 1.16.6 → 1.16.7

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/index.mjs CHANGED
@@ -7049,10 +7049,10 @@ JupiterFilterRolesDialog.styles = css`
7049
7049
  transition: all 0.2s ease;
7050
7050
  }
7051
7051
 
7052
- .selection-control:hover {
7053
- background: var(--menuBgColorLighter, var(--jupiter-primary-color, #1976d2));
7054
- color: white;
7055
- }
7052
+ // .selection-control:hover {
7053
+ // background: var(--menuBgColorLighter, var(--jupiter-primary-color, #1976d2));
7054
+ // color: white;
7055
+ // }
7056
7056
 
7057
7057
  .roles-list {
7058
7058
  display: flex;
@@ -11034,7 +11034,7 @@ let JupiterDynamicForm = class extends LitElement {
11034
11034
 
11035
11035
  ${this._validationStatus === "complete" || this.showLastValidationResultBtn ? html`
11036
11036
  <button
11037
- class="btn-last-results"
11037
+ class="btn-secondary btn-last-results"
11038
11038
  @click="${() => this.dispatchEvent(new CustomEvent("show-validation-results", { bubbles: true, composed: true }))}"
11039
11039
  ?disabled="${this.disabled || this.readonly}"
11040
11040
  >
@@ -11290,14 +11290,6 @@ JupiterDynamicForm.styles = css`
11290
11290
  background: var(--jupiter-primary-color-dark, #1565c0);
11291
11291
  }
11292
11292
 
11293
- .btn-last-results {
11294
- background: var(--jupiter-primary-color, #1976d2);
11295
- color: white;
11296
- }
11297
- .btn-last-results:hover:not(:disabled) {
11298
- background: var(--jupiter-primary-color, #1976d2);
11299
- color: white;
11300
- }
11301
11293
 
11302
11294
  .validation-spinner {
11303
11295
  display: inline-block;
@@ -11367,15 +11359,15 @@ JupiterDynamicForm.styles = css`
11367
11359
  .no-roles-message {
11368
11360
  padding: 40px;
11369
11361
  text-align: center;
11370
- color: var(--jupiter-text-secondary, #666);
11371
- background: var(--jupiter-background-light, #f8f9fa);
11362
+ color: var(--primaryTextColor, var(--jupiter-text-secondary, #666));
11363
+ background: var(--bg-color-2, var(--jupiter-background-light, #f8f9fa));
11372
11364
  border-radius: 8px;
11373
11365
  margin: 20px 0;
11374
11366
  }
11375
11367
 
11376
11368
  .no-roles-message h3 {
11377
11369
  margin: 0 0 16px 0;
11378
- color: var(--jupiter-text-primary, #333);
11370
+ color: var(--primaryTextColor, var(--jupiter-text-primary, #333));
11379
11371
  }
11380
11372
 
11381
11373
  .no-roles-message p {
@@ -11510,11 +11502,12 @@ JupiterDynamicForm.styles = css`
11510
11502
 
11511
11503
  .side-panel-search-results-info {
11512
11504
  font-size: 12px;
11513
- color: var(--jupiter-text-secondary, #666);
11514
11505
  padding: 8px 16px;
11515
11506
  text-align: center;
11516
11507
  border-bottom: 1px solid var(--jupiter-border-color, #e0e0e0);
11517
- background: var(--jupiter-background-light, #f8f9fa);
11508
+
11509
+ color: var(--primaryTextColor, var(--jupiter-text-secondary, #666));
11510
+ background: var(--bg-color-2, var(--jupiter-background-light, #f8f9fa));
11518
11511
  }
11519
11512
 
11520
11513
  .side-panel-no-results {
@@ -11573,6 +11566,7 @@ JupiterDynamicForm.styles = css`
11573
11566
  flex: 1;
11574
11567
  overflow-y: auto;
11575
11568
  padding: 0;
11569
+ background: var(--bg-color-2, var(--jupiter-background, #fff));
11576
11570
  }
11577
11571
 
11578
11572
  .side-panel-content .form-sections {