Compare commits

...

15 Commits
8.8 ... 8.8.2

Author SHA1 Message Date
Mario
f62d16d274 Merge branch 'dev' 2023-12-06 11:27:54 +00:00
Mario
f175712d4b typo 2023-12-06 11:27:35 +00:00
Mario
5f942d78e6 Merge branch 'dev' 2023-12-06 11:23:21 +00:00
Mario
538c8885ad changelog 2023-12-06 11:23:02 +00:00
Mario
c8158c3d62 vesrion 8.8.2 2023-12-06 11:14:00 +00:00
Mario
1f4762060f Merge branch 'dev' 2023-12-06 11:12:25 +00:00
Mario
81c3682781 more issue #1820 2023-12-06 09:47:13 +00:00
Mario
2e6e1fdd55 css fixes 2023-12-04 09:28:16 +00:00
Mario
1a09cd560b require acl_selectors.php - fix issue #1820 2023-11-30 08:02:33 +00:00
Mario
8c9d2bc6f6 Merge branch 'dev' 2023-11-27 08:48:47 +00:00
Mario
78ad5ca713 changelog 2023-11-27 08:48:23 +00:00
Mario
43c2e71b25 Merge branch 'dev' 2023-11-27 08:45:19 +00:00
Mario
5b9f32fade Merge branch 'dev' into 'dev'
Update doubleleft.css and doubleright.css according to v.8.8 default.css

See merge request hubzilla/core!2074
2023-11-27 08:44:25 +00:00
Mario
76a1a6da34 version 8.8.1 2023-11-27 08:42:09 +00:00
zlaxy
a2b0abc90d Update doubleleft.css and doubleright.css according to v.8.8 default.css 2023-11-27 10:50:31 +03:00
5 changed files with 25 additions and 9 deletions

View File

@@ -1,3 +1,14 @@
Hubzilla 8.8.2 (2023-12-06)
- Fix missing includes - issue #1820
- Addon logger_stats: mproved performance reading big log files
Hubzilla 8.8.1 (2023-11-27)
- Fix error in cards addon
- Fix error in articles addon
- Fix double left and right template css
Hubzilla 8.8 (2023-11-25)
- Add additional observer and channel info for nav templates
- Do not provide confidential channel info for templates
@@ -30,7 +41,6 @@ Hubzilla 8.8 (2023-11-25)
- Transparent background for colorbox controls icons
- Use body background color for colorboxes in redbasic
Bugfixes
- Remove fragment from actor urls
- HTTPsig case insensitive digest algorithm
@@ -45,7 +55,6 @@ Hubzilla 8.8 (2023-11-25)
- Fix sabre/dav caldav php warnings
- Fix public stream comments/reactions not allowed if item_fetched is set
Addons
- Superblock: fix php warnings
- Pubcrawl: restrict mod ap_probe to admin and add checkbox for signed requests

View File

@@ -58,9 +58,11 @@ require_once('include/hubloc.php');
require_once('include/attach.php');
require_once('include/bbcode.php');
require_once('include/items.php');
require_once('include/conversation.php');
require_once('include/acl_selectors.php');
define('PLATFORM_NAME', 'hubzilla');
define('STD_VERSION', '8.8');
define('STD_VERSION', '8.8.2');
define('ZOT_REVISION', '6.0');
define('DB_UPDATE_VERSION', 1259);

View File

@@ -19,13 +19,15 @@ main {
#region_1 {
position: relative;
order: 1;
padding: 4.5rem 7px 0px 7px;
padding: 0 7px 0 7px;
width: 25%;
min-width: 300px;
}
#region_2 {
position: relative;
flex: 1;
order: 2;
padding: 4.5rem 7px 200px 7px;
padding: 0 7px 200px 7px;
min-width: 0;
}

View File

@@ -20,12 +20,14 @@ main {
position: relative;
flex: 1;
order: 1;
padding: 4.5rem 7px 200px 7px;
padding: 0 7px 200px 7px;
min-width: 0;
}
#region_2 {
position: relative;
order: 2;
padding: 4.5rem 7px 0px 7px;
padding: 0 7px 0 7px;
width: 25%;
min-width: 300px;
}

View File

@@ -1487,6 +1487,7 @@ dl.bb-dl > dd > li {
.onoffswitch-inner {
display: block; width: 200%; margin-left: -100%;
color: var(--bs-secondary-color);
transition: margin 0.19s ease-in-out;
}
@@ -1498,15 +1499,15 @@ dl.bb-dl > dd > li {
.onoffswitch-inner:before {
content: attr(data-on);
padding-right: 21px;
background-color: var(--bs-secondary-bg);
text-align: right;
background-color: var(--bs-tertiary-bg);
}
.onoffswitch-inner:after {
content: attr(data-off);
padding-left: 21px;
background-color: var(--bs-secondary-bg);
text-align: left;
background-color: var(--bs-tertiary-bg);
}
.onoffswitch-switch {