more media management, custom logger
This commit is contained in:
10
app/common/logger.py
Normal file
10
app/common/logger.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import logging
|
||||
|
||||
|
||||
log = logging.getLogger('tubesync')
|
||||
log.setLevel(logging.DEBUG)
|
||||
ch = logging.StreamHandler()
|
||||
ch.setLevel(logging.DEBUG)
|
||||
formatter = logging.Formatter('%(asctime)s [%(name)s/%(levelname)s] %(message)s')
|
||||
ch.setFormatter(formatter)
|
||||
log.addHandler(ch)
|
||||
@@ -37,6 +37,7 @@ $form-help-text-colour: $colour-light-blue;
|
||||
$form-delete-button-background-colour: $colour-red;
|
||||
|
||||
$collection-no-items-text-colour: $colour-near-black;
|
||||
$collection-text-colour: $colour-near-black;
|
||||
$collection-background-hover-colour: $colour-orange;
|
||||
$collection-text-hover-colour: $colour-near-white;
|
||||
|
||||
|
||||
@@ -88,11 +88,12 @@ main {
|
||||
}
|
||||
|
||||
.collection {
|
||||
margin: 0.5rem 0 0 0 !important;
|
||||
.collection-item {
|
||||
display: block;
|
||||
}
|
||||
a.collection-item {
|
||||
color: $main-link-colour;
|
||||
color: $collection-text-colour;
|
||||
text-decoration: none;
|
||||
&:hover {
|
||||
background-color: $collection-background-hover-colour !important;
|
||||
|
||||
Reference in New Issue
Block a user