Merge pull request #735 from FinnTheFoxxo/simplex-chat

Added Simplex Button
This commit is contained in:
Julian Prieber 2024-02-25 17:35:57 +01:00 committed by GitHub
commit 33bcf236c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 29 additions and 0 deletions

View File

@ -991,6 +991,16 @@ button.button-scribd{
filter: brightness(90%); filter: brightness(90%);
} }
/* Simplex */
.button.button-simplex {
color: #ffffff;
background-color: #0e2b57;
}
.button.button-simplex:hover,
.button.button-simplex:focus {
filter: brightness(90%);
}
/* Skoob */ /* Skoob */
.button.button-skoob { .button.button-skoob {
color: #FFFFFF; color: #FFFFFF;

View File

@ -0,0 +1,10 @@
<svg width="34" height="35" viewBox="0 0 34 35" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.02958 8.60922L8.622 14.2013L14.3705 8.45375L17.1669 11.2498L11.4183 16.9972L17.0114 22.5895L14.1373 25.4633L8.54422 19.871L2.79636 25.6187L0 22.8227L5.74794 17.075L0.155484 11.483L3.02958 8.60922Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.0923 25.5156L16.944 22.6642L16.9429 22.6634L22.6467 16.9612L17.0513 11.3675L17.0523 11.367L14.2548 8.56979L8.65972 2.97535L11.5114 0.123963L17.1061 5.71849L22.8099 0.015625L25.6074 2.81285L19.9035 8.51562L25.4984 14.1099L31.2025 8.40729L34 11.2045L28.2958 16.907L33.8917 22.5017L31.0399 25.3531L25.4442 19.7584L19.7409 25.4611L25.3365 31.0559L22.4848 33.9073L16.8892 28.3124L11.1864 34.0156L8.38885 31.2184L14.0923 25.5156Z" fill="url(#paint0_linear_656_10815)"/>
<defs>
<linearGradient id="paint0_linear_656_10815" x1="12.8381" y1="-0.678252" x2="9.54355" y2="31.4493" gradientUnits="userSpaceOnUse">
<stop stop-color="#01F1FF"/>
<stop offset="1" stop-color="#0197FF"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -929,6 +929,15 @@ class ButtonSeeder extends Seeder
"group" => "default", "group" => "default",
"mb" => false, "mb" => false,
], ],
[
"name" => "simplex",
"alt" => "Simplex",
"exclude" => false,
"group" => "default",
"mb" => false,
],
]; ];
Button::insert($buttons); Button::insert($buttons);