diff options
Diffstat (limited to 'popup/popup.css')
-rw-r--r-- | popup/popup.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/popup/popup.css b/popup/popup.css index 3b71d1e..6dd3829 100644 --- a/popup/popup.css +++ b/popup/popup.css @@ -484,3 +484,28 @@ input:checked + .slider:before { color: var(--text-secondary);
margin-left: 8px;
}
+
+/* Add these styles at the end of the file */
+
+/* Overridden feature styles */
+.overridden-feature {
+ opacity: 0.7;
+ position: relative;
+}
+
+.overridden-label {
+ color: var(--warning-color);
+ font-size: 11px;
+ font-style: italic;
+ margin-left: 6px;
+ font-weight: normal;
+}
+
+.disabled-toggle .slider {
+ background-color: var(--border-color) !important;
+ cursor: not-allowed;
+}
+
+.disabled-toggle input:checked + .slider {
+ background-color: rgba(var(--accent-color), 0.5) !important;
+}
|