Apply blackle patches and icons

This commit is contained in:
khr 2020-02-16 16:49:21 -08:00
parent 990e9ba7ac
commit fbacdf6c58
6 changed files with 54 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 650 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 780 B

View File

@ -480,14 +480,13 @@ body.admin {
button {
background: transparent;
color: black;
padding: 4px 0;
padding: 8px 0;
align-self: end;
@include win95-tab();
&.active {
color: black;
top: 2px;
padding:8px 0;
background-color: $win95-bg;
&::before, &::after {
@ -1425,9 +1424,13 @@ body.admin {
background-image: url("../images/icon_mutes.png");
&:hover { background-image: url("../images/icon_mutes.png"); }
}
.column-link[href="/settings/preferences"] {
background-image: url("../images/icon_settings.png");
&:hover { background-image: url("../images/icon_settings.png"); }
.column-link[href="/web/directory"] {
background-image: url("../images/icon_profile_directory.png");
&:hover { background-image: url("../images/icon_profile_directory.png"); }
}
.column-link[href="/web/bookmarks"] {
background-image: url("../images/icon_bookmarks.png");
&:hover { background-image: url("../images/icon_bookmarks.png"); }
}
.getting-started__footer ul li a[href="/web/keyboard-shortcuts"] {
@ -1454,6 +1457,18 @@ body.admin {
background-image: url("../images/icon_logout.png");
&:hover { background-image: url("../images/icon_logout.png"); }
}
.getting-started__footer ul li a[href="https://joinmastodon.org/apps"] {
background-image: url("../images/icon_mobile_apps.png");
&:hover { background-image: url("../images/icon_mobile_apps.png"); }
}
.getting-started__footer ul li a[href="/settings/applications"] {
background-image: url("../images/icon_developers.png");
&:hover { background-image: url("../images/icon_developers.png"); }
}
.getting-started__footer ul li a[href="/auth/edit"] {
background-image: url("../images/icon_settings.png");
&:hover { background-image: url("../images/icon_settings.png"); }
}
.column .static-content.getting-started {
display:none;
@ -2470,6 +2485,9 @@ body {
.card-grid {
margin-left: 10px;
}
.status {
padding: 15px 15px 55px 78px;
}
}
@media screen and (max-width: 1255px) {
@ -2536,3 +2554,34 @@ body {
.layout-single-column .status__wrapper .status {
padding-bottom: 50px;
}
::-webkit-scrollbar {
width: 14px;
}
::-webkit-scrollbar-track {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAAAAABX3VL4AAAADklEQVQIW2P4f4DhwH8ACoADf0PlskQAAAAASUVORK5CYII=');
&:hover {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAAAAABX3VL4AAAADklEQVQIW2P4f4DhwH8ACoADf0PlskQAAAAASUVORK5CYII=');
}
}
::-webkit-scrollbar-thumb {
background: #bfbfbf;
border-color: #efefef #404040 #404040 #efefef;
border-style: solid;
border-width: 2px;
&:hover {
background: #bfbfbf;
border-color: #efefef #404040 #404040 #efefef;
border-style: solid;
border-width: 2px;
}
&:active {
background: #bfbfbf;
border-color: #404040 #efefef #efefef #404040;
}
}