// Variables @import "../variables"; /*|--------------------------------------------|*/ /*| FAB |*/ /*|--------------------------------------------|*/ .btn-fab { position: fixed; bottom: 10px; right: 10px; } .btn-fab button { cursor: pointer; width: 38px; height: 38px; border-radius: 30px; background-color: $primary; border: none; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4); font-size: 20px; color: white; -webkit-transition: 0.2s ease-out; -moz-transition: 0.2s ease-out; transition: 0.2s ease-out; } .btn-fab button:focus { outline: none; } .btn-fab button#mainFab { position: absolute; width: 50px; height: 50px; border-radius: 30px; background-color: $primary; right: 0; bottom: 0; z-index: 20; } .btn-fab button:active, .btn-fab button#mainFab:active { background-color: $primarycc; width: 47px; height: 47px; } .btn-fab ul { position: absolute; bottom: 0; right: 0; padding: 0; padding-right: 5px; margin: 0; list-style: none; z-index: 10; -webkit-transition: 0.2s ease-out; -moz-transition: 0.2s ease-out; transition: 0.2s ease-out; } .btn-fab ul li { justify-content: flex-end; position: relative; margin-bottom: -10%; opacity: 0; visibility: hidden; -webkit-transition: 0.2s ease-out; -moz-transition: 0.2s ease-out; transition: 0.2s ease-out; } .btn-fab.showFab button#mainFab, .btn-fab.showFab button#mainFab { outline: none; background-color: $primarycc; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5); -ms-transform: rotate(45deg); /* IE 9 */ transform: rotate(45deg); } .btn-fab.showFab button#mainFab + ul, .btn-fab.showFab button#mainFab + ul { bottom: 52px; } .btn-fab.showFab button#mainFab + ul li, .btn-fab.showFab button#mainFab + ul li { margin-bottom: 10px; opacity: 1; visibility: visible; } /*|--------------------------------------------|*/ /*| FOLHA DE ESTILO BOTAO DE SALVAR |*/ /*|--------------------------------------------|*/ // #fabSalvar{} .fabSalvar { position: fixed; top: 10px; right: 10px; z-index: 1054; } .fabSalvar button { cursor: pointer; width: 38px; height: 38px; border-radius: 30px; background-color: $primary; border: none; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4); font-size: 20px; color: white; -webkit-transition: 0.2s ease-out; -moz-transition: 0.2s ease-out; transition: 0.2s ease-out; } .fabSalvar button:focus { outline: none; } .success button#mainFab{ background-color: $green!important; } .fabSalvar button#mainFab { width: 50px; height: 50px; border-radius: 30px; background-color: $primary; right: 0; top: 0; z-index: 20; } .fabSalvar button:active, .fabSalvar button#mainFab:active { background-color: $primarycc; width: 47px; height: 47px; } .fabSalvar.showFab button#mainFab, .fabSalvar.showFab button#mainFab { outline: none; background-color: $primarycc; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5); -ms-transform: rotate(45deg); /* IE 9 */ transform: rotate(45deg); }