where is displayed if a note has a tag?
As far as I know the only way on desktop is to click on the tags button within a note or right click the note and then select “add or remove tags”. On mobile you can open a note and then choose Tags from the menu. I don’t think there’s a way to see this without opening the note.
Thanks for replying!!
The aim of my request was:
I've imported a bunch of notes, and I would like to check rapidly what notes didn't have its proper tag.
Maybe, this could be a useful feature.
I think it should be shown, what tags a note has on desktop.
It does, near the top of the note under the edit bar.
@jtagcat, Happy to share, but please be aware I nothing about CSS and just through trial and error came up with the following. I’ve used it for a long while without issue.
That being said here below is the content of my ~/.config/joplin-desktop/userstyle.css
@charset "UTF-8";
/*JH html tag removing margin stops bottom line disappearing off screen. Removed*/
/*JH pre code tag background is what messes up code background. Removed*/
/*JH Added for code colour, background, etc - this works*/
code,
tt {
background-color: #fafafa;
color: #cb4b16;
border-radius: 3px;
padding: 0;
font-family: Consolas, Mononoki, "Roboto Mono", "Liberation Mono", Courier, monospace;
padding: 2px 4px 0px 4px;
font-size: 0.9em;
}
/*JH This background-color in "pre" is the colour that gives the background in code boxes*/
pre {
background-color: #fafafa;
color: #657b83;
border: 1pt solid #93a1a1;
padding: 1em;
box-shadow: 5pt 5pt 8pt #eee8d5;
}
body {
margin: 0;
}
a:focus {
outline: thin dotted;
}
a:active,
a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
mark {
background: #ff0;
color: #000;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
}
q {
quotes: "\201C" "\201D" "\2018" "\2019";
}
img {
border: 0;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
button[disabled],
input[disabled] {
cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
vertical-align: top;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
a {
color: #b58900;
}
a:visited {
color: #cb4b16;
}
a:hover {
color: #cb4b16;
}
h1 {
color: #d33682;
}
h2,
h3,
h4,
h5,
h6 {
color: #859900;
}
.tag {
background-color: #eee8d5;
color: #d33682;
padding: 0 0.2em;
}
.todo,
.next,
.done {
color: #fdf6e3;
background-color: #dc322f;
padding: 0 0.2em;
}
textarea {
overflow: auto;
vertical-align: top;
}
Could I get a screenshot of Tools->Options->Plugins and Tools->Options->Appearance?
Other than that I'm out of ideas and would like to hear from a developer.
@jtagcat it looks like @johano is using the solarized light theme, if that’s what you’re looking for.
In terms of the tags it looks like you must be on an older version of Joplin, showing tags at the top of a note was added in v1.0.178. You can check your current version by going to Help->About Joplin.
Indeed, I thought AppImageLauncher was auto-updating Joplin, turns out not. It’s auto-updater seems to be broken on Fedora.
Yes it’s a bug on all Linux systems, fortunately the update script is fairly easy to use!
@jtagcat, @CalebJohn is correct, I'm using the Solarised Light theme, with a few customizations via userstyle.css. I'd forgotten how I got there!