123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- @mixin bookmarks() {
- $bookmarks-height--loading: 150px !default;
- $bookmarks-thumbnail-size: 64px !default;
- .esri-bookmarks {
- background-color: transparent;
- .esri-widget__content--empty {
- background-color: $background-color--offset;
- }
- }
- .esri-bookmarks__loader-container {
- height: $bookmarks-height--loading;
- padding: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .esri-bookmarks__loader {
- height: 64px;
- width: 100%;
- background: url(../base/images/loading-throb.gif) no-repeat center center;
- }
- .esri-bookmarks__list {
- display: block;
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .esri-bookmarks__list--sortable .esri-bookmarks__bookmark-image-container {
- margin-left: 0;
- }
- .esri-bookmarks__bookmark {
- align-items: center;
- border-bottom: 1px solid $border-color;
- position: relative;
- display: flex;
- border-color: transparent;
- background-color: $background-color;
- transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
- overflow: hidden;
- &:hover {
- background-color: $background-color--hover;
- color: $interactive-font-color--hover;
- }
- &:hover:active {
- background-color: $background-color;
- color: $interactive-font-color;
- }
- }
- .esri-bookmarks__bookmark.sortable-chosen {
- background-color: $background-color--active;
- transition: background-color 250ms ease-in-out;
- }
- .esri-bookmarks__bookmark-button {
- border: none;
- background-color: transparent;
- padding: 0;
- color: $interactive-font-color;
- cursor: pointer;
- display: flex;
- flex-wrap: nowrap;
- justify-content: flex-start;
- align-items: center;
- overflow: hidden;
- flex: 1;
- text-align: left; // fallback for IE11
- @supports (text-align: initial) {
- text-align: initial; // modern browsers
- }
- }
- .esri-bookmarks_bookmark-drag-handle {
- align-items: center;
- align-self: stretch;
- background-color: transparent;
- border: none;
- color: $font-color--placeholder;
- cursor: move;
- display: flex;
- justify-content: center;
- margin: 0 $side-spacing--half 0 0;
- padding: 0;
- transition: background-color 250ms ease-in-out;
- width: $button-width--half;
- &:focus,
- &:hover {
- color: $interactive-font-color--hover;
- }
- }
- .esri-bookmarks_bookmark-drag-handle[aria-pressed="true"] {
- background-color: $background-color--inverse;
- color: $interactive-font-color--inverse;
- }
- @include loopingProgressBar(".esri-bookmarks__bookmark--active");
- .esri-bookmarks__bookmark--active {
- color: $font-color;
- background-color: $background-color--active;
- cursor: default;
- &:hover,
- &:focus {
- color: $font-color;
- background-color: $background-color--active;
- cursor: default;
- }
- }
- .esri-bookmarks__bookmark-name {
- font-size: $font-size--small;
- flex: 1;
- overflow: hidden;
- padding: $cap-spacing--plus-half 0;
- overflow-wrap: break-word; /* Firefox */
- word-break: break-word;
- }
- .esri-bookmarks__bookmark-image-container {
- align-items: center;
- display: flex;
- justify-content: center;
- overflow: hidden;
- margin: 0 $side-spacing--half;
- max-width: $button-width--double;
- position: relative;
- }
- .esri-button-menu {
- position: absolute;
- bottom: 2px;
- right: 2px;
- z-index: 1;
- }
- .esri-bookmarks__image {
- width: $bookmarks-thumbnail-size;
- background-color: $background-color--offset;
- margin: $cap-spacing--half 0;
- }
- .esri-bookmarks__bookmark-edit-button {
- align-items: center;
- background-color: transparent;
- border-radius: $border-radius;
- border: none;
- color: $interactive-font-color;
- cursor: pointer;
- display: flex;
- height: $button-height;
- justify-content: center;
- margin: 0 $side-spacing--half;
- width: $button-width;
- &:hover {
- background-color: $background-color;
- color: $interactive-font-color--hover;
- }
- }
- .esri-bookmarks__add-bookmark {
- background-color: $background-color--offset;
- padding: $cap-spacing--half $side-spacing--half;
- }
- .esri-bookmarks__add-bookmark-button {
- border-radius: $border-radius;
- font-size: $font-size--small;
- justify-content: flex-start;
- padding: $cap-spacing $side-spacing--quarter;
- transition: background-color 250ms ease-in-out;
- &:hover {
- background-color: $background-color;
- text-decoration: none;
- @include defaultBoxShadow();
- }
- }
- .esri-bookmarks__add-bookmark-icon {
- font-size: $font-size;
- padding-left: $side-spacing--quarter;
- padding-right: $side-spacing--quarter;
- }
- .esri-bookmarks__authoring-card {
- background-color: $background-color--offset;
- padding: $cap-spacing--half $side-spacing--half;
- animation: esri-fade-in-down 250ms ease-in-out;
- }
- .esri-bookmarks__authoring-card .esri-bookmarks__bookmark-image-container {
- width: $bookmarks-thumbnail-size;
- height: $bookmarks-thumbnail-size;
- border: 1px solid $border-color;
- background-image: url("../base/images/transparent-bg.png");
- .esri-bookmarks__image {
- margin-bottom: 0;
- margin-top: 0;
- }
- }
- .esri-bookmarks__authoring-form {
- display: flex;
- flex-flow: column;
- padding: $cap-spacing $side-spacing;
- background-color: $background-color;
- @include defaultBoxShadow();
- border-radius: $border-radius;
- }
- .esri-bookmarks__authoring-container {
- display: flex;
- flex-flow: column;
- }
- .esri-bookmarks__authoring-container .esri-bookmarks__bookmark-image-container {
- margin-bottom: $cap-spacing--half;
- }
- .esri-bookmarks__authoring-label {
- display: flex;
- flex-flow: column;
- flex: 1 0 auto;
- }
- .esri-bookmarks__authoring-actions {
- display: flex;
- justify-content: flex-end;
- margin-top: $cap-spacing--half;
- .esri-button {
- font-size: $font-size--small;
- min-height: $button-height--half;
- width: 33%;
- }
- .esri-bookmarks__authoring-delete-button {
- color: $font-color--error;
- margin-right: auto;
- padding-left: 0;
- padding-right: 0;
- width: auto;
- }
- }
- .esri-widget__no-bookmark-icon {
- font-size: $button-height;
- line-height: $button-height--double;
- width: $button-height--double;
- height: $button-height--double;
- display: inline-block;
- text-align: center;
- }
- .esri-bookmarks--fade-in {
- opacity: 0;
- transition: opacity 375ms ease-out;
- }
- .esri-bookmarks--fade-in-active {
- opacity: 1;
- }
- html[dir="rtl"] .esri-bookmarks {
- .esri-bookmarks__bookmark {
- &--active:after {
- animation: looping-progresss-bar-ani $looping-progress-bar-params reverse;
- }
- }
- .esri-bookmarks__bookmark-container {
- margin-right: 0;
- margin-left: $side-spacing--half;
- }
- .esri-bookmarks_bookmark-drag-handle {
- margin-right: 0;
- margin-left: $side-spacing--half;
- }
- .esri-bookmarks__authoring-actions .esri-bookmarks__authoring-delete-button {
- margin-right: 0;
- margin-left: auto;
- }
- .esri-bookmarks__list--sortable .esri-bookmarks__bookmark-image-container {
- margin-right: 0;
- margin-left: $side-spacing--half;
- }
- .esri-bookmarks__bookmark-button {
- text-align: right; // fallback for IE11
- @supports (text-align: initial) {
- text-align: initial; // modern browsers
- }
- }
- }
- }
- @if $include_Bookmarks==true {
- @include bookmarks();
- }
|