Move .tag_card to cards.css.
This commit is contained in:
parent
09adc6f9a8
commit
20a3828dbf
4 changed files with 22 additions and 15 deletions
|
@ -273,3 +273,22 @@
|
||||||
background-color: rgba(0, 0, 255, 0.25);
|
background-color: rgba(0, 0, 255, 0.25);
|
||||||
border-radius: inherit;
|
border-radius: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ########################################################################## */
|
||||||
|
/* ########################################################################## */
|
||||||
|
/* ########################################################################## */
|
||||||
|
|
||||||
|
.tag_card
|
||||||
|
{
|
||||||
|
border-radius: 2px;
|
||||||
|
padding-left: 2px;
|
||||||
|
padding-right: 2px;
|
||||||
|
|
||||||
|
background-color: var(--color_tag_card_bg);
|
||||||
|
color: var(--color_tag_card_fg);
|
||||||
|
|
||||||
|
font-size: 0.9em;
|
||||||
|
text-decoration: none;
|
||||||
|
font-family: monospace;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
|
@ -165,6 +165,7 @@ is hovered over.
|
||||||
{
|
{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag_card:hover ~ * .remove_tag_button,
|
.tag_card:hover ~ * .remove_tag_button,
|
||||||
.tag_card:hover ~ .remove_tag_button,
|
.tag_card:hover ~ .remove_tag_button,
|
||||||
.remove_tag_button:hover,
|
.remove_tag_button:hover,
|
||||||
|
@ -173,21 +174,6 @@ is hovered over.
|
||||||
display:inline;
|
display:inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag_card
|
|
||||||
{
|
|
||||||
border-radius: 2px;
|
|
||||||
padding-left: 2px;
|
|
||||||
padding-right: 2px;
|
|
||||||
|
|
||||||
background-color: var(--color_tag_card_bg);
|
|
||||||
color: var(--color_tag_card_fg);
|
|
||||||
|
|
||||||
font-size: 0.9em;
|
|
||||||
text-decoration: none;
|
|
||||||
font-family: monospace;
|
|
||||||
line-height: 1.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
#message_area
|
#message_area
|
||||||
{
|
{
|
||||||
flex: 2;
|
flex: 2;
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
<link rel="stylesheet" href="/static/css/common.css">
|
<link rel="stylesheet" href="/static/css/common.css">
|
||||||
<link rel="stylesheet" href="/static/css/etiquette.css">
|
<link rel="stylesheet" href="/static/css/etiquette.css">
|
||||||
|
<link rel="stylesheet" href="/static/css/cards.css">
|
||||||
{% if theme %}<link rel="stylesheet" href="/static/css/theme_{{theme}}.css">{% endif %}
|
{% if theme %}<link rel="stylesheet" href="/static/css/theme_{{theme}}.css">{% endif %}
|
||||||
<script src="/static/js/common.js"></script>
|
<script src="/static/js/common.js"></script>
|
||||||
<script src="/static/js/api.js"></script>
|
<script src="/static/js/api.js"></script>
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
<link rel="stylesheet" href="/static/css/common.css">
|
<link rel="stylesheet" href="/static/css/common.css">
|
||||||
<link rel="stylesheet" href="/static/css/etiquette.css">
|
<link rel="stylesheet" href="/static/css/etiquette.css">
|
||||||
|
<link rel="stylesheet" href="/static/css/cards.css">
|
||||||
{% if theme %}<link rel="stylesheet" href="/static/css/theme_{{theme}}.css">{% endif %}
|
{% if theme %}<link rel="stylesheet" href="/static/css/theme_{{theme}}.css">{% endif %}
|
||||||
<script src="/static/js/common.js"></script>
|
<script src="/static/js/common.js"></script>
|
||||||
<script src="/static/js/api.js"></script>
|
<script src="/static/js/api.js"></script>
|
||||||
|
|
Loading…
Reference in a new issue