diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-05-07 15:56:19 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-05-07 15:56:19 +0300 |
| commit | d778e637345e2c4c6c1f2c38aae2c95e34e912be (patch) | |
| tree | 0e790d795cf7c048742fcc4876cd9bcbd511587e /docs/_static/css/code-snippets.css | |
| parent | f950ab61911b9b7cd5e6bd7d87ad7f9efd6c1be5 (diff) | |
| download | vyos-documentation-d778e637345e2c4c6c1f2c38aae2c95e34e912be.tar.gz vyos-documentation-d778e637345e2c4c6c1f2c38aae2c95e34e912be.zip | |
fix(css): increase copyFailedNotifier specificity to override copyDiv base style
.copyFailedNotifier (0,1,0) was losing to .highlight > .copyDiv (0,1,1),
so the red failure background never rendered. Adding .copyDiv to the selector
brings specificity to (0,2,0) which overrides the base rule.
🤖 Generated by [robots](https://vyos.io)
Diffstat (limited to 'docs/_static/css/code-snippets.css')
| -rw-r--r-- | docs/_static/css/code-snippets.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/_static/css/code-snippets.css b/docs/_static/css/code-snippets.css index ccdb415b..91648b40 100644 --- a/docs/_static/css/code-snippets.css +++ b/docs/_static/css/code-snippets.css @@ -77,7 +77,7 @@ margin-bottom: 0; } -.copyFailedNotifier { +.copyDiv.copyFailedNotifier { background-color: #b3261e; } |
