Tüm .config dosyaları ilk yedekleme
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
/* These styles are copied from Steam's account.css for mobile view */
|
||||
table.account_table {
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
table.account_table td {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
table.account_table th.license_date_col,
|
||||
table.account_table td.license_date_col {
|
||||
width: 7em;
|
||||
}
|
||||
|
||||
table.account_table th.license_acquisition_col,
|
||||
table.account_table td.license_acquisition_col {
|
||||
width: 8em;
|
||||
}
|
||||
|
||||
/* - */
|
||||
|
||||
body:not(.steamdb_account_table_loaded) .account_table_ctn::after {
|
||||
display: block;
|
||||
padding: 16px;
|
||||
font-family: "Motiva Sans", Arial, Helvetica, sans-serif;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
font-style: italic;
|
||||
text-align: center;
|
||||
content: "Page is loading…";
|
||||
}
|
||||
|
||||
body:not(.steamdb_account_table_loaded) table.account_table {
|
||||
display: none;
|
||||
}
|
||||
|
||||
table.account_table th.steamdb_license_id_col,
|
||||
table.account_table td.steamdb_license_id_col {
|
||||
width: 5em;
|
||||
}
|
||||
|
||||
table.account_table td.steamdb_license_id_col a {
|
||||
color: inherit;
|
||||
}
|
||||
@@ -0,0 +1,429 @@
|
||||
/**
|
||||
* Make the scrollbar stable so the page doesn't shift when collapsing all elements
|
||||
*/
|
||||
html {
|
||||
scrollbar-gutter: stable;
|
||||
}
|
||||
|
||||
.achieveRow .compareImg {
|
||||
position: relative;
|
||||
font-size: 0; /* fix incorrect extra padding */
|
||||
}
|
||||
|
||||
.achieveRow:not(.unlocked) .compareImg::before {
|
||||
content: "";
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath fill='%2366C0F4' fill-rule='evenodd' d='M27 26v-2h-1.75l-1.5 2H27zm0 1a3.002 3.002 0 0 1-3.009 3H9.01A3.008 3.008 0 0 1 6 27h21zM6 26v-2h3.25l-1.5 2H6zm2.75 0l1.5-2h2l-1.5 2h-2zm3 0l1.5-2h2l-1.5 2h-2zm3 0l1.5-2h2l-1.5 2h-2zm3 0l1.5-2h2l-1.5 2h-2zm3 0l1.5-2h2l-1.5 2h-2zM27 23v-5.99c0-1.66-1.34-3.005-3-3.01v-3.5a7.5 7.5 0 1 0-15 0V14c-1.658.005-3 1.34-3 3.01V23h21zm-15-9v-3.5C12 8.01 14.015 6 16.5 6c2.48 0 4.5 2.015 4.5 4.5V14h-9z'/%3E%3C/svg%3E%0A");
|
||||
background-size: 24px 24px;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
top: 22px;
|
||||
}
|
||||
|
||||
#topSummaryAchievements .compareVal {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.steamdb_global_achievements_page {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.steamdb_global_achievements_page #compareAvatar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.steamdb_global_achievements_page #headerContent {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.steamdb_achievement_spoiler {
|
||||
filter: brightness(3) blur(6px);
|
||||
}
|
||||
|
||||
.steamdb_achievement_image.steamdb_achievement_spoiler {
|
||||
filter: grayscale(1) blur(6px);
|
||||
}
|
||||
|
||||
.steamdb_achievement:hover .steamdb_achievement_spoiler {
|
||||
filter: unset;
|
||||
}
|
||||
|
||||
.steamdb_stats_extra_tabs {
|
||||
float: right;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.steamdb_stats_extra_tabs_mobile {
|
||||
float: unset;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.steamdb_stats_extra_tabs > a {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.steamdb_stats_tab_icon {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
|
||||
.steamdb_achievements_group {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.steamdb_achievements_group > summary {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.steamdb_achievements_title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
color: #fff;
|
||||
margin-bottom: 15px;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
.steamdb_achievements_group .steamdb_achievements_game_logo_contain {
|
||||
position: relative;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.steamdb_achievements_group .steamdb_achievements_game_logo {
|
||||
width: 184px;
|
||||
height: 69px;
|
||||
}
|
||||
|
||||
.steamdb_achievements_game_name {
|
||||
font-weight: bold;
|
||||
font-size: 21px;
|
||||
}
|
||||
|
||||
.steamdb_achievements_update_name {
|
||||
color: #83868a;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.steamdb_completed_achievements_icon {
|
||||
position: absolute;
|
||||
left: -12px;
|
||||
bottom: -12px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.steamdb_fold_button,
|
||||
.steamdb_done_button {
|
||||
margin-left: auto;
|
||||
background: none;
|
||||
border: none;
|
||||
color: #83868a;
|
||||
display: flex;
|
||||
place-content: center;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.steamdb_hide_earned_achievements .steamdb_done_button {
|
||||
color: #5aa9d6;
|
||||
}
|
||||
|
||||
.steamdb_fold_button:hover,
|
||||
.steamdb_fold_button:focus,
|
||||
.steamdb_done_button:hover,
|
||||
.steamdb_done_button:focus {
|
||||
color: #1a9fff;
|
||||
}
|
||||
|
||||
.steamdb_stats_extra_tabs .steamdb_fold_button,
|
||||
.steamdb_stats_extra_tabs .steamdb_done_button {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.steamdb_stats_extra_tabs_mobile .steamdb_fold_button,
|
||||
.steamdb_stats_extra_tabs_mobile .steamdb_done_button {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.steamdb_stats_extra_tabs .steamdb_done_button + .steamdb_fold_button {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.steamdb_achievements_list {
|
||||
font-weight: 700;
|
||||
color: #83868a;
|
||||
}
|
||||
|
||||
.steamdb_achievements_list + .steamdb_achievements_list {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.steamdb_achievements_list > summary {
|
||||
cursor: pointer;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.steamdb_achievements_list > summary:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.steamdb_achievements_sort_button {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.steamdb_achievement {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 4px;
|
||||
padding-right: 8px;
|
||||
margin-bottom: 8px;
|
||||
background-color: #23262e;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.steamdb_achievement[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.steamdb_achievement_global_progress_overlay {
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
#23262e 40px,
|
||||
#31343e 40px,
|
||||
#31343e var(--steamdb-progress),
|
||||
#23262e var(--steamdb-progress)
|
||||
);
|
||||
}
|
||||
|
||||
.steamdb_achievement_image {
|
||||
width: 58px;
|
||||
height: 58px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.steamdb_achievement_image_glow {
|
||||
box-shadow:
|
||||
0 0 2px 1px rgb(255 184 78 / 60%),
|
||||
0 0 16px 1px rgb(255 184 78 / 40%);
|
||||
}
|
||||
|
||||
.steamdb_achievement h3 {
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
color: #dcdedf;
|
||||
overflow-wrap: anywhere;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.steamdb_achievement h5 {
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
color: #b8bcbf;
|
||||
overflow-wrap: anywhere;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.steamdb_achievement h6 {
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
color: #8b929a;
|
||||
}
|
||||
|
||||
.steamdb_hide_earned_achievements .steamdb_earned_achievement {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.steamdb_achievement_checkmark {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 20px;
|
||||
padding: 6px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.steamdb_achievement_checkmark > svg {
|
||||
width: 20px;
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.steamdb_achievement_status {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
margin-left: auto;
|
||||
text-align: right;
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
color: #8b929a;
|
||||
}
|
||||
|
||||
.steamdb_achievement_status_row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: end;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.steamdb_achievement_status_avatar {
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.steamdb_achievement_status_locked .steamdb_achievement_status_avatar {
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
.steamdb_achievement_status_row_compare {
|
||||
color: #ffcc6a;
|
||||
}
|
||||
|
||||
.steamdb_achievement_unlock_global {
|
||||
margin-left: auto;
|
||||
text-align: right;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
color: #fff;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.steamdb_achievement_progress {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-left: auto;
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
color: #b8bcbf;
|
||||
text-align: right;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.steamdb_achievement_progress_info {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.steamdb_achievement_progress_compare {
|
||||
color: #ffcc6a;
|
||||
}
|
||||
|
||||
.steamdb_achievements_name_container .steamdb_achievement_progress_compare {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.steamdb_achievements_title .steamdb_achievement_progress {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.steamdb_achievement_progress_avatar {
|
||||
height: 26px;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.steamdb_achievement_progressbar {
|
||||
border-radius: 10px;
|
||||
height: 8px;
|
||||
width: 200px;
|
||||
margin-top: 4px;
|
||||
background: #3d4450;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.achieveBar.steamdb_achievement_progressbar {
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.achieveBar.steamdb_achievement_progressbar .achieveBarProgress,
|
||||
.steamdb_achievement_progressbar_inner {
|
||||
height: 100%;
|
||||
border-top-right-radius: 10px;
|
||||
border-bottom-right-radius: 10px;
|
||||
background: #1a9fff;
|
||||
width: 0%;
|
||||
}
|
||||
|
||||
.steamdb_achievement_progressbar.steamdb_achievement_progress_compare
|
||||
.achieveBarProgress,
|
||||
.steamdb_achievement_progress_compare .steamdb_achievement_progressbar_inner {
|
||||
background: #ffcc6a;
|
||||
}
|
||||
|
||||
.steamdb_achievement_groups_disclaimer {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-left: 16px;
|
||||
margin-top: 100px;
|
||||
}
|
||||
|
||||
.steamdb_achievement_groups_disclaimer > img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
.steamdb_achievement_groups_disclaimer:not(:hover) img {
|
||||
filter: grayscale(1) brightness(0.5);
|
||||
}
|
||||
|
||||
.steamdb_achievement_groups_disclaimer > a {
|
||||
font-style: italic;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.steamdb_achievement_groups_disclaimer > a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.steamdb_achievement_search {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.steamdb_achievement_search > input {
|
||||
background: #1b2838;
|
||||
color: #fff;
|
||||
border: 1px solid #000;
|
||||
border-radius: 6px;
|
||||
width: 100%;
|
||||
font: inherit;
|
||||
box-sizing: border-box;
|
||||
padding: 7px 10px 7px 36px;
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
|
||||
background-size: 16px;
|
||||
background-position: 10px center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.steamdb_achievement_search > input:focus {
|
||||
border-color: #417b9c;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.steamdb_achievement_search > input::-webkit-search-cancel-button {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.steamdb_achievements_title {
|
||||
flex-flow: row wrap;
|
||||
}
|
||||
|
||||
.steamdb_achievements_name_container {
|
||||
order: 2;
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
||||
.steamdb_achievement_progressbar {
|
||||
max-width: 200px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.steamdb_achievement_image_compare {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
.steamdb_achievements_csrating {
|
||||
width: 100%;
|
||||
border-spacing: 0;
|
||||
border: solid 1px #2c405b;
|
||||
color: #c6d4df;
|
||||
background-color: #1b2838;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating_fold {
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating-value {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating tr:nth-child(odd) {
|
||||
background-color: rgb(0 0 0 / 20%);
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating tr:hover {
|
||||
background-color: rgb(255 255 255 / 20%);
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating th {
|
||||
background-color: #0197cf;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating .steamdb_achievements_csrating_season {
|
||||
background-color: #417a9b;
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating td {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating_negative {
|
||||
color: #f44336;
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating_positive {
|
||||
color: #0b8;
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating_significant {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating_graph {
|
||||
display: block;
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.steamdb_achievements_csrating_graph_slider {
|
||||
color-scheme: dark;
|
||||
direction: rtl;
|
||||
width: 100%;
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
.community_tooltip.steamdb_achievements_csrating_graph_tooltip {
|
||||
display: none;
|
||||
position: absolute;
|
||||
white-space: pre;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
z-index: 9999;
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
.apphub_AppIcon {
|
||||
display: block !important;
|
||||
position: relative;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
float: left;
|
||||
margin-top: 4px;
|
||||
margin-left: 12px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.apphub_AppIcon > img {
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
border-radius: 3px; /* hide the terrible jpeg rounded corner */
|
||||
}
|
||||
|
||||
.game_page_background .apphub_AppIcon {
|
||||
margin-left: 0;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
#booster_available_date {
|
||||
color: #d94126;
|
||||
margin-top: 8px;
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
/**
|
||||
* Valve has these styles inlined, instead of having them in their .css
|
||||
*/
|
||||
.apphub_OtherSiteInfo .btn_medium {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Fix game group logo overflowing on old group page
|
||||
*/
|
||||
#oggLogo img {
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
/**
|
||||
* We make it clickable
|
||||
*/
|
||||
a.apphub_NumInApp {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a.apphub_NumInApp:hover {
|
||||
text-decoration: none;
|
||||
color: #00e676;
|
||||
}
|
||||
|
||||
.btn_steamdb.btn_medium .ico16 {
|
||||
background: none;
|
||||
vertical-align: -10px; /* ugh */
|
||||
}
|
||||
|
||||
.steamdb_ogg_icon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.steamdb_popup_icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
.steamdb_self_profile {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin: 7px 0;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.steamdb_drops_remaining {
|
||||
border-radius: 2px;
|
||||
display: inline-block;
|
||||
background: rgb(0 0 0 / 30%);
|
||||
padding: 1px 5px;
|
||||
font-size: 12px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.profile_small_header_additional.steamdb {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.steamdb_gamecards_inventorylink {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.steamdb_reveal_spoilers_button {
|
||||
cursor: pointer;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.steamdb_reveal_spoilers_button:has(input:checked) {
|
||||
background: #2d6bcd;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.steamdb_reveal_spoilers_button > input {
|
||||
margin: 0;
|
||||
color-scheme: dark;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
span.bb_spoiler.steamdb_spoiler_revealed {
|
||||
background-color: rgb(0 0 0 / 50%);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
span.bb_spoiler.steamdb_spoiler_revealed > span {
|
||||
visibility: visible;
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
.steamdb_options_link .ico16 {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.steamdb_options_link:hover .ico16 {
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
.steamdb_downtime {
|
||||
color: #fff;
|
||||
background-color: #c0392b;
|
||||
line-height: 24px;
|
||||
padding: 10px;
|
||||
font-family:
|
||||
system-ui,
|
||||
-apple-system,
|
||||
"Segoe UI",
|
||||
Roboto,
|
||||
"Helvetica Neue",
|
||||
"Noto Sans",
|
||||
"Liberation Sans",
|
||||
Arial,
|
||||
sans-serif;
|
||||
font-size: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.steamdb_downtime a {
|
||||
text-decoration: underline;
|
||||
color: #ffee58;
|
||||
}
|
||||
|
||||
.steamdb_downtime a:focus,
|
||||
.steamdb_downtime a:hover {
|
||||
color: #99fff5;
|
||||
}
|
||||
|
||||
.steamdb_trade_error {
|
||||
margin-top: 2em;
|
||||
color: #ffee58;
|
||||
}
|
||||
|
||||
.steamdb_trade_error_explained {
|
||||
font-style: italic;
|
||||
font-size: 90%;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.steamdb_trade_error_explained:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
@@ -0,0 +1,102 @@
|
||||
@media (min-width: 1450px) {
|
||||
/**
|
||||
* Make the scrollbar stable so the page doesn't shift when selecting items
|
||||
*/
|
||||
html {
|
||||
scrollbar-gutter: stable;
|
||||
}
|
||||
|
||||
.tabitems_ctn {
|
||||
float: left;
|
||||
width: 242px;
|
||||
margin-left: -259px;
|
||||
}
|
||||
|
||||
.games_list_separator {
|
||||
border: 1px solid #2c3235;
|
||||
margin-top: 0;
|
||||
padding: 8px 12px;
|
||||
}
|
||||
|
||||
.games_list_separator:not(.actionable) {
|
||||
display: none; /* Hide "Active inventories" header */
|
||||
}
|
||||
|
||||
.games_list_tabs_ctn {
|
||||
border: 1px solid #2c3235;
|
||||
padding: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.games_list_tabs {
|
||||
padding: 0;
|
||||
border-radius: 0;
|
||||
overflow-y: auto;
|
||||
max-height: min(100vh, 600px);
|
||||
}
|
||||
|
||||
#tabcontent_inventory {
|
||||
float: right;
|
||||
width: 924px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.games_list_tab,
|
||||
a.games_list_tab {
|
||||
width: 100%;
|
||||
float: none;
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
background: unset;
|
||||
border: 0 !important;
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
|
||||
.games_list_tab > span,
|
||||
a.games_list_tab > span {
|
||||
padding: 0;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.games_list_tab_icon {
|
||||
margin: 8px 0;
|
||||
}
|
||||
|
||||
.games_list_tab_number {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.games_list_tab:first-child {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.games_list_tab_separator,
|
||||
.games_list_tab_row_separator {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.games_list_tab:hover,
|
||||
a.games_list_tab:hover {
|
||||
background: #4e7297;
|
||||
}
|
||||
|
||||
.games_list_tab:hover .games_list_tab_name,
|
||||
a.games_list_tab:hover .games_list_tab_name {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.games_list_tab.active {
|
||||
box-shadow: unset;
|
||||
background: #2c4056;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
#mainContents::after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,184 @@
|
||||
body {
|
||||
--steamdb-quick-sell-height: 156px;
|
||||
}
|
||||
|
||||
.steamdb_sold > img {
|
||||
filter: grayscale(1) opacity(0.5);
|
||||
}
|
||||
|
||||
.steamdb_confirm_listed::before,
|
||||
.steamdb_confirm_mobile::before,
|
||||
.steamdb_confirm_email::before {
|
||||
display: block;
|
||||
padding: 4px 0;
|
||||
background: #000;
|
||||
bottom: calc(50% - 18px);
|
||||
position: absolute;
|
||||
content: "CONFIRM\aON MOBILE";
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
font-family: "Motiva Sans", Arial, Helvetica, sans-serif;
|
||||
z-index: 1;
|
||||
white-space: pre;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.steamdb_confirm_email::before {
|
||||
content: "CONFIRM\aBY EMAIL";
|
||||
}
|
||||
|
||||
.steamdb_confirm_listed::before {
|
||||
content: "LISTED\aON MARKET";
|
||||
}
|
||||
|
||||
steamdb-iteminfo-footer {
|
||||
display: block;
|
||||
padding: 8px;
|
||||
font-variant-numeric: tabular-nums;
|
||||
border: 2px solid #2d3687;
|
||||
border-top: 0;
|
||||
background: #161920;
|
||||
background-repeat: no-repeat;
|
||||
/* stylelint-disable-next-line declaration-property-value-no-unknown */
|
||||
background-image: radial-gradient(
|
||||
600px 400px at top right in oklch,
|
||||
#191c37,
|
||||
#171724,
|
||||
#161920
|
||||
);
|
||||
|
||||
&[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.steamdb_gift_info {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.steamdb_quicksell {
|
||||
min-height: var(--steamdb-quick-sell-height);
|
||||
transition: opacity 0.2s ease-in;
|
||||
opacity: 0;
|
||||
|
||||
&.steamdb_quicksell_visible {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.steamdb_order_header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 10px;
|
||||
|
||||
.steamdb_icon {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.steamdb_order_row_clickable {
|
||||
cursor: pointer;
|
||||
color: #bbb;
|
||||
|
||||
&:hover {
|
||||
background: #000;
|
||||
color: #fff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
.steamdb_sell_summary {
|
||||
cursor: pointer;
|
||||
font-size: 15px;
|
||||
color: #bbb;
|
||||
|
||||
.steamdb_orders_header_promote {
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: #fff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
.steamdb_buy_summary {
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
|
||||
.steamdb_orders_header_promote {
|
||||
font-weight: bold;
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: #fff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
.steamdb_orders_hover_text {
|
||||
display: inline-block;
|
||||
margin: 8px 0;
|
||||
padding: 0 8px;
|
||||
font-size: 15px;
|
||||
border-radius: 6px;
|
||||
font-weight: bold;
|
||||
color: #d2e885;
|
||||
border: 1px solid #799905;
|
||||
opacity: 0.3;
|
||||
transition: opacity 0.2s;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
box-sizing: border-box;
|
||||
|
||||
> span {
|
||||
color: #a4d7f5;
|
||||
}
|
||||
|
||||
&.steamdb_hover_visible {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.steamdb_orders_table {
|
||||
width: 100%;
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
border-spacing: 0;
|
||||
|
||||
tr:nth-child(odd):not(:first-child) {
|
||||
background-color: rgb(255 255 255 / 2%);
|
||||
}
|
||||
|
||||
th {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
text-align: left;
|
||||
padding: 0 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.steamdb_badge_info + .steamdb_quicksell {
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Fix Valve's responsive style removing width/height which breaks gems display
|
||||
*/
|
||||
.trade_item_box .item {
|
||||
aspect-ratio: 1 / 1;
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
.steamdb_market_retry_button {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.steamdb_market_loader[hidden] {
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.steamdb_market_loader {
|
||||
margin: 0 auto;
|
||||
width: 90px;
|
||||
height: 14px;
|
||||
|
||||
--c: #fff 92%, #0000;
|
||||
|
||||
background:
|
||||
radial-gradient(circle closest-side, var(--c)) calc(100% / -4) 0,
|
||||
radial-gradient(circle closest-side, var(--c)) calc(100% / 4) 0;
|
||||
background-size: calc(100% / 2) 100%;
|
||||
animation: steamdb-market-loader 1.5s infinite;
|
||||
}
|
||||
|
||||
@keyframes steamdb-market-loader {
|
||||
0% {
|
||||
background-position:
|
||||
calc(100% / -4) 0,
|
||||
calc(100% / 4) 0;
|
||||
}
|
||||
|
||||
50% {
|
||||
background-position:
|
||||
calc(100% / -4) -14px,
|
||||
calc(100% / 4) 14px;
|
||||
}
|
||||
|
||||
100% {
|
||||
background-position:
|
||||
calc(100% / 4) -14px,
|
||||
calc(3 * 100% / 4) 14px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,296 @@
|
||||
a.steamdb_link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.game_area_purchase_game a.steamdb_link,
|
||||
html.responsive .game_area_purchase_game a.steamdb_link {
|
||||
color: #ebebeb !important;
|
||||
}
|
||||
|
||||
.steamdb_error_link {
|
||||
margin-top: 25px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.steamdb_agecheck_hint {
|
||||
margin-top: 25px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.steamdb_agecheck_hint a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.game_area_purchase_game .steamdb_link {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 10px;
|
||||
}
|
||||
|
||||
.game_area_purchase_game .steamdb_link[hidden] {
|
||||
visibility: hidden;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.game_purchase_sub_dropdown .steamdb_link {
|
||||
position: absolute;
|
||||
top: unset;
|
||||
bottom: -9px;
|
||||
left: 16px;
|
||||
}
|
||||
|
||||
.linkbar_steamdb {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
@media (max-width: 500px) {
|
||||
.game_purchase_sub_dropdown .steamdb_link {
|
||||
position: relative;
|
||||
top: unset;
|
||||
bottom: unset;
|
||||
left: unset;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
html.responsive .game_purchase_action .steamdb_link {
|
||||
position: relative;
|
||||
align-self: start;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
html.responsive .linkbar_steamdb {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
|
||||
#widget .steamdb_link {
|
||||
vertical-align: 6px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.btn_steamdb .ico16 {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.date:not(:hover) .steamdb_last_update_old {
|
||||
color: #f44336;
|
||||
}
|
||||
|
||||
.steamdb_stats {
|
||||
font-family: "Motiva Sans", Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
.steamdb_stats .block_content_inner {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.steamdb_stats_logo {
|
||||
width: 54px;
|
||||
height: 54px;
|
||||
opacity: 0.5;
|
||||
transition: opacity 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
.steamdb_stats:hover .steamdb_stats_logo {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.steamdb_stats_grid {
|
||||
display: grid;
|
||||
grid-template-columns: min-content 1fr;
|
||||
gap: 2px 10px;
|
||||
white-space: nowrap;
|
||||
font-size: 12px;
|
||||
color: #8f98a0;
|
||||
}
|
||||
|
||||
.steamdb_stats_number {
|
||||
font-weight: bold;
|
||||
color: #67c1f5;
|
||||
}
|
||||
|
||||
.steamdb_stats p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.steamdb_last_update {
|
||||
padding-bottom: 13px;
|
||||
}
|
||||
|
||||
.steamdb_last_update .date {
|
||||
unicode-bidi: plaintext;
|
||||
}
|
||||
|
||||
.glance_ctn .release_date + .steamdb_last_update {
|
||||
margin-top: -13px;
|
||||
}
|
||||
|
||||
.steamdb_last_update a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#error_display .steamdb_registerkey_lineitem {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.steamdb_registerkey_lineitem img {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-right: 5px;
|
||||
vertical-align: text-top;
|
||||
}
|
||||
|
||||
.steamdb_prices {
|
||||
background-color: rgb(0 0 0 / 20%);
|
||||
border-radius: 4px;
|
||||
margin-bottom: 10px;
|
||||
padding: 8px 16px;
|
||||
font-family: "Motiva Sans", Arial, Helvetica, sans-serif;
|
||||
color: #c6d4df;
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.steamdb_prices_bottom {
|
||||
font-style: italic;
|
||||
font-size: 12px;
|
||||
color: #8f98a0;
|
||||
}
|
||||
|
||||
.steamdb_prices img {
|
||||
align-self: center;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
opacity: 0.5;
|
||||
transition: opacity 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
.steamdb_prices:hover img {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.steamdb_prices:hover .steamdb_prices_top {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.steamdb_prices:hover .steamdb_prices_bottom {
|
||||
color: #c6d4df;
|
||||
}
|
||||
|
||||
.steamdb_prices_top b {
|
||||
font-weight: bold;
|
||||
color: #a3cf06;
|
||||
unicode-bidi: plaintext;
|
||||
}
|
||||
|
||||
.steamdb_rating.steamdb_rating_good {
|
||||
color: #6c3 !important;
|
||||
}
|
||||
|
||||
.steamdb_rating.steamdb_rating_average {
|
||||
color: #fc3 !important;
|
||||
}
|
||||
|
||||
.steamdb_rating.steamdb_rating_poor {
|
||||
color: #e60 !important;
|
||||
}
|
||||
|
||||
.steamdb_rating.steamdb_rating_white {
|
||||
color: #aaa !important;
|
||||
}
|
||||
|
||||
a.steamdb_rating:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.steamdb_already_in_library_link {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.steamdb_already_in_library_link:hover {
|
||||
color: #fff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.steamdb_already_in_library_collapse {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
padding: 0 10px;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.steamdb_already_in_library_collapse:hover,
|
||||
.steamdb_already_in_library_collapse:focus {
|
||||
background: hsl(73deg 94% 42% / 50%);
|
||||
}
|
||||
|
||||
.steamdb_already_in_library_collapse > .graph_toggle_icon {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.steamdb_cheat_queue {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px 15px;
|
||||
}
|
||||
|
||||
.steamdb_cheat_queue.discovery_queue_customize_ctn {
|
||||
margin-bottom: 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.steamdb_cheat_queue .btn_medium {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.steamdb_cheat_queue_text {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Fix date not fitting after we insert subid links
|
||||
*/
|
||||
.account_table th {
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
@media (max-width: 500px) {
|
||||
.steamdb_cheat_queue {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
html.responsive .responsive_apppage_details_left.block.steamdb_stats {
|
||||
background-color: #1b2838 !important;
|
||||
border-radius: 4px;
|
||||
padding: 0 !important;
|
||||
|
||||
.block_content_inner {
|
||||
margin: 0;
|
||||
padding: 6px 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.steamdb_dev_pub_link {
|
||||
display: inline-flex;
|
||||
margin-left: 5px;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
vertical-align: text-top;
|
||||
opacity: 0.5;
|
||||
transition: opacity 0.1s ease-in-out;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user