Fix Deadd Notification Margins & Remove Transparency

This commit is contained in:
Sravan Balaji
2024-03-19 16:16:09 -04:00
parent 32bee58d40
commit 139209c343
2 changed files with 36 additions and 18 deletions

View File

@@ -6,19 +6,34 @@
.noti-center.time {
font-size: 32px;
margin-left: 10px;
margin-right: 10px;
}
.title {
font-weight: bold;
font-size: 16px;
margin-left: 10px;
margin-right: 10px;
}
.body {
font-weight: normal;
font-size: 16px;
margin-left: 10px;
margin-right: 10px;
}
.appname {
font-size: 12px;
margin-left: 10px;
margin-right: 10px;
}
.time {
font-size: 12px;
margin-left: 10px;
margin-right: 10px;
}
.blurredBG.notification {
@@ -53,36 +68,30 @@ label.critical {
}
button {
background: transparent;
color: #f8f8f2;
border-radius: 10px;
background: rgba(40, 42, 54, 1.0);
border-width: 2px;
background-position: 0px 0px;
text-shadow: none;
color: #f8f8f2;
}
button:hover {
border-radius: 10px;
background: rgba(68, 71, 90, 0.8);
border-width: 2px;
border-top: transparent;
border-color: #50fa7b;
color: #282a36;
}
.userbutton {
background: transparent;
border-radius: 10px;
background: rgba(40, 42, 54, 1.0);
border-width: 2px;
background-position: 0px 0px;
text-shadow: none;
}
.userbutton:hover {
border-radius: 10px;
background: rgba(68, 71, 90, 1.0);
border-width: 2px;
border-top: transparent;
border-color: #50fa7b;
}

View File

@@ -1237,6 +1237,8 @@ notification:
.noti-center.time {
font-size: 32px;
margin-left: 10px;
margin-right: 10px;
}
#+END_SRC
@@ -1246,14 +1248,27 @@ notification:
.title {
font-weight: bold;
font-size: 16px;
margin-left: 10px;
margin-right: 10px;
}
.body {
font-weight: normal;
font-size: 16px;
margin-left: 10px;
margin-right: 10px;
}
.appname {
font-size: 12px;
margin-left: 10px;
margin-right: 10px;
}
.time {
font-size: 12px;
margin-left: 10px;
margin-right: 10px;
}
.blurredBG.notification {
@@ -1296,19 +1311,16 @@ label.critical {
#+BEGIN_SRC conf :tangle .config/deadd/deadd.css
button {
background: transparent;
color: #f8f8f2;
border-radius: 10px;
background: rgba(40, 42, 54, 1.0);
border-width: 2px;
background-position: 0px 0px;
text-shadow: none;
color: #f8f8f2;
}
button:hover {
border-radius: 10px;
background: rgba(68, 71, 90, 0.8);
border-width: 2px;
border-top: transparent;
border-color: #50fa7b;
color: #282a36;
}
@@ -1318,18 +1330,15 @@ button:hover {
#+BEGIN_SRC conf :tangle .config/deadd/deadd.css
.userbutton {
background: transparent;
border-radius: 10px;
background: rgba(40, 42, 54, 1.0);
border-width: 2px;
background-position: 0px 0px;
text-shadow: none;
}
.userbutton:hover {
border-radius: 10px;
background: rgba(68, 71, 90, 1.0);
border-width: 2px;
border-top: transparent;
border-color: #50fa7b;
}