mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-06 22:05:09 +01:00
Moved chip link colour to theme
This commit is contained in:
@@ -31,6 +31,7 @@ themes = {
|
|||||||
'CARD_BACKGROUND': 'green darken-3',
|
'CARD_BACKGROUND': 'green darken-3',
|
||||||
'CARD_TEXT': 'white-text',
|
'CARD_TEXT': 'white-text',
|
||||||
'CARD_LINK': '#FFF', # white-text
|
'CARD_LINK': '#FFF', # white-text
|
||||||
|
'CHIP_TEXT': '#1b5e20', # green darken-4
|
||||||
'FAB': 'red',
|
'FAB': 'red',
|
||||||
|
|
||||||
'STAR': 'yellow-text',
|
'STAR': 'yellow-text',
|
||||||
@@ -51,6 +52,7 @@ themes = {
|
|||||||
'CARD_BACKGROUND': 'green darken-1',
|
'CARD_BACKGROUND': 'green darken-1',
|
||||||
'CARD_TEXT': 'white-text',
|
'CARD_TEXT': 'white-text',
|
||||||
'CARD_LINK': '#FFF', # white-text
|
'CARD_LINK': '#FFF', # white-text
|
||||||
|
'CHIP_TEXT': '#1b5e20', # green darken-4
|
||||||
'FAB': 'red',
|
'FAB': 'red',
|
||||||
|
|
||||||
'STAR': 'yellow-text',
|
'STAR': 'yellow-text',
|
||||||
@@ -71,6 +73,7 @@ themes = {
|
|||||||
'CARD_BACKGROUND': 'light-blue lighten-2',
|
'CARD_BACKGROUND': 'light-blue lighten-2',
|
||||||
'CARD_TEXT': 'black-text',
|
'CARD_TEXT': 'black-text',
|
||||||
'CARD_LINK': '#263238', # blue-grey-text darken-4
|
'CARD_LINK': '#263238', # blue-grey-text darken-4
|
||||||
|
'CHIP_TEXT': '#FFF', # white
|
||||||
'FAB': 'light-blue darken-4',
|
'FAB': 'light-blue darken-4',
|
||||||
|
|
||||||
'STAR': 'yellow-text',
|
'STAR': 'yellow-text',
|
||||||
@@ -91,6 +94,7 @@ themes = {
|
|||||||
'CARD_BACKGROUND': 'grey darken-3',
|
'CARD_BACKGROUND': 'grey darken-3',
|
||||||
'CARD_TEXT': 'grey-text lighten-1',
|
'CARD_TEXT': 'grey-text lighten-1',
|
||||||
'CARD_LINK': '#fb8c00', # orange-text darken-1
|
'CARD_LINK': '#fb8c00', # orange-text darken-1
|
||||||
|
'CHIP_TEXT': '#fb8c00', # orange-text darken-1
|
||||||
'FAB': 'red',
|
'FAB': 'red',
|
||||||
|
|
||||||
'STAR': 'yellow-text',
|
'STAR': 'yellow-text',
|
||||||
|
|||||||
@@ -44,19 +44,6 @@ nav .button-collapse i
|
|||||||
|
|
||||||
/** Cards and tags **/
|
/** Cards and tags **/
|
||||||
|
|
||||||
/* Card title anchor colour */
|
|
||||||
.white-text .card-title a,
|
|
||||||
.white-text a
|
|
||||||
{
|
|
||||||
color: #FFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
.chip a,
|
|
||||||
.white-text .chip a
|
|
||||||
{
|
|
||||||
color: #1b5e20; /* green darken-4 */
|
|
||||||
}
|
|
||||||
|
|
||||||
.card.tiny
|
.card.tiny
|
||||||
{
|
{
|
||||||
height: 140px;
|
height: 140px;
|
||||||
|
|||||||
@@ -23,6 +23,10 @@
|
|||||||
{
|
{
|
||||||
color: {{ theme.CARD_LINK }};
|
color: {{ theme.CARD_LINK }};
|
||||||
}
|
}
|
||||||
|
.chip a
|
||||||
|
{
|
||||||
|
color: {{ theme.CHIP_TEXT }};
|
||||||
|
}
|
||||||
/* label color */
|
/* label color */
|
||||||
.input-field label
|
.input-field label
|
||||||
{
|
{
|
||||||
@@ -34,7 +38,7 @@
|
|||||||
color: {{ theme.TEXTHEX }};
|
color: {{ theme.TEXTHEX }};
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<link href="{{ url_for('static', filename='css/digimarks.css') }}?20170722" type="text/css" rel="stylesheet" media="screen,projection"/>
|
<link href="{{ url_for('static', filename='css/digimarks.css') }}?20170723" type="text/css" rel="stylesheet" media="screen,projection"/>
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body class="{{ theme.BODY }} {{ theme.TEXT }}">
|
<body class="{{ theme.BODY }} {{ theme.TEXT }}">
|
||||||
|
|||||||
Reference in New Issue
Block a user