github.com/stampzilla/stampzilla-go@v2.0.0-rc9+incompatible/nodes/stampzilla-server/web/src/routes/automation/components/SavedStatePicker.scss (about) 1 .saved-state-picker { 2 background: #f0f0f0; 3 4 font-weight: 400; 5 color: #212529; 6 vertical-align: middle; 7 user-select: none; 8 border: 1px solid transparent; 9 padding: 0.375rem 0.75rem; 10 font-size: 1rem; 11 line-height: 1.5; 12 border-radius: 0.25rem; 13 } 14 15 .saved-state-modal { 16 .modal-content { 17 border-top: none rgb(222, 226, 230) !important; 18 border-right-color: rgb(222, 226, 230) !important; 19 border-bottom-color: rgb(222, 226, 230) !important; 20 border-left-color: rgb(222, 226, 230) !important; 21 } 22 } 23 24 25 26 27 .ReactModal__Overlay { 28 -webkit-perspective: 600; 29 perspective: 600; 30 opacity: 0; 31 overflow-x: hidden; 32 overflow-y: auto; 33 background-color: rgba(0, 0, 0, 0.5); 34 z-index: 20000; 35 } 36 37 .ReactModal__Overlay--after-open { 38 opacity: 1; 39 transition: opacity 150ms ease-out; 40 } 41 42 .ReactModal__Content { 43 -webkit-transform: translateY(30px); 44 transform: translateY(30px); 45 z-index: 20000; 46 47 .modal-content{ 48 .nav-link { 49 cursor:pointer; 50 outline: none; 51 } 52 } 53 } 54 55 .ReactModal__Content--after-open { 56 -webkit-transform: translateY(0); 57 transform: translateY(0); 58 transition: all 150ms ease-in; 59 } 60 61 .ReactModal__Overlay--before-close { 62 opacity: 0; 63 } 64 65 .ReactModal__Content--before-close { 66 -webkit-transform: translateY(30px); 67 transform: translateY(30px); 68 transition: all 150ms ease-in; 69 } 70 71 .ReactModal__Content.modal-dialog { 72 border: none; 73 background-color: transparent; 74 }