diff --git a/src/components/quick-actions/quick-actions.vue b/src/components/quick-actions/quick-actions.vue index ae1814a30..5deb2c22f 100644 --- a/src/components/quick-actions/quick-actions.vue +++ b/src/components/quick-actions/quick-actions.vue @@ -1,34 +1,51 @@ diff --git a/src/styles/components/_all.scss b/src/styles/components/_all.scss index 4a1720de2..b870f9648 100644 --- a/src/styles/components/_all.scss +++ b/src/styles/components/_all.scss @@ -23,3 +23,4 @@ @import 'api-config'; @import 'datepicker'; @import 'notifications'; +@import 'quick-actions'; diff --git a/src/styles/components/quick-actions.scss b/src/styles/components/quick-actions.scss new file mode 100644 index 000000000..c403c3d89 --- /dev/null +++ b/src/styles/components/quick-actions.scss @@ -0,0 +1,53 @@ +.quick-actions { + + .modal-content { + top: 6rem !important; + transform: translate(-50%, -3rem) !important; + } + + .input { + border: 0; + font-size: 1.5rem; + } + + .results { + text-align: left; + width: 100%; + color: $grey-800; + + .result { + &-title { + background: $grey-50; + padding: .5rem; + display: block; + font-size: .75rem; + } + + &-items { + button { + font-size: .9rem; + width: 100%; + background: transparent; + text-align: left; + box-shadow: none; + border-radius: 0; + text-transform: none; + font-family: $family-sans-serif; + font-weight: normal; + padding: .5rem .75rem; + border: none; + cursor: pointer; + + &:focus, &:hover { + background: $grey-50; + box-shadow: none !important; + } + + &:active { + background: $grey-100; + } + } + } + } + } +} \ No newline at end of file