diff options
author | Mario Vavti <mario@mariovavti.com> | 2024-10-18 20:19:36 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2024-10-18 20:19:36 +0200 |
commit | 20db45c815fa57f6713d6378485092a0a11332dc (patch) | |
tree | eaa016a100aebd1821eefcc7a24df2b0274f1bef | |
parent | 4acdb8fb102fb20f2bddc9113ea292836ce2daa4 (diff) | |
parent | f4495fd441a06c2ee58dd5073348627803d5ccb3 (diff) | |
download | volse-hubzilla-20db45c815fa57f6713d6378485092a0a11332dc.tar.gz volse-hubzilla-20db45c815fa57f6713d6378485092a0a11332dc.tar.bz2 volse-hubzilla-20db45c815fa57f6713d6378485092a0a11332dc.zip |
Merge branch 'dev' into containers
-rw-r--r-- | view/theme/redbasic/css/style.css | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 6e6e19532..12f5e1bad 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1363,12 +1363,16 @@ dl.bb-dl > dd > li { } .bootstrap-tagsinput .tag:before { - /* Copied from fa-asterisk, is there a better way to do it? */ - font-family: ForkAwesome; - font-weight: normal; - font-style: normal; - text-decoration: inherit; - content:"\f069 "; + font-family: bootstrap-icons; + font-size: 0.5rem; + content: "\F151"; + margin-right: .25rem; +} + +.bootstrap-tagsinput .tag [data-role="remove"]:after { + font-family: bootstrap-icons; + font-size: 0.5rem; + content: "\F659"; } /* Modified original CSS to match input in Redbasic */ |