Highlights the changes made when in suggest edit mode.
Google Docs Highlight Changes Suggest Edits by kreister
Details
Authorkreister
LicenseNo License
Categorydocs.google.com
Created
Updated
Size784 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name 3/16/2023, 2:56:39 PM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("google.com") {
/* Changes highlighted text. /*
html body .suggestion-text-green {
color: #FFAA00 !important;
border-color: #FFAA00 !important;
}
/* Changes highlighted deletions (strikethrough). */
html body div[style*="border-top:3px solid #1FA15D"] {
border-top: 3px solid #FFAA00 !important;
}
/* Changes the box that appears when you edit a suggestion. */
[class^="suggest-changes"][style*="rgb(31, 161, 93)"],
[class^="suggest-changes"][style*="#1FA15D"]{
border-top-color: #FFAA00 !important;
border-bottom-color: #FFAA00 !important;
}
}