-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from Esri/4.30
chore: update for 4.30
- Loading branch information
Showing
28 changed files
with
926 additions
and
685 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
@mixin catalogLayerList() { | ||
.esri-catalog-layer-list { | ||
display: flex; | ||
} | ||
|
||
.esri-catalog-layer-list__filter-no-results { | ||
@include layerListFilterNoResults(); | ||
} | ||
|
||
.esri-catalog-layer-list__item { | ||
--calcite-list-item-spacing-indent: 2rem; | ||
--calcite-list-item-icon-center: 8.5px; | ||
} | ||
|
||
.esri-catalog-layer-list__item-temporary-icon { | ||
margin-inline-start: 0.25rem; | ||
} | ||
|
||
.esri-catalog-layer-list__item-table-icon { | ||
margin-inline-end: 0; | ||
} | ||
|
||
.esri-catalog-layer-list__item-action-image { | ||
@include layerListActionImage(); | ||
} | ||
|
||
.esri-catalog-layer-list__action-menu .esri-catalog-layer-list__action-group { | ||
display: none; | ||
} | ||
|
||
.esri-catalog-layer-list__action-menu[open] .esri-catalog-layer-list__action-group { | ||
display: flex; | ||
} | ||
|
||
.esri-catalog-layer-list__visible-icon { | ||
visibility: hidden; | ||
} | ||
|
||
.esri-catalog-layer-list__item--active:hover, | ||
.esri-catalog-layer-list__item--active:focus, | ||
.esri-catalog-layer-list__item--active:focus-within { | ||
> .esri-catalog-layer-list__visible-toggle > .esri-catalog-layer-list__visible-icon { | ||
visibility: visible; | ||
} | ||
} | ||
|
||
.esri-catalog-layer-list__item--invisible { | ||
color: $interactive-font-color--disabled; | ||
} | ||
|
||
.esri-catalog-layer-list__status-indicator { | ||
@include layerListStatusIndicator(); | ||
} | ||
|
||
.esri-catalog-layer-list__publishing { | ||
@include layerListPublishingIndicator(); | ||
|
||
transform-origin: var(--calcite-list-item-icon-center) var(--calcite-list-item-icon-center); | ||
animation: esri-catalog-layer-list__publishing-anim 2s normal infinite; | ||
} | ||
|
||
.esri-catalog-layer-list__updating { | ||
@include layerListUpdatingIndicator(); | ||
|
||
animation: esri-catalog-layer-list__updating-anim 2s normal infinite; | ||
} | ||
|
||
.esri-catalog-layer-list__connection-status { | ||
@include layerListConnectionStatus(); | ||
} | ||
|
||
.esri-catalog-layer-list__connection-status--connected { | ||
color: $connection-connected; | ||
} | ||
|
||
.esri-catalog-layer-list__item-content { | ||
@include layerListItemContent(); | ||
} | ||
|
||
.esri-catalog-layer-list__item-content-bottom { | ||
@include layerListContentBottom(); | ||
} | ||
|
||
.esri-catalog-layer-list__item-content-bottom .esri-legend__service { | ||
@include layerListLegend(); | ||
} | ||
|
||
.esri-catalog-layer-list__item-message { | ||
@include layerListContentBottom(); | ||
} | ||
|
||
@keyframes esri-catalog-layer-list__updating-anim { | ||
@include layerListUpdating(); | ||
} | ||
|
||
@keyframes esri-catalog-layer-list__publishing-anim { | ||
@include layerListPublishing(); | ||
} | ||
} | ||
|
||
@if $include_CatalogLayerList == true { | ||
@include catalogLayerList(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.