aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2019-06-18 19:17:37 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2019-06-18 19:17:37 +0000
commit69eff65130170c0cd8fffda45b952d3bec49c218 (patch)
treec389a9fb5de43649e46335783f5c244d04100a5c /src/App.scss
parentc0c012ccf9114fb5740dbaf41baa09c0d0c41ebc (diff)
parent46e012206732f331a901eb1c4b90bab14d68d095 (diff)
Merge branch 'refactor-emoji-input' into 'develop'
EmojiInput refactoring Closes #565 See merge request pleroma/pleroma-fe!824
Diffstat (limited to 'src/App.scss')
-rw-r--r--src/App.scss51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/App.scss b/src/App.scss
index 284fa58b..1591f1da 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -808,54 +808,3 @@ nav {
.btn.btn-default {
min-height: 28px;
}
-
-.autocomplete {
- &-panel {
- position: relative;
-
- &-body {
- margin: 0 0.5em 0 0.5em;
- border-radius: $fallback--tooltipRadius;
- border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
- position: absolute;
- z-index: 1;
- box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
- // this doesn't match original but i don't care, making it uniform.
- box-shadow: var(--popupShadow);
- min-width: 75%;
- background: $fallback--bg;
- background: var(--bg, $fallback--bg);
- color: $fallback--lightText;
- color: var(--lightText, $fallback--lightText);
- }
- }
-
- &-item {
- cursor: pointer;
- padding: 0.2em 0.4em 0.2em 0.4em;
- border-bottom: 1px solid rgba(0, 0, 0, 0.4);
- display: flex;
-
- img {
- width: 24px;
- height: 24px;
- object-fit: contain;
- }
-
- span {
- line-height: 24px;
- margin: 0 0.1em 0 0.2em;
- }
-
- small {
- margin-left: .5em;
- color: $fallback--faint;
- color: var(--faint, $fallback--faint);
- }
-
- &.highlighted {
- background-color: $fallback--fg;
- background-color: var(--lightBg, $fallback--fg);
- }
- }
-}