]> cat aescling's git repositories - mastodon.git/commitdiff
Change list title input styling (#17092)
authorClaire <claire.github-309c@sitedethib.com>
Fri, 17 Dec 2021 22:00:05 +0000 (23:00 +0100)
committerGitHub <noreply@github.com>
Fri, 17 Dec 2021 22:00:05 +0000 (23:00 +0100)
app/javascript/styles/mastodon/components.scss

index 0dd3636b6c35e43c0bdd411328355593ed069ab3..0a62e6b829bb1fc4b96f951df4858017982a34a2 100644 (file)
@@ -3074,17 +3074,20 @@ a.account__display-name {
   box-sizing: border-box;
   width: 100%;
   margin: 0;
-  color: $inverted-text-color;
-  background: $simple-background-color;
-  padding: 10px;
+  color: $darker-text-color;
+  background: transparent;
+  padding: 7px 0;
   font-family: inherit;
   font-size: 14px;
   resize: vertical;
   border: 0;
+  border-bottom: 2px solid $ui-primary-color;
   outline: 0;
-  border-radius: 4px;
 
-  &:focus {
+  &:focus,
+  &:active {
+    color: $primary-text-color;
+    border-bottom-color: $ui-highlight-color;
     outline: 0;
   }