diff --git a/plusfuture/css/blockmode.css b/plusfuture/css/blockmode.css index cc1db20..f880537 100644 --- a/plusfuture/css/blockmode.css +++ b/plusfuture/css/blockmode.css @@ -13,3 +13,4 @@ margin-left: 5px; margin-bottom: 35px; } + diff --git a/plusfuture/css/style.css b/plusfuture/css/style.css index 0150be2..0446170 100644 --- a/plusfuture/css/style.css +++ b/plusfuture/css/style.css @@ -1108,7 +1108,6 @@ img.mail-conv-sender-photo { border-top-right-radius: 0px; border-top-left-radius: 0px; } - .hide-comments-outer { background-color: $comment_item_colour; border-top-color: #ccc; @@ -1125,7 +1124,7 @@ img.mail-conv-sender-photo { .wall-item-comment-wrapper { padding: 7px 10px; - background-color: $item_colour; + background-color: $comment_item_colour; border-radius: 0px; border-bottom-right-radius: $radius; border-bottom-left-radius: $radius; @@ -1141,8 +1140,8 @@ img.mail-conv-sender-photo { width: $top_photo; height: $top_photo; border: none; - border-radius: $radius; - box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444; + border-radius: 50px; + filter: drop-shadow(2px 2px 2px rgba(75, 75, 75, 0.635)); } .comment .wall-item-photo { @@ -1186,9 +1185,9 @@ img.mail-conv-sender-photo { /* widgets */ .widget { - background-color: rgba(254,254,254,.5); - border: 1px solid rgba(254,254,254,.5); + background-color: rgba(254,254,254); border-radius: $radius; + filter: drop-shadow(0px 0px 2px rgba(75, 75, 75, 0.678)); } #note-text { @@ -1485,6 +1484,7 @@ blockquote { .navbar { z-index:1030; + filter: drop-shadow(0px 0px 3px rgba(75, 75, 75, 0.678)); } .navbar-dark .navbar-nav .nav-link, @@ -1794,3 +1794,22 @@ dl.bb-dl > dd > li { .hover-fx-show:hover .hover-fx-hide { opacity: 1; } + + +/*testarea*/ +.wall-item-outside-wrapper a { + font-size: 1.3rem; +} +.comment a { + font-size: 0.9rem; +} +.wall-item-name-link a { + font-size: 0.9rem; +} +.toplevel_item { + filter: drop-shadow(0px 0px 5px rgba(75, 75, 75, 0.48)); + transition: all 300ms 0s; +} +.toplevel_item:hover { + filter: drop-shadow(0px 0px 7px rgba(75, 75, 75, 0.678)); +} \ No newline at end of file diff --git a/plusfuture/php/style.php b/plusfuture/php/style.php index 3d18259..7742e35 100644 --- a/plusfuture/php/style.php +++ b/plusfuture/php/style.php @@ -89,7 +89,7 @@ if (! $background_image) if (! $item_colour) $item_colour = 'rgb(255,255,255)'; if (! $comment_item_colour) - $comment_item_colour = 'rgb(255,255,255)'; + $comment_item_colour = 'rgb(246,246,246)'; if (! $item_opacity) $item_opacity = '1'; if (! $font_size) @@ -103,10 +103,11 @@ if (! $shadow) if (! $converse_width) $converse_width = '790'; if(! $top_photo) - $top_photo = '2.3rem'; + $top_photo = '3rem'; if(! $reply_photo) $reply_photo = '2.3rem'; - +if(! $shadowpx) + $shadowpx = '3px'; // Apply the settings if(file_exists('view/theme/plusfuture/css/style.css')) { diff --git a/plusfuture/schema/Focus-Light.php b/plusfuture/schema/Focus-Light.php index d144e7c..14ee130 100644 --- a/plusfuture/schema/Focus-Light.php +++ b/plusfuture/schema/Focus-Light.php @@ -7,6 +7,6 @@ if (! $nav_active_icon_colour) $nav_active_icon_colour = "rgba(0, 0, 0, 0.7)"; if (! $radius) - $radius = "50px"; + $radius = "4px"; if (! $banner_colour) $banner_colour = "rgba(0, 0, 0, 0.7)";