Spaces:
Runtime error
Runtime error
| /* | |
| * NOTE: the copious use of `important` is needed to overwrite | |
| * the default tooltip styling, and is required by the 3rd party | |
| * library being used, `react-tooltip` | |
| */ | |
| @import "../../css/colors.css"; | |
| @import "../../css/units.css"; | |
| @import "../../css/z-index.css"; | |
| .coming-soon { | |
| background-color: $data-primary ; | |
| border: 1px solid $ui-black-transparent ; | |
| border-radius: $form-radius ; | |
| box-shadow: 0 0 .5rem $ui-black-transparent-default ; | |
| padding: .75rem 1rem ; | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif ; | |
| font-size: 1rem ; | |
| line-height: 1.25rem ; | |
| z-index: $z-index-tooltip ; | |
| } | |
| .coming-soon:after { | |
| content: ""; | |
| border-top: 1px solid $ui-black-transparent ; | |
| border-left: 0 ; | |
| border-bottom: 0 ; | |
| border-right: 1px solid $ui-black-transparent ; | |
| border-radius: $form-radius; | |
| background-color: $data-primary ; | |
| height: 1rem ; | |
| width: 1rem ; | |
| } | |
| .show, | |
| .show:before, | |
| .show:after { | |
| opacity: 1 ; | |
| } | |
| .left:after { | |
| margin-top: -.5rem ; | |
| right: -.5rem ; | |
| transform: rotate(45deg) ; | |
| } | |
| .right:after { | |
| margin-top: -.5rem ; | |
| left: -.5rem ; | |
| transform: rotate(-135deg) ; | |
| } | |
| .top:after { | |
| margin-right: -.5rem ; | |
| bottom: -.5rem ; | |
| transform: rotate(135deg) ; | |
| } | |
| .bottom:after { | |
| margin-left: -.5rem ; | |
| top: -.5rem ; | |
| transform: rotate(-45deg) ; | |
| } | |
| .coming-soon-image { | |
| width: 1.25rem; | |
| height: 1.25rem; | |
| vertical-align: middle; | |
| } | |
| [dir="ltr"] .coming-soon-image { | |
| margin-left: .125rem; | |
| } | |
| [dir="rtl"] .coming-soon-image { | |
| margin-right: .125rem; | |
| } | |