@use 'global/globalCssVariables.module.scss' as global; $linkGap: 3px; .propertiesButtons-linkFlyout { grid-column: 2/4; } .propertiesButtons-linkButton-empty:hover { background: global.$medium-gray; transform: scale(1.05); cursor: pointer; } .propertiesButtons-linkButton-nonempty:hover { background: global.$medium-gray; transform: scale(1.05); cursor: pointer; } .propertiesButtons-linkButton-empty, .propertiesButtons-linkButton-nonempty { // margin-right: 7px; // margin-left: 8px; height: 28px; // width: 226px;//29px; display: flex; align-items: center; // height: 25px; // width: 230px;//29px; // display: flex; // align-items: center; // border-radius: 6px; pointer-events: auto; // background-color: $dark-gray; // color: #fcfbf7; // text-transform: uppercase; // letter-spacing: 2px; // font-size: 75%; transition: transform 0.2s; // text-align: center; // justify-content: center; // margin-right: 10px; // margin-left: 4px; &:hover { background: global.$medium-gray; transform: scale(1.05); cursor: pointer; } } .propertiesButtons-linkButton-empty.toggle-on { background-color: global.$medium-blue; color: global.$white; width: 100%; } .propertiesButtons-linkButton-empty.toggle-hover { background-color: global.$light-blue; color: global.$black; width: 100%; } .propertiesButtons-linkButton-empty.toggle-off { background-color: white; //$dark-gray; color: black; //white; width: 100%; } .propertiesButtons-icon { margin-left: 8px; } .propertiesButtons { position: relative; width: 100%; // margin-top: 3px; // // grid-column: 1/4; // width: 100%; // height: auto; // display: flex; // // flex-direction: row; // // flex-wrap: wrap; // padding-bottom: 5.5px; } .onClickFlyout-editScript { cursor: pointer; text-align: center; margin-top: 5px; border: 0.5px solid global.$medium-gray; background-color: rgb(230, 230, 230); border-radius: 5px; padding: 4px; } .propertiesButtons-button { pointer-events: auto; padding-right: 8px; //5px; width: 100%; //width: 25px; border-radius: 5px; margin-right: 20px; margin-bottom: 8px; } .propertiesButton-dropdownList { width: 100%; height: fit-content; top: 100%; z-index: 21; .list-item { cursor: pointer; color: global.$black; width: 100%; height: 25px; font-weight: 400; display: flex; justify-content: left; align-items: center; padding-left: 5px; } .list-item:hover { background-color: lightgrey; } } .propertiesButtons-label { text-transform: uppercase; margin-left: 8px; // margin-right: 50 px; } // .propertiesButtons-title { // background: pink; //$dark-gray; // color: $white; // font-size: 6px; // width: 37px; // padding: 3px; // height: 12px; // border-radius: 7px; // text-transform: uppercase; // text-align: center; // margin-top: -4px; // } .propertiesButtons-linker { height: 25px; width: 29px; text-align: center; border-radius: 6px; pointer-events: auto; background-color: #121721; color: #fcfbf7; transition: 0.2s ease all; margin-right: 5px; padding-top: 5px; margin-left: 4px; &:hover { filter: brightness(0.85); cursor: pointer; } } @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } } @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes shadow-pulse { 0% { box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.8); } 100% { box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); } }