mirror of
https://github.com/brightwav3/Coding-Agent-Theme.git
synced 2026-07-22 04:50:26 +00:00
Release 1.2.1: fix CSS lint !important and screenshot in release
- Remove all !important (bold/italic via specificity, cursor via --caret-color) - Add screenshot field to manifest.json so the preview resolves at the tagged release - Bump to 1.2.1
This commit is contained in:
parent
c9f632bd1f
commit
e8ef85fb27
4 changed files with 18 additions and 7 deletions
|
|
@ -4,6 +4,14 @@ All notable changes to this project are documented here.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/).
|
||||
|
||||
## [1.2.1] - 2026-06-14
|
||||
|
||||
### Fixed
|
||||
- Removed all `!important` declarations; bold and italic now win by selector
|
||||
specificity, and the editor cursor is colored via the `--caret-color` variable.
|
||||
- Added `screenshot.png` and a `screenshot` field to `manifest.json` so the theme
|
||||
preview resolves during submission.
|
||||
|
||||
## [1.2.0] - 2026-06-14
|
||||
|
||||
### Changed
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Coding Agent reskins the entire chrome (titlebar, tabs, sidebar, file tree, stat
|
|||
|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"name": "Coding Agent",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.1",
|
||||
"minAppVersion": "1.0.0",
|
||||
"author": "Šimon Zelenka",
|
||||
"authorUrl": "https://github.com/Brightwav3"
|
||||
"authorUrl": "https://github.com/Brightwav3",
|
||||
"screenshot": "screenshot.png"
|
||||
}
|
||||
|
|
|
|||
10
theme.css
10
theme.css
|
|
@ -87,6 +87,8 @@ settings:
|
|||
--radius-s: calc(var(--cc-radius) - 3px);
|
||||
--radius-m: var(--cc-radius);
|
||||
--radius-l: calc(var(--cc-radius) + 3px);
|
||||
|
||||
--caret-color: var(--cc-coral);
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------
|
||||
|
|
@ -365,10 +367,12 @@ body { --nav-indentation-guide-color: transparent; }
|
|||
body { --bold-color: var(--cc-coral); --italic-color: var(--cc-coral); }
|
||||
.markdown-rendered strong,
|
||||
.markdown-rendered b,
|
||||
.cm-s-obsidian .cm-strong { color: var(--cc-coral) !important; }
|
||||
.markdown-preview-view strong,
|
||||
.cm-s-obsidian .cm-strong { color: var(--cc-coral); }
|
||||
.markdown-rendered em,
|
||||
.markdown-rendered i,
|
||||
.cm-s-obsidian .cm-em { color: var(--cc-coral) !important; }
|
||||
.markdown-preview-view em,
|
||||
.cm-s-obsidian .cm-em { color: var(--cc-coral); }
|
||||
|
||||
/* Color-coded heading ladder in both reading view and Live Preview */
|
||||
.markdown-rendered h1, .cm-s-obsidian .HyperMD-header-1, .cm-s-obsidian .cm-header-1 { color: var(--h1-color); }
|
||||
|
|
@ -399,8 +403,6 @@ body { --bold-color: var(--cc-coral); --italic-color: var(--cc-coral); }
|
|||
border-radius: var(--radius-m);
|
||||
}
|
||||
|
||||
.cm-cursor, .cm-cursor-primary { border-left: 2px solid var(--cc-coral) !important; }
|
||||
|
||||
.cm-s-obsidian .cm-link,
|
||||
.cm-s-obsidian .cm-url,
|
||||
.markdown-rendered a { color: var(--cc-coral); text-decoration: none; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue