diff options
Diffstat (limited to 'popup/popup.css')
-rw-r--r-- | popup/popup.css | 59 |
1 files changed, 58 insertions, 1 deletions
diff --git a/popup/popup.css b/popup/popup.css index 80d3ec1..a0bf264 100644 --- a/popup/popup.css +++ b/popup/popup.css @@ -171,13 +171,70 @@ input:checked + .slider:before { margin: 0 0 12px 0;
color: var(--text-primary);
}
+.features-container {
+ background-color: var(--secondary-bg);
+ border-radius: var(--radius-md);
+ padding: 16px;
+ margin-bottom: 16px;
+}
+
+.features-list {
+ display: flex;
+ flex-direction: column;
+ gap: 8px;
+}
+
+.feature-toggle {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 8px 12px;
+ background-color: var(--bg-color);
+ border-radius: var(--radius-sm);
+ border: 1px solid var(--border-color);
+}
+
+.feature-name {
+ font-weight: 500;
+ color: var(--text-primary);
+}
+/* Collapsible Websites List */
.websites-container {
background-color: var(--secondary-bg);
border-radius: var(--radius-md);
- padding: 16px;
+ overflow: hidden;
}
+.collapsible-button {
+ width: 100%;
+ padding: 12px 16px;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ background: none;
+ border: none;
+ color: var(--text-primary);
+ font-weight: 600;
+ cursor: pointer;
+ transition: var(--transition);
+}
+
+.collapsible-button:hover {
+ background-color: rgba(255, 255, 255, 0.1);
+}
+
+.collapsible-button i {
+ transition: transform 0.3s ease;
+}
+
+.websites-list.collapsed {
+ display: none;
+}
+
+.websites-list:not(.collapsed) + .collapsible-button i {
+ transform: rotate(180deg);
+}
.websites-list {
list-style: none;
padding: 0;
|