[FrontEnd]: fix missing unsubscribe style
This commit is contained in:
parent
7b7e69a8b1
commit
f2fc1cf564
269
youtube/static/unsubscribe.css
Normal file
269
youtube/static/unsubscribe.css
Normal file
@ -0,0 +1,269 @@
|
|||||||
|
body {
|
||||||
|
display: grid;
|
||||||
|
grid-gap: 20px;
|
||||||
|
grid-template-areas:
|
||||||
|
"header"
|
||||||
|
"main"
|
||||||
|
"footer";
|
||||||
|
/* Fix height */
|
||||||
|
height: 100vh;
|
||||||
|
grid-template-rows: auto 1fr auto;
|
||||||
|
/* fix top and bottom */
|
||||||
|
margin-left: 1rem;
|
||||||
|
margin-right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
color: var(--link);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: var(--link-visited);
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="text"],
|
||||||
|
input[type="search"] {
|
||||||
|
background: var(--background);
|
||||||
|
border: 1px solid var(--button-border);
|
||||||
|
padding: 0.4rem 0.4rem;
|
||||||
|
font-size: 15px;
|
||||||
|
color: var(--search-text);
|
||||||
|
outline: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type='search'] {
|
||||||
|
border-bottom: 1px solid var(--button-border);
|
||||||
|
border-top: 0px;
|
||||||
|
border-left: 0px;
|
||||||
|
border-right: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
display: grid;
|
||||||
|
grid-gap: 1px;
|
||||||
|
grid-template-areas:
|
||||||
|
"home"
|
||||||
|
"form"
|
||||||
|
"playlist";
|
||||||
|
grid-area: header;
|
||||||
|
}
|
||||||
|
|
||||||
|
.home {
|
||||||
|
grid-area: home;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form {
|
||||||
|
display: grid;
|
||||||
|
grid-gap: 4px;
|
||||||
|
grid-template-areas:
|
||||||
|
"search-box"
|
||||||
|
"search-button"
|
||||||
|
"dropdown";
|
||||||
|
grid-area: form;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-box {
|
||||||
|
grid-area: search-box;
|
||||||
|
}
|
||||||
|
.search-button {
|
||||||
|
grid-area: search-button;
|
||||||
|
|
||||||
|
cursor: pointer;
|
||||||
|
padding-bottom: 6px;
|
||||||
|
padding-left: .75em;
|
||||||
|
padding-right: .75em;
|
||||||
|
padding-top: 6px;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
background-color: var(--buttom);
|
||||||
|
border: 1px solid var(--button-border);
|
||||||
|
color: var(--buttom-text);
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
.search-button:hover {
|
||||||
|
background-color: var(--buttom-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown {
|
||||||
|
display: grid;
|
||||||
|
grid-gap: 1px;
|
||||||
|
grid-template-areas:
|
||||||
|
"dropdown-label"
|
||||||
|
"dropdown-content";
|
||||||
|
grid-area: dropdown;
|
||||||
|
}
|
||||||
|
.dropdown-label {
|
||||||
|
grid-area: dropdown-label;
|
||||||
|
|
||||||
|
padding-bottom: 6px;
|
||||||
|
padding-left: .75em;
|
||||||
|
padding-right: .75em;
|
||||||
|
padding-top: 6px;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
background-color: var(--buttom);
|
||||||
|
border: 1px solid var(--button-border);
|
||||||
|
color: var(--buttom-text);
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
.dropdown-label:hover {
|
||||||
|
background-color: var(--buttom-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ------------- Menu Mobile sin JS ---------------- */
|
||||||
|
/* input hidden */
|
||||||
|
.opt-box {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.dropdown-content {
|
||||||
|
display: none;
|
||||||
|
grid-area: dropdown-content;
|
||||||
|
}
|
||||||
|
label[for=options-toggle-cbox] {
|
||||||
|
cursor: pointer;
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-khtml-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#options-toggle-cbox:checked ~ .dropdown-content {
|
||||||
|
display: block;
|
||||||
|
white-space: nowrap;
|
||||||
|
background: var(--secondary-background);
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
}
|
||||||
|
/*- ----------- End Menu Mobile sin JS ------------- */
|
||||||
|
|
||||||
|
.main {
|
||||||
|
grid-area: main;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* fix hr when is children of grid */
|
||||||
|
hr {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-channel {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-channel > li {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
/* pagination */
|
||||||
|
.main .pagination-container {
|
||||||
|
display: grid;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main .pagination-container .pagination-list {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main .pagination-container .pagination-list .page-link {
|
||||||
|
border-style: none;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
background: var(--secondary-focus);
|
||||||
|
text-decoration: none;
|
||||||
|
align-self: center;
|
||||||
|
padding: .5rem;
|
||||||
|
width: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main .pagination-container .pagination-list .page-link.is-current {
|
||||||
|
background: var(--secondary-background);
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
grid-area: footer;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: auto;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: auto;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer > p {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 480px) {
|
||||||
|
.item-video {
|
||||||
|
font-size: 0.85rem;
|
||||||
|
}
|
||||||
|
.info-box {
|
||||||
|
grid-gap: 2px;
|
||||||
|
}
|
||||||
|
.title {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
body {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 0.3fr 2fr 1fr 0.3fr;
|
||||||
|
grid-template-rows: auto 1fr auto;
|
||||||
|
grid-template-areas:
|
||||||
|
"header header header header"
|
||||||
|
"main main main main"
|
||||||
|
"footer footer footer footer";
|
||||||
|
}
|
||||||
|
.form {
|
||||||
|
display: grid;
|
||||||
|
grid-gap: 1px;
|
||||||
|
grid-template-columns: 1fr 1.4fr 0.3fr 1.3fr;
|
||||||
|
grid-template-areas: ". search-box search-button dropdown";
|
||||||
|
grid-area: form;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.dropdown {
|
||||||
|
display: grid;
|
||||||
|
grid-gap: 1px;
|
||||||
|
grid-template-columns: 100px auto;
|
||||||
|
grid-template-areas:
|
||||||
|
"dropdown-label"
|
||||||
|
"dropdown-content";
|
||||||
|
grid-area: dropdown;
|
||||||
|
z-index: 1;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
#options-toggle-cbox:checked ~ .dropdown-content {
|
||||||
|
width: calc(100% + 100px);
|
||||||
|
max-height: 80vh;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
grid-column-gap: 2rem;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 1rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
}
|
@ -1,17 +1,19 @@
|
|||||||
{% set page_title = 'Unsubscribe?' %}
|
{% set page_title = 'Unsubscribe?' %}
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
{% block style %}
|
||||||
|
<link href="/youtube.com/static/unsubscribe.css" rel="stylesheet"/>
|
||||||
|
{% endblock style %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
<span>Are you sure you want to unsubscribe from these channels?</span>
|
<p>Are you sure you want to unsubscribe from these channels?</p>
|
||||||
<form class="subscriptions-import-form" action="/youtube.com/subscription_manager" method="POST">
|
<form class="subscriptions-import-form" action="/youtube.com/subscription_manager" method="POST">
|
||||||
{% for channel_id, channel_name in unsubscribe_list %}
|
{% for channel_id, channel_name in unsubscribe_list %}
|
||||||
<input type="hidden" name="channel_ids" value="{{ channel_id }}">
|
<input type="hidden" name="channel_ids" value="{{ channel_id }}">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<input type="hidden" name="action" value="unsubscribe">
|
<input type="hidden" name="action" value="unsubscribe">
|
||||||
<input type="submit" value="Yes, unsubscribe">
|
<input type="submit" value="Yes, unsubscribe">
|
||||||
</form>
|
</form>
|
||||||
<ul>
|
<ul class="list-channel">
|
||||||
{% for channel_id, channel_name in unsubscribe_list %}
|
{% for channel_id, channel_name in unsubscribe_list %}
|
||||||
<li><a href="{{ '/https://www.youtube.com/channel/' + channel_id }}" title="{{ channel_name }}">{{ channel_name }}</a></li>
|
<li><a href="{{ '/https://www.youtube.com/channel/' + channel_id }}" title="{{ channel_name }}">{{ channel_name }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user