diff options
author | Manuel Jiménez Friaza <mjfriaza@openmailbox.org> | 2019-05-19 13:25:00 +0200 |
---|---|---|
committer | Manuel Jiménez Friaza <mjfriaza@openmailbox.org> | 2019-05-19 13:25:00 +0200 |
commit | 429140df97a2c273fba6974147ac2e48e7688263 (patch) | |
tree | 2e337542da1b0f4c9c383dfeb8a7d9eb63990a72 /view/css | |
parent | f92d2e3f7c6573bd7bab04223c7e28662605c6d8 (diff) | |
parent | af2b263bc74b16601ec7c123a58f0549613aed27 (diff) | |
download | volse-hubzilla-429140df97a2c273fba6974147ac2e48e7688263.tar.gz volse-hubzilla-429140df97a2c273fba6974147ac2e48e7688263.tar.bz2 volse-hubzilla-429140df97a2c273fba6974147ac2e48e7688263.zip |
Merge remote-tracking branch 'upstream/dev' into dev
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/bootstrap-red.css | 4 | ||||
-rw-r--r-- | view/css/cdav_calendar.css | 21 |
2 files changed, 22 insertions, 3 deletions
diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index 3ae1d152c..d2daf0b8a 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -77,6 +77,10 @@ nav .dropdown-menu { } /* nav overrides end */ +.list-group-item:hover { + text-decoration: none; +} + .wall-item-tools .dropdown-menu { min-width: auto; } diff --git a/view/css/cdav_calendar.css b/view/css/cdav_calendar.css index d68278a63..da594b420 100644 --- a/view/css/cdav_calendar.css +++ b/view/css/cdav_calendar.css @@ -2,13 +2,18 @@ .fc th:first-child, .fc td:first-child { - border-left-width: 0px; + border-left-width: 0px; } .fc th:last-child, .fc td:last-child { - border-right-width: 0px; - border-bottom-width: 0px; + border-right-width: 0px; + border-bottom-width: 0px; +} + +main.fullscreen .fc th:last-child, +main.fullscreen .fc td:last-child { + border-bottom-width: 1px; } .fc-unthemed th, @@ -20,3 +25,13 @@ .fc-unthemed .fc-popover { border-color: #ccc !important; } + +.fc-list-view { + border-width: 0px; +} + +.bootstrap-tagsinput { + width: 100%; + padding: 6px 12px; +} + |