incremental-everything icon indicating copy to clipboard operation
incremental-everything copied to clipboard

CSS Selectors for Themes

Open AkiraTheSquid opened this issue 2 years ago • 1 comments

image

As you can see above, there are sections that are grey. I can change the colors using developer tools, but I cannot do so with RemNote's built in CSS tool.

Here are the css selectors that I tried to change but which I could not:

.incremental-everything-element { background: #171414 !important; }

button.bg-blue-50.hover:bg-blue-70.text-white.font-bold.py-2.px-4.rounded.incremental-everthing-next-button { background: #201C1C !important; color: white !important; }

.flex.flex-row.justify-center.items-center.gap-6.incremental-everything-answer-buttons { background: #171414 !important; }

button.bg-blue-50.hover:bg-blue-70.text-white.font-bold.py-2.px-4.rounded.incremental-everthing-done-button { background: #201C1C !important; color: white !important; }

AkiraTheSquid avatar Sep 03 '23 20:09 AkiraTheSquid

I think you could try doing something like this to style the plugin elements:

div[data-plugin-id='incremental-everything'] {
  font-size: 14px;
}

bjsi avatar Sep 05 '23 01:09 bjsi