github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/ui/app/styles/components/popover-menu.scss (about) 1 .popover-content { 2 border: 1px solid $grey-blue; 3 box-shadow: 0 6px 8px -2px rgba($black, 0.05), 0 8px 4px -4px rgba($black, 0.1); 4 margin-right: -$radius; 5 margin-top: -1px; 6 border-radius: $radius; 7 padding: 0.5em 1em; 8 width: 200px; 9 z-index: $z-popover; 10 } 11 12 .popover-actions { 13 margin: 1rem -1rem -0.5rem -1rem; 14 border-top: 1px solid $grey-lighter; 15 display: flex; 16 17 .popover-action { 18 border: none; 19 background: transparent; 20 height: 2.75em; 21 width: 100%; 22 margin: 4px; 23 border-radius: $radius; 24 font-size: 1rem; 25 font-weight: $weight-bold; 26 align-items: center; 27 cursor: pointer; 28 29 &:hover { 30 background: $white-ter; 31 } 32 33 &:focus { 34 background: $white-ter; 35 box-shadow: inset 0 0 0 2px rgba($blue, 0.5); 36 outline: none; 37 } 38 39 @each $name, $pair in $colors { 40 $color: nth($pair, 1); 41 42 &.is-#{$name} { 43 color: $color; 44 } 45 } 46 47 // Override is-primary, which is normally green, to be blue 48 &.is-primary { 49 color: $blue; 50 } 51 } 52 }