(Created the Profiles.css MediaWiki page.) |
(Updated.) |
||
Line 56: | Line 56: | ||
color: var(--theme-page-text-color) !important; |
color: var(--theme-page-text-color) !important; |
||
} |
} |
||
.theme-fandomdesktop-light #userProfileApp .user-profile-navigation__link.is-active, |
.theme-fandomdesktop-light #userProfileApp .user-profile-navigation__link.is-active, |
||
.theme-fandomdesktop-light #userProfileApp .user-profile-navigation__link.is-active a { |
.theme-fandomdesktop-light #userProfileApp .user-profile-navigation__link.is-active a { |
||
Line 66: | Line 65: | ||
.theme-fandomdesktop-light #userProfileApp .user-identity-social__icon { |
.theme-fandomdesktop-light #userProfileApp .user-identity-social__icon { |
||
color: var(--theme-link-color) !important; |
color: var(--theme-link-color) !important; |
||
} |
|||
/* Social Tooltip Fixes */ |
|||
/** The Backgrounds Needs to be Lighter for the Text to be Readable **/ |
|||
.theme-fandomdesktop-light #userProfileApp .user-identity-social__icon-tooltip { |
|||
background-color: #E6E6E6 !important; |
|||
border: 1px solid #3A3A3A !important; |
|||
} |
|||
/** Sets the Background and Border to a Lighter Colour and Sets Text Colour to Black (#000) **/ |
|||
.theme-fandomdesktop-light.skin-fandomdesktop #userProfileApp .user-identity-social__icon-tooltip { |
|||
background-color: #E6E6E6; |
|||
border-color: #3A3A3A; |
|||
color: #000; |
|||
} |
} |
||
Line 132: | Line 117: | ||
color: var(--theme-page-text-color) !important; |
color: var(--theme-page-text-color) !important; |
||
} |
} |
||
.theme-fandomdesktop-dark #userProfileApp .user-profile-navigation__link.is-active, |
.theme-fandomdesktop-dark #userProfileApp .user-profile-navigation__link.is-active, |
||
.theme-fandomdesktop-dark #userProfileApp .user-profile-navigation__link.is-active a { |
.theme-fandomdesktop-dark #userProfileApp .user-profile-navigation__link.is-active a { |
||
Line 142: | Line 126: | ||
.theme-fandomdesktop-dark #userProfileApp .user-identity-social__icon { |
.theme-fandomdesktop-dark #userProfileApp .user-identity-social__icon { |
||
color: var(--theme-link-color) !important; |
color: var(--theme-link-color) !important; |
||
} |
|||
/* Social Tooltip Fixes */ |
|||
/** The Backgrounds Needs to be Lighter for the Text to be Readable **/ |
|||
.theme-fandomdesktop-dark #userProfileApp .user-identity-social__icon-tooltip { |
|||
background-color: #3A3A3A !important; |
|||
border: 1px solid #E6E6E6 !important; |
|||
} |
|||
/** Sets the Background and Border to a Lighter Colour and Sets Text Colour to Black (#000) **/ |
|||
.theme-fandomdesktop-dark.skin-fandomdesktop #userProfileApp .user-identity-social__icon-tooltip { |
|||
background-color: #3A3A3A; |
|||
border-color: #E6E6E6; |
|||
color: #FFF; |
|||
} |
} |
Revision as of 04:58, 19 September 2022
/* User Profile Customisation */
/* 1. - Light Theme CSS */
/* 2. - Dark Theme CSS */
/** Author: @Aeywoo **/
@import url("/load.php?mode=articles&articles=MediaWiki:Staff.css&only=styles");
@import url("/load.php?mode=articles&articles=u:dev:MediaWiki:Highlight.css&only=styles");
/* Light Theme CSS */
/** Fixes contrasting issues with the background of messages **/
.theme-fandomdesktop-light #userProfileApp {
background-color: transparent !important; /* This basically nulls the background-color entry */
}
/** Makes the dot separating the Users name and the date sent bigger and further apart **/
.theme-fandomdesktop-light .EntityHeader_middot__2f4XC {
padding: 0 8px;
font-size: 20px;
}
/* Colour Defaults */
/** Sets H1 to Default Colour & Font **/
.theme-fandomdesktop-light #userProfileApp .user-identity-header__attributes > h1 {
color: #3A3A3A;
font-size: 28px;
font-family: rubik,helvetica,arial,sans-serif;
/* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; */
}
/* Sets H2 to Default Colour & Font */
.theme-fandomdesktop-light #userProfileApp .user-identity-header__attributes > h2 {
color: #3A3A3A;
font-family: rubik,helvetica,arial,sans-serif;
/* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; */
}
/* Sets H2 Span to Default Colour & Font */
.theme-fandomdesktop-light #userProfileApp .user-identity-header__attributes > h2 span {
color: #3A3A3A;
font-family: rubik,helvetica,arial,sans-serif;
/* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; */
}
/* Sets User Edit Counter to Default Colour & Font Weight Since $href= will override it's predefined colour */
.theme-fandomdesktop-light #userProfileApp ul.user-identity-stats a {
color: var(--theme-page-text-color) !important;
font-weight: normal !important;
}
/* Sets the default font-weight for the User Name */
.theme-fandomdesktop-light.skin-fandomdesktop .page-header__title {
font-weight: normal;
}
/* Sets Navigation Links to Default Colour Since $href= will override it's predefined colour */
.theme-fandomdesktop-light #userProfileApp .user-profile-navigation__link a {
color: var(--theme-page-text-color) !important;
}
.theme-fandomdesktop-light #userProfileApp .user-profile-navigation__link.is-active,
.theme-fandomdesktop-light #userProfileApp .user-profile-navigation__link.is-active a {
border-bottom-color: var(--theme-page-text-color) !important;
color: var(--theme-page-text-color) !important;
}
/* Sets Social Icons to Default Colour Since href$= could interfere with it's preset colour */
.theme-fandomdesktop-light #userProfileApp .user-identity-social__icon {
color: var(--theme-link-color) !important;
}
/* Dark Theme CSS */
/** Fixes contrasting issues with the background of messages **/
.theme-fandomdesktop-dark #userProfileApp {
background-color: transparent !important; /* This basically nulls the background-color entry */
}
/** Makes the dot separating the Users name and the date sent bigger and further apart **/
.theme-fandomdesktop-dark .EntityHeader_middot__2f4XC {
padding: 0 8px;
font-size: 20px;
}
/* Colour Defaults */
/** Sets H1 to Default Colour & Font **/
.theme-fandomdesktop-dark #userProfileApp .user-identity-header__attributes > h1 {
color: #E6E6E6;
font-size: 28px;
font-family: rubik,helvetica,arial,sans-serif;
/* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; */
}
/* Sets H2 to Default Colour & Font */
.theme-fandomdesktop-dark #userProfileApp .user-identity-header__attributes > h2 {
color: #E6E6E6;
font-family: rubik,helvetica,arial,sans-serif;
/* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; */
}
/* Sets H2 Span to Default Colour & Font */
.theme-fandomdesktop-dark #userProfileApp .user-identity-header__attributes > h2 span {
color: #E6E6E6;
font-family: rubik,helvetica,arial,sans-serif;
/* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; */
}
/* Sets User Edit Counter to Default Colour & Font Weight Since $href= will override it's predefined colour */
.theme-fandomdesktop-dark #userProfileApp ul.user-identity-stats a {
color: var(--theme-page-text-color) !important;
font-weight: normal !important;
}
/* Sets the default font-weight for the User Name */
.theme-fandomdesktop-dark.skin-fandomdesktop .page-header__title {
font-weight: normal;
}
/* Sets Navigation Links to Default Colour Since $href= will override it's predefined colour */
.theme-fandomdesktop-dark #userProfileApp .user-profile-navigation__link a {
color: var(--theme-page-text-color) !important;
}
.theme-fandomdesktop-dark #userProfileApp .user-profile-navigation__link.is-active,
.theme-fandomdesktop-dark #userProfileApp .user-profile-navigation__link.is-active a {
border-bottom-color: var(--theme-page-text-color) !important;
color: var(--theme-page-text-color) !important;
}
/* Sets Social Icons to Default Colour Since href$= could interfere with it's preset colour */
.theme-fandomdesktop-dark #userProfileApp .user-identity-social__icon {
color: var(--theme-link-color) !important;
}