Added alt-detection. Just need to set up pre-delete for userModel function to remove refrences to itself on alt accounts
This commit is contained in:
parent
6e785dc211
commit
980c84afff
14 changed files with 346 additions and 12 deletions
|
|
@ -74,6 +74,13 @@ div.dynamic-container{
|
|||
user-select: none;
|
||||
}
|
||||
|
||||
.seperator{
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
/* Navbar */
|
||||
#navbar{
|
||||
display: flex;
|
||||
|
|
@ -141,4 +148,17 @@ p.navbar-item, input.navbar-item{
|
|||
|
||||
.popup-title{
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* tooltip */
|
||||
div.tooltip{
|
||||
position: fixed;
|
||||
pointer-events: all;
|
||||
min-width: 1em;
|
||||
min-height: 1em;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
p.tooltip, h3.tooltip{
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
|
@ -1,3 +1,18 @@
|
|||
/*Canopy - The next generation of stoner streaming software
|
||||
Copyright (C) 2024 Rainbownapkin and the TTN Community
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation, either version 3 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.*/
|
||||
.title-span{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
|
|
|||
|
|
@ -188,6 +188,11 @@ input.control-prompt, input.control-prompt:focus{
|
|||
outline: none;
|
||||
}
|
||||
|
||||
|
||||
.seperator{
|
||||
background-color: var(--accent0);
|
||||
}
|
||||
|
||||
/* navbar */
|
||||
#navbar{
|
||||
background-color: var(--bg1);
|
||||
|
|
@ -344,6 +349,15 @@ select.panel-head-element{
|
|||
color: var(--danger0);
|
||||
}
|
||||
|
||||
/* tooltip */
|
||||
div.tooltip{
|
||||
background-color: var(--bg1);
|
||||
color: var(--accent1);
|
||||
border: 1px solid var(--accent1);
|
||||
box-shadow: 4px 4px 1px var(--bg1-alt0) inset;
|
||||
border-radius: 1em;
|
||||
}
|
||||
|
||||
/* panel */
|
||||
.title-filler-span{
|
||||
background-color: var(--accent0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue