From: Alexander Ebert Date: Mon, 10 Jul 2023 10:04:39 +0000 (+0200) Subject: Merge branch '5.4' into 5.5 X-Git-Tag: 6.0.0_Alpha_5~10^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=06036fde64f603520e036dc302e43a5c8c70b492;p=GitHub%2FWoltLab%2FWCF.git Merge branch '5.4' into 5.5 --- 06036fde64f603520e036dc302e43a5c8c70b492 diff --cc wcfsetup/install/files/acp/style/layout.scss index 2238e1ad3d,5401e24fe9..6dadb8d439 --- a/wcfsetup/install/files/acp/style/layout.scss +++ b/wcfsetup/install/files/acp/style/layout.scss @@@ -606,61 -577,10 +606,69 @@@ $wcfAcpSubMenuWidth: 300px } } +.contentItemList.packageUpdateList { + --minimum-column-width: 400px; + + display: grid; + gap: 20px; + grid-template-columns: repeat(auto-fill, minmax(var(--minimum-column-width), 1fr)); + margin: 0; + + .contentItem { + margin: 0; + } + + .contentItemDescription { + margin-top: 0; + } + + @include screen-sm { + --minimum-column-width: 45%; + } + + @include screen-xs { + --minimum-column-width: 100%; + } +} + +.packageUpdateAvailable { + font-size: 18px; + margin-top: 10px; +} + +.packageUpdateNewVersion { + color: $wcfContentText; + font-weight: 600; +} + +@keyframes hightlightOptionLabel { + 0% { + transform: scale(1); + } + 50% { + transform: scale(1.1); + } + 100% { + transform: scale(1); + } +} + +.hightlightOptionLabel { + animation: hightlightOptionLabel 0.48s ease-in-out; + display: inline-block; +} + +@include screen-md-down { + .dropdownMenuUserPanel { + left: auto !important; + right: 0 !important; + } +} ++ + #woltlab_newsfeed { + border: 1px solid $wcfContentBorderInner; + border-radius: 4px; + height: 100vh; + max-width: 100%; + width: 600px; + }