Skip to content

Commit

Permalink
beta 0.1.0
Browse files Browse the repository at this point in the history
Activity page updated
  • Loading branch information
AikoMidori committed Oct 14, 2020
1 parent c7fe9bc commit 1ef809b
Show file tree
Hide file tree
Showing 6 changed files with 160 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@use 'store/featured';
@use 'user/activity';
@use 'user/profile';
@use 'community/groups';
@use 'community/groups';
@use 'contributors/userAvatars';
30 changes: 30 additions & 0 deletions contributors/images.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/* ACTIVITY PAGE IMAGES */
/* gamelogo header background */
.gameLogo {
background: transparent !important;
}

/* gamelogo header image */
.gameLogo img {
border-radius: 10px !important;
}

/* group announcement content image */
.blotter_group_announcement_content img {
border-radius: 10px !important;
}

/* game purchase images */
.blotter_gamepurchase_content img {
border-radius: 10px !important;
}

/* screenshot gallery images */
.blotter_screenshot_gallery_image img, .blotter_screenshot_gallery_image_selected img {
border-radius: 10px !important;
}

/* group avatar image */
.avatarMedium img {
border-radius: 10px !important;
}
25 changes: 25 additions & 0 deletions contributors/userAvatars.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/* ACTIVITY PAGE PROFILES */
/* avatar status */
.playerAvatar, .friend_block_holder .friend_block_avatar, .friend_activity .friend_block_avatar {
border-radius: 50% !important;
}

/* avatar image */
.playerAvatar img, .friend_block_holder .friend_block_avatar img, .friend_activity .friend_block_avatar img {
border-radius: 50% !important;
}

/* avatar small status */
.blotter_playerAvatarSmall {
border-radius: 50% !important;
}

/* avatar small image */
.blotter_playerAvatarSmall img {
border-radius: 50% !important;
}

/* removes new avatar picture frame */
.playerAvatar .profile_avatar_frame > img {
display: none !important;
}
82 changes: 80 additions & 2 deletions css/webkit.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/webkit.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 22 additions & 2 deletions user/activity.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,21 @@
}

/* Thread comment placeholder */
.commentthread_textarea::-webkit-input-placeholder{
.commentthread_textarea::-webkit-input-placeholder,
.commentthread_textarea::-moz-input-placeholder {
font-style: normal !important;
font-weight: bold !important;
color: #ffffff99 !important;
}

/* Thread comment placeholder */
input.gray_bevel::-webkit-input-placeholder, textarea.gray_bevel::-webkit-input-placeholder, .gray_bevel textarea::-webkit-input-placeholder, .gray_bevel input::-webkit-input-placeholder,
input.gray_bevel:-moz-placeholder, textarea.gray_bevel:-moz-placeholder, .gray_bevel textarea:-moz-placeholder, .gray_bevel input:-moz-placeholder {
font-style: normal !important;
font-weight: bold !important;
color: #ffffff99 !important;
}

/* Right column background */
#friendactivity_right_column .box,
.friends_add_block,
Expand All @@ -90,6 +99,12 @@
/* Forum topics textbox entry background */
input.gray_bevel, textarea.gray_bevel, .gray_bevel, .commentthread_comment_edit_textarea_ctn {
border-radius: 10px !important;
background: #2e2e2f !important;
}

/* Forum topics view all comments button positioning */
.blotter_viewallcomments_container {
margin: 0px 0px 12px 0px !important;
}

/* Forum topics reply text background */
Expand All @@ -99,7 +114,12 @@ input.gray_bevel, textarea.gray_bevel, .gray_bevel, .commentthread_comment_edit_

/* Forum topics comments background */
.forumtopic_comments .commentthread_comment {
margin-left: 10px !important;
margin-left: 12px !important;
border-radius: 10px !important;
background-color: #1e1e1f !important;
}

/* Footer background */
body.flat_page #footer {
background: var(--trans) !important;
}

0 comments on commit 1ef809b

Please sign in to comment.