Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions assets/css/compose.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,20 @@

/* !!! */
.to_card {
width: 6dvw;
width: 2dvw;
font-size: .85rem;
display: flex;
}

.dark .to_card .form-label {
color: var(--accent-foreground);
}

#to-input {
width: 370px;
height: 35px;
}


.compose_search_input {
border: none;
Expand All @@ -132,9 +141,14 @@
.compose_search_input:focus {
/* border: none; */
outline: none;
/* background-color: #242e41 !important; */
/* border-color: transparent; */
}

.dark .compo-email-item:hover, .dark #no-result:hover {
background: #242e41;
}


.email-container-wrapper {
display: flex;
Expand Down Expand Up @@ -233,7 +247,7 @@
max-height: 90dvh;
overflow-y: auto;
background: white;
border: 1px solid #ddd;
border: 1px solid var(--background-2);
border-radius: 4px;
z-index: 1000;
display: none;
Expand Down
13 changes: 12 additions & 1 deletion assets/css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,25 @@
transition: all 0.3s ease-in-out;
}

.dark .group_menu button {
background-color: #1e2636;
color: var(--gray-400);
}


.group_menu button i {
font-size: 1.1rem;
}

.group_menu button:hover {
color: var(--primary-color);
background-color: var(--gray-100);
background-color: #1e2636;
border: .5 solid var(--gray-300);
}

.dark .group_menu button:hover {
color: var(--primary-color);
background-color: #242e41;
border: .5 solid var(--gray-300);
}

Expand Down
7 changes: 1 addition & 6 deletions assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@


.send_btn {
background-color: var(--primary-color-500);
background-color: var(--primary-color-500) !important;
border: none;
color: whitesmoke;
padding: 5px 1rem;
Expand Down Expand Up @@ -116,7 +116,6 @@
/* ------------------------------- Email User ------------------------------- */

.email-item {
background: white;
border-radius: 2px;
padding: 10px;
display: flex;
Expand All @@ -143,10 +142,6 @@
font-weight: 500;
}

.email-item:hover {
background: #f5f5f5;
}

.email-subject {
font-size: .88rem;
font-weight: 600;
Expand Down
37 changes: 37 additions & 0 deletions assets/css/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,43 @@
body {
background-color: #EDF1F3;
}
body.dark {
background-color: var(--background);
}

.dark .login__content {
/* border: ; */
/* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.026); */
/* background-color: var(--background-2); */
/* background-color: #EDF1F3; */
background-color: #242e41;
/* background-color: #1e2636; */
/* background-color: hsl(0, 0%, 100%); */
}

.dark .login__content h5, .dark .login__content span, .dark .login__content label, .dark small {
color: whitesmoke;
}

img.light {
display: block !important;
}

.dark img.light {
display: none !important;
}

.dark img.dark {
display: block !important;
}

img.dark {
display: none !important;
}

.dark .extra__label {
color: var(--primary-color-200) !important;
}

.text-muted {
width: 70%;
Expand Down
Loading