diff options
author | Mario <mario@mariovavti.com> | 2023-01-25 14:05:20 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-01-25 14:05:20 +0000 |
commit | 32dcc28414a43b42e5da082b1781824ecac42bfb (patch) | |
tree | f301ca93b8c553f3f7da8ae1da9314a537cd3a2b /view | |
parent | ddae3eaf849b13cf4ef86c48c5e75967582c3276 (diff) | |
download | volse-hubzilla-32dcc28414a43b42e5da082b1781824ecac42bfb.tar.gz volse-hubzilla-32dcc28414a43b42e5da082b1781824ecac42bfb.tar.bz2 volse-hubzilla-32dcc28414a43b42e5da082b1781824ecac42bfb.zip |
calendar: fixes
Diffstat (limited to 'view')
-rw-r--r-- | view/css/cdav_calendar.css | 11 | ||||
-rw-r--r-- | view/theme/redbasic/css/style.css | 5 | ||||
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 2 | ||||
-rw-r--r-- | view/tpl/cdav_calendar.tpl | 2 |
4 files changed, 11 insertions, 9 deletions
diff --git a/view/css/cdav_calendar.css b/view/css/cdav_calendar.css index 8e1b31fa1..702b18bff 100644 --- a/view/css/cdav_calendar.css +++ b/view/css/cdav_calendar.css @@ -30,7 +30,14 @@ } .bootstrap-tagsinput { - width: 100%; - padding: 6px 12px; + border: 1px solid var(--bs-border-color) !important; margin-bottom: 0px !important; + border-radius: var(--bs-border-radius) !important; + background-color: var(--bs-body-bg) !important; + padding: 0 .75rem !important; + +} + +.bootstrap-tagsinput input { + min-width: 30% !important; } diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 4c991a724..721785529 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1551,6 +1551,7 @@ dl.bb-dl > dd > li { } .bootstrap-tagsinput { + width: 100%; padding: 0 .5rem; } @@ -1750,10 +1751,6 @@ dl.bb-dl > dd > li { opacity: 1; } -.bootstrap-tagsinput { - width: 100%; -} - .jg-entry img { border-radius: var(--bs-border-radius); } diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index f502b2538..ca27bb825 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -84,7 +84,7 @@ $(document).ready(function() { }); $("input[data-role=cat-tagsinput]").tagsinput({ - tagClass: 'badge rounded-pill bg-warning' + tagClass: 'badge rounded-pill bg-warning text-dark' }); $('a.disabled').click(function(e) { diff --git a/view/tpl/cdav_calendar.tpl b/view/tpl/cdav_calendar.tpl index 1eeab4478..edfa2a422 100644 --- a/view/tpl/cdav_calendar.tpl +++ b/view/tpl/cdav_calendar.tpl @@ -370,8 +370,6 @@ $(document).ready(function() { $('#event_submit').html('{{$update}}'); } - if(default_view === 'dayGridMonth'); - $('#id_dtstart_wrapper, #id_dtend_wrapper, #id_timezone_select_wrapper').hide(); }); function changeView(viewName) { |