diff options
author | sameerasw <[email protected]> | 2025-04-12 15:37:43 +0530 |
---|---|---|
committer | sameerasw <[email protected]> | 2025-04-12 15:37:43 +0530 |
commit | 3176cd97d89b3ae161f09956973ecb7ec01a9c3f (patch) | |
tree | 789d13819f041341c2ab020c33ddcbf75dd05661 /popup/popup.css | |
parent | 1f0a6a85eb16b5aa60e3aab5515714a7d73d6771 (diff) |
Added the ability to disable transparency globally #7
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;
+}
|