Continued work on media schedule panel.
This commit is contained in:
parent
d5a2a51be2
commit
90be85de26
6 changed files with 475 additions and 103 deletions
|
|
@ -88,16 +88,22 @@ a{
|
|||
color: var(--accent0);
|
||||
}
|
||||
|
||||
a:hover, i:hover, .interactive:hover{
|
||||
/* NOT! -Wayne */
|
||||
a:hover, i:hover:not(button i), .interactive:hover{
|
||||
color: var(--focus0-alt0);
|
||||
text-shadow: var(--focus-glow0);
|
||||
}
|
||||
|
||||
a:active, i:active, .interactive:active{
|
||||
a:active, i:active:not(button i), .interactive:active{
|
||||
color: var(--focus0-alt1);
|
||||
text-shadow: var(--focus-glow0-alt0);
|
||||
}
|
||||
|
||||
button i{
|
||||
margin: 0.05em;
|
||||
text-wrap: nowrap;
|
||||
}
|
||||
|
||||
select{
|
||||
background-color: var(--bg2);
|
||||
border-radius: 0.5em;
|
||||
|
|
@ -133,7 +139,6 @@ input:checked{
|
|||
box-shadow: var(--focus-glow0);
|
||||
}
|
||||
|
||||
/* NOT! -Wayne */
|
||||
input:not([type='checkbox']):not(.navbar-item), textarea {
|
||||
border-radius: 1em;
|
||||
border: none;
|
||||
|
|
@ -428,7 +433,7 @@ div.tooltip{
|
|||
border-radius: 1em;
|
||||
}
|
||||
|
||||
/* panel */
|
||||
/* panel containers */
|
||||
.cpanel-body{
|
||||
background-image: none;
|
||||
}
|
||||
|
|
@ -437,6 +442,8 @@ div.tooltip{
|
|||
background-color: var(--accent0);
|
||||
}
|
||||
|
||||
/* panels */
|
||||
/* emote panel */
|
||||
span.emote-panel-list-emote{
|
||||
border: 1px solid var(--accent0);
|
||||
}
|
||||
|
|
@ -460,6 +467,7 @@ span.emote-list-trash-icon{
|
|||
border: 1px solid var(--accent0)
|
||||
}
|
||||
|
||||
/* queue panel */
|
||||
#queue-controls{
|
||||
background-color: var(--bg0-alpha1);
|
||||
}
|
||||
|
|
@ -473,6 +481,8 @@ span.queue-marker{
|
|||
box-shadow: var(--timer-glow);
|
||||
}
|
||||
|
||||
|
||||
|
||||
div.queue-entry{
|
||||
margin: 0.2em;
|
||||
padding: 0 0.7em;
|
||||
|
|
@ -491,6 +501,22 @@ div.queue-entry{
|
|||
font-family: monospace;
|
||||
}
|
||||
|
||||
#queue-control-buttons button:not(:hover, .danger-button, .positive-button){
|
||||
background-color: var(--bg2-alt1);
|
||||
}
|
||||
|
||||
div.started-before-today{
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
border-top: 1px dashed var(--accent1);
|
||||
}
|
||||
|
||||
div.ends-after-today{
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom: 1px dashed var(--accent1);
|
||||
}
|
||||
|
||||
/* altcha theming*/
|
||||
div.altcha{
|
||||
box-shadow: 4px 4px 1px var(--bg1-alt0) inset;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue