}
}
+.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;
+ }