]> cat aescling's git repositories - mastodon.git/commitdiff
Fix #6395 - overlapping profile name and domain (#7927)
authorMaciek Baron <thebezet@gmail.com>
Wed, 4 Jul 2018 15:36:33 +0000 (16:36 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Wed, 4 Jul 2018 15:36:33 +0000 (17:36 +0200)
app/javascript/styles/mastodon/forms.scss
app/javascript/styles/mastodon/rtl.scss

index f1ed2c90bd09b53d1e48576bbb490d0a829d7fe6..e4fd6c1f1aeaa06ac1d422a0ec0602a1fd6cc242 100644 (file)
@@ -352,7 +352,7 @@ code {
     position: relative;
 
     .input input {
-      padding-right: 127px;
+      padding-right: 142px;
     }
 
     .append {
@@ -366,6 +366,20 @@ code {
       font-family: inherit;
       pointer-events: none;
       cursor: default;
+      max-width: 140px;
+      white-space: nowrap;
+      overflow: hidden;
+
+      &::after {
+        content: '';
+        display: block;
+        position: absolute;
+        top: 0;
+        right: 0;
+        bottom: 1px;
+        width: 5px;
+        background-image: linear-gradient(to right, rgba($classic-base-color, 0), $classic-base-color);
+      }
     }
   }
 }
index e9099a9e9731eeac7eca3d164811f54687718a6d..8c950800440222a53d9c2b95caaa1bdffceb1ba5 100644 (file)
@@ -206,13 +206,19 @@ body.rtl {
   }
 
   .simple_form .input-with-append .input input {
-    padding-left: 127px;
+    padding-left: 142px;
     padding-right: 0;
   }
 
   .simple_form .input-with-append .append {
     right: auto;
     left: 0;
+
+    &::after {
+      right: auto;
+      left: 0;
+      background-image: linear-gradient(to left, rgba($classic-base-color, 0), $classic-base-color);
+    }
   }
 
   .table th,