1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

[ENG][ESP] Forum tweaks & ñapas

Discussion in 'Forum Feedback' started by Mob of Blondes, Nov 29, 2017.

  1. Mob of Blondes

    Mob of Blondes Well-Known Member

    Joined:
    Nov 24, 2017
    Messages:
    1,234
    Likes Received:
    1,335
    [ENG] So here we ago again, customizing the forum. The objetive is less distractions, bigger controls. Useful first, pretty takes the back seat.

    So far you need something that lets you override CSS, like Stylish, Stylus, etc. You can change values, or remove things (better comment them, by moving the "*/" from the description line to behind the last "}" that controls for what you want to disable) to adjust the one I provide.

    If you have questions about other things, I will try to help, but no promises (not everything is possible, or easy).

    [ESP] Otra vez al tajo, personalizando el foro. El objetivo es menos distracciones, controles más grandes. Útil lo primero, bonito pasa a un segundo lugar.

    Por ahora necesitas algo que te permita reemplazar CSS, como Stylish, Stylus, etc. Puedes cambiar valores, o quitar cosas (le mejor es comentarlas, moviendo el "*/" de la descripción detrás del último "}" que controla lo que quieres desabilitar) para ajustar lo que pongo.

    Si hay dudas sobre otras cosas, intentaré ayudar, pero no puedo prometer nada (no todo es posible, ni fácil).

    Code:
    @namespace url(http://www.w3.org/1999/xhtml);
    
    @-moz-document domain("forum.corvusbelli.com") {
      /* Force some fonts */
      .messageText, body {
        font-family: Arial;
      }
      #QuickReply textarea {
        font-family: Courier;
      }
      /* Remove the distracting silly growing green circle, static dot still visible */
      span.onlineMarker_pulse {
        display: none;
      }
      /* Hide (shunk behind everything in middle of window) the flashing arrows */
      div#uix_jumpToFixed {
        z-index: -666;
        position: absolute;
        top: 50%;
        bottom: auto;
      }
      /* Double size "unread" dots, easier to click */
      .LoggedIn .discussionListItem .unreadLink,
      .LoggedIn .discussionListItem .ReadToggle  {
        width: 32px; /* adds 16 */
        height: 32px;
        background-size: 320px 96px; /* current PNG is 160 48 */
        background-position: 0 -64px; /* adds 32 */
      }
      .LoggedIn .discussionListItem .titleText {
        padding-left: 36px; /* adds 16 */
      }
      /* Square avatars */
      .avatar img,
      .avatar .img,
      .avatarCropper {
         border-radius: 0% !important;
      }
      /* More space for last post title in index, moving RSS icon */
      .nodeLastPost {
        width: 330px !important;
      }
      .nodeControls {
        right: 350px !important;;
      }
      /* Top bar stays put and eats space, so remove */
      #userBar .navTabs {
        display: none;
      }
      /* Compact the logo and search bar too */
      #logo {
        height: 72px;
      }
      #userBar.activeSticky.lastSticky
      /*div#userBar.header__blockItem.stickyTop.inactiveSticky*/ {
         display: none !important;
      }
      .header__blockItem {
        margin-top: 0px;
        margin-bottom: 0px;
      }
      /* Fade faction icons in index when all their posts have been read */
      :not(.unread) > h4.nodeTitle > a.menuRow > span.subForumIcon.hasGlyph > i::after {
        opacity: 0.25;
      }
      /* Opaque menus */
      .Menu {
        background-color: white;
      }
      /* Dark blue for unread like the NEW text, light for all read */
      .node .unread .nodeIcon.hasGlyph,
      .node .unread .nodeText .nodeTitle,
      .node .subForumList .unread .nodeTitle {
        color: rgb(0, 88, 117);
      }
      .node .nodeText .nodeTitle,
      .node .subForumList li .nodeTitle
      {
        color: rgb(0, 153, 204);
      }
      /* Font size of faction links */
      .node .subForumList li .nodeTitle {
        font-size: 14px;
      }
      /* Don't hide and reveal the links to thread's page 2, page 3, etc */
      .discussionListItem .itemPageNav {
        visibility: visible;
      }
      /* Visual ban, hide/fade avatar images in small, medium, large size versions
         Just add lines with the three items changing the number (no comma before "{" )
         Look up user ID and put between ".Av" and "s/m/l", 0 is example to show 2 users */
      .Av0s>img, .Av0m>img, .Av0l>img,
      .Av79s>img, .Av79m>img, .Av79l>img {
        /*visibility: hidden;*/
        opacity: 0.05;
      }
      /* Quote confirmation sucks, so at least keep it near the insert button */
      body.SelectQuotable > div.xenOverlay:not(.timedMessage) {
        top: unset !important;
        bottom: 150px !important;
        position: fixed !important; /* required for "edit post" */
      }
      /* */
    }
    
    infinity-forum-cb-tweaks1-fullpage.png
     
    #1 Mob of Blondes, Nov 29, 2017
    Last edited: Dec 4, 2017
    Golem2God, Kakino and Pierzasty like this.
  2. Pierzasty

    Pierzasty Null-Space Entity

    Joined:
    Nov 23, 2017
    Messages:
    1,082
    Likes Received:
    2,460
    It still needs work, but already looks 200% better than the original.

    Now tell me how to feed the whole thing into a 80*25*16colors text terminal :v
     
  3. Mob of Blondes

    Mob of Blondes Well-Known Member

    Joined:
    Nov 24, 2017
    Messages:
    1,234
    Likes Received:
    1,335
    Tried links/elinks, lynx or w3m? Not sure any will work with the JS-plague.
    Beyond that, maybe render a browser window to some kind of remote protocol or video, and then convert with an ASCII renderer. Matrix style.
    Or set everything to fixed font width and same size, black background... hmmm... *lightbulb*
     
  4. Mob of Blondes

    Mob of Blondes Well-Known Member

    Joined:
    Nov 24, 2017
    Messages:
    1,234
    Likes Received:
    1,335
    Fixed one rule, added "!important".
    Code:
      /* Square avatars */
      .avatar img,
      .avatar .img,
      .avatarCropper {
         border-radius: 0% !important;
      }
    
    Added 2 new rules. First one may need updates later, only threads with 2-3 pages to test. Second one could need tweaks as more places are located. I will use on the opacity method for now.
    Code:
      /* Don't hide and reveal the links to thread's page 2, page 3, etc */
      .discussionListItem .itemPageNav {
        visibility: visible;
      }
      /* Visual ban, hide/fade avatar images in small, medium, large size versions
         Just add lines with the three items changing the number (no comma before "{" )
         Look up user ID and put between ".Av" and "s/m/l", 0 is example to show 2 users */
      .Av0s>img, .Av0m>img, .Av0l>img,
      .Av79s>img, .Av79m>img, .Av79l>img {
        visibility: hidden;
        /*opacity: 0.05; Faded method */
      }
    
    First post updated ASAP, so new users can just copy-paste once the CSS rules.

    And new: stay logged in workaround. This one requires Greasemonkey, Tampermonkey, etc; anything that lets you set custom Javascripts. Add the script to main page then just keep it always open in your browser, and it should autorefresh, so the session doesn't expire.
    Code:
    // ==UserScript==
    // @name        Auto refresh CB
    // @namespace   MoB
    // @description Force a reload to stay logged
    // @include     https://forum.corvusbelli.com/
    // @version     1
    // @grant       none
    // ==/UserScript==
    // From http://superuser.com/questions/492885/using-javascript-and-greasemonkey-to-reload-just-one-tab-in-firefox
    
    var numMinutes = 20;
    window.setTimeout (function(){location.href="https://forum.corvusbelli.com/"}, numMinutes*60*1000);
    
     
    #4 Mob of Blondes, Nov 29, 2017
    Last edited: Nov 29, 2017
    Golem2God likes this.
  5. Mob of Blondes

    Mob of Blondes Well-Known Member

    Joined:
    Nov 24, 2017
    Messages:
    1,234
    Likes Received:
    1,335
    New rule to keep the "are you sure?" of the quote system near the bottom, so you don't have to move the mouse down, up, down so much.
    Code:
      /* Quote confirmation sucks, so at least keep it near the insert button */
      body.SelectQuotable > div.xenOverlay:not(.timedMessage) {
        top: unset !important;
        bottom: 150px !important;
        position: fixed !important; /* required for "edit post" */
      }
    
    Added to first post code block too.
    Edit: And added the position line.
     
    #5 Mob of Blondes, Dec 1, 2017
    Last edited: Dec 4, 2017
  6. Mob of Blondes

    Mob of Blondes Well-Known Member

    Joined:
    Nov 24, 2017
    Messages:
    1,234
    Likes Received:
    1,335
    :G: A day for some presents. :G:

    For CB:
    [​IMG]
    TactiCoal!
    Nothing else until the tacticrap and stick-up-ass poses stop, and the forums get the attention they need.

    For the rest... direct links in the header! A simple Greasemonkey/etc script:
    Code:
    // ==UserScript==
    // @name        CB forum extra links
    // @namespace   MoB
    // @description Add useful links to CB forum header
    // @include     https://forum.corvusbelli.com/*
    // @version     1
    // @grant       none
    // ==/UserScript==
    
    $("<li class='NavTab popupClosed'>\
    <a class='navLink' href='https://infinitythegame.com/'>Infinity</a>\
    </li>").insertBefore("li.navTab.forums");
    
    $("<li class='NavTab popupClosed'>\
    <a class='navLink' href='https://army.infinitythegame.com/'>Army</a>\
    </li>").insertBefore("li.navTab.forums");
    
    $("<li class='NavTab popupClosed'>\
    <a class='navLink' href='https://infinitythewiki.com/'>Wiki</a>\
    </li>").insertBefore("li.navTab.forums");
    
    Split each in three lines for easier reading, if you want to drop any of them, remove from the "$" to the ";". If you want more links, copy the 3 lines, and change (in the middle line) the href and the word, leaving the other lines the same.

    infinity-forum-cb-tweaks2-fullpage.png

    While testing (done day ago, but presents...) I discovered the Wiki works with issues if using HTTPS. Front page redirects to HTTP (so not really working with HTTPS, and it goes with a lot of 400 errors for required files) and other pages get a single error 400 and just display broken (no other files load). So pick your poison, lock icon broken or page broken.
     
  7. Mob of Blondes

    Mob of Blondes Well-Known Member

    Joined:
    Nov 24, 2017
    Messages:
    1,234
    Likes Received:
    1,335
    [ENG] Quick translation of the above, I got carried away and forgo as nobody said anything in ESP. Just one addition: Keep logged on script is less useful now, the timeout seems to be longer. If you still get kicked in hours, the issue is other and needs server changes. Report it in the thread https://forum.corvusbelli.com/threads/en-stay-logged-in-button.284/

    [ESP] Resumen de lo hecho hasta ahora, que se me había olvidado visto que solo había respuestas ENG:

    Post #4: Arreglo de algunas reglas de aspecto.
    Reglas nuevas para mantener visibles los enlaces a páginas 2, 3, 4... y para ocultar ciertos avatares (fácil de configurar para otros, es copiar, pegar y cambiar los números).
    Script para Greasemonkey, Tampermonkey, etc para mantener la cuenta activa en vez de salirse en poco tiempo. (Parece que la duración es mayor y ya no es tan útil. Si te sigue desconectando en pocas horas, el asunto es otro y necesita cambios en el servidor. Quejate en el hilo https://forum.corvusbelli.com/threads/en-stay-logged-in-button.284/ )

    Post #5: Regla nueva para mover los controles de "confirmar citas seleccionadas" abajo, cerca de la caja de texto y mover el ratón menos.

    Post #6: Regalos de Navidad. Script de GM para añadir tres enlaces básicos a la cabecera (web de Infinity, el Army y la Wiki).
    Descubierto que la Wiki no se lleva muy bien con HTTPS.

    Los cambios de reglas de aspecto CSS se van añadiendo al primer post, para simplificar el cortar/pegar.
     
  8. Mob of Blondes

    Mob of Blondes Well-Known Member

    Joined:
    Nov 24, 2017
    Messages:
    1,234
    Likes Received:
    1,335
    [ENG] A new trick (long awaited by some): expand the subsections in mainpage via GreaseMonkey (and equivalent). It slows the load a bit because it will load a full page (to cut what is interesting) per subsection zone it replaces. So you better add "//" (two slashes) to the start of every line you don't really need (from "$" to "//$"), converting them to a comment, and thus disabling the effect. What I provide has all subsections expanded.

    Oops, it also has lines to reorder the languages. Someone asked about that and it was easy to do while at it.

    [ESP] Un truco nuevo (largamente esperado por algunos): expandir las subsecciones en la página principal mediante GreaseMonkey (y similares). Enlentece algo la carga porque carga una página entera (para recortar el cacho necesario) por cada zona de subsección que reemplaza. Lo mejor es añadir "//" (dos barras inclinadas) al principio de cada linea que realmente no necesites (pasan de "$" a "//$"), convirtiéndolas en un comentario, y por tando eliminando su efecto. Lo que que doy es con todas las subsecciones expandidas.

    Se me olvidaba, también tiene líneas para reordenar los idiomas. Alguien lo pidió y era fácil, ya que estaba.

    Code:
    // ==UserScript==
    // @name        Expand CB subforums
    // @namespace   MoB
    // @include     https://forum.corvusbelli.com/
    // @version     1
    // @grant       none
    // ==/UserScript==
    
    // Reorder too, ENG before ESP
    $(".node_5").insertBefore(".node_1");
    $(".node_74").insertBefore(".node_73");
    $(".node_16").insertBefore(".node_15");
    
    // Infinity ESP
    $(".node_123").load("categories/general.123/ .nodeList.nodeList");
    $(".node_124").load("categories/juego.124/ .nodeList.nodeList");
    $(".node_125").load("categories/esfera-humana.125/ .nodeList.nodeList");
    
    // Infinity ENG
    $(".node_116").load("categories/general.116/ .nodeList.nodeList");
    $(".node_120").load("categories/game.120/ .nodeList.nodeList");
    $(".node_121").load("categories/human-sphere.121/ .nodeList.nodeList");
    
    // Aristeia ESP
    $(".node_122").load("categories/general.122/ .nodeList.nodeList");
    $(".node_83").load("categories/juego.83/ .nodeList.nodeList");
    $(".node_88").load("categories/personajes.88/ .nodeList.nodeList");
    
    // Aristeia ENG
    $(".node_90").load("categories/general.90/ .nodeList.nodeList");
    $(".node_94").load("categories/game.94/ .nodeList.nodeList");
    $(".node_98").load("categories/characters.98/ .nodeList.nodeList");
    
    infinity-forum-cb-tweaks3-fullpage.png
     
  9. Mob of Blondes

    Mob of Blondes Well-Known Member

    Joined:
    Nov 24, 2017
    Messages:
    1,234
    Likes Received:
    1,335
    [ENG] New one to fix the problem in new posts page and side bar: what is "Rules"? For A!? Infinity? CodeOne? And like that, many others, even across languages, like PanO (Infinity & CodeOne, English & Spanish, 4 subforums with same name). I was going to add it to the common CSS (see first post, also for usage instructions), but opted for doing it as new file (and huge), so you can use one or the other, or both.

    [ESP] Nuevo para arreglar el problema en la barra lateral y la página de nuevos mensajes: ¿qué es "Reglas"?¿Las de A!? ¿Infinity? ¿CodeOne? Y como ese, muchos más, incluso en ambos lenguajes, como PanO (Infinity & CodeOne, inglés y español, 4 subforos con el mismo nombre). Lo iba a añadir al CSS común (mira el primer mensaje, también para las instrucciones de uso) pero opté por hacerlo como nuevo fichero (y enorme), para poder usar una cosa o la otra, o ambas.

    Code:
    @namespace url(http://www.w3.org/1999/xhtml);
    
    @-moz-document domain("forum.corvusbelli.com") {
      /* Add CodeOne, Aristeia and similar extra info to new posts sidebar and page */
      /* Using ::before to avoid text disappearing with long names */
      /* Infinity */
      .threadList     a[href*="panoceania.6"]::before,
      .find_new_posts a[href*="panoceania.6"]::before,
      .threadList     a[href*="yu-jing.7"]::before,
      .find_new_posts a[href*="yu-jing.7"]::before,
      .threadList     a[href*="ariadna.8"]::before,
      .find_new_posts a[href*="ariadna.8"]::before,
      .threadList     a[href*="haqqislam.9"]::before,
      .find_new_posts a[href*="haqqislam.9"]::before,
      .threadList     a[href*="nomadas.10"]::before,
      .find_new_posts a[href*="nomadas.10"]::before,
      .threadList     a[href*="aleph.11"]::before,
      .find_new_posts a[href*="aleph.11"]::before,
      .threadList     a[href*="tohaa.12"]::before,
      .find_new_posts a[href*="tohaa.12"]::before,
      .threadList     a[href*="reglas.29"]::before,
      .find_new_posts a[href*="reglas.29"]::before,
      .threadList     a[href*="its.30"]::before,
      .find_new_posts a[href*="its.30"]::before,
      .threadList     a[href*="reportes-de-batalla.31"]::before,
      .find_new_posts a[href*="reportes-de-batalla.31"]::before,
      .threadList     a[href*="novedades.32"]::before,
      .find_new_posts a[href*="novedades.32"]::before,
      .threadList     a[href*="presentaciones.33"]::before,
      .find_new_posts a[href*="presentaciones.33"]::before,
      .threadList     a[href*="eventos-y-torneos.34"]::before,
      .find_new_posts a[href*="eventos-y-torneos.34"]::before,
      .threadList     a[href*="ejercito-combinado.44"]::before,
      .find_new_posts a[href*="ejercito-combinado.44"]::before,
      .threadList     a[href*="infinity-army.53"]::before,
      .find_new_posts a[href*="infinity-army.53"]::before,
      .threadList     a[href*="druze-bayram-security.135"]::before,
      .find_new_posts a[href*="druze-bayram-security.135"]::before,
      .threadList     a[href*="japanese-secessionist-army.136"]::before,
      .find_new_posts a[href*="japanese-secessionist-army.136"]::before,
      .threadList     a[href*="starco.137"]::before,
      .find_new_posts a[href*="starco.137"]::before,
      .threadList     a[href*="ikari-company.138"]::before,
      .find_new_posts a[href*="ikari-company.138"]::before,
      .threadList     a[href*="spiral-corps.173"]::before,
      .find_new_posts a[href*="spiral-corps.173"]::before,
      .threadList     a[href*="o-12.188"]::before,
      .find_new_posts a[href*="o-12.188"]::before {
        content: "(Esp Inf) ";
      }
      /* No alineados, more clear than Inf General */
      .threadList     a[href*="general.144"]::before,
      .find_new_posts a[href*="general.144"]::before {
        content: "(Esp NoA) ";
      }
      .threadList     a[href*="panoceania.20"]::before,
      .find_new_posts a[href*="panoceania.20"]::before,
      .threadList     a[href*="yu-jing.21"]::before,
      .find_new_posts a[href*="yu-jing.21"]::before,
      .threadList     a[href*="ariadna.22"]::before,
      .find_new_posts a[href*="ariadna.22"]::before,
      .threadList     a[href*="haqqislam.23"]::before,
      .find_new_posts a[href*="haqqislam.23"]::before,
      .threadList     a[href*="nomads.24"]::before,
      .find_new_posts a[href*="nomads.24"]::before,
      .threadList     a[href*="combined-army.25"]::before,
      .find_new_posts a[href*="combined-army.25"]::before,
      .threadList     a[href*="aleph.26"]::before,
      .find_new_posts a[href*="aleph.26"]::before,
      .threadList     a[href*="tohaa.27"]::before,
      .find_new_posts a[href*="tohaa.27"]::before,
      .threadList     a[href*="rules.49"]::before,
      .find_new_posts a[href*="rules.49"]::before,
      .threadList     a[href*="its.50"]::before,
      .find_new_posts a[href*="its.50"]::before,
      .threadList     a[href*="battle-reports.51"]::before,
      .find_new_posts a[href*="battle-reports.51"]::before,
      .threadList     a[href*="infinity-army.56"]::before,
      .find_new_posts a[href*="infinity-army.56"]::before,
      .threadList     a[href*="news.117"]::before,
      .find_new_posts a[href*="news.117"]::before,
      .threadList     a[href*="new-users.118"]::before,
      .find_new_posts a[href*="new-users.118"]::before,
      .threadList     a[href*="events-tournaments.119"]::before,
      .find_new_posts a[href*="events-tournaments.119"]::before,
      .threadList     a[href*="druze-bayram-security.139"]::before,
      .find_new_posts a[href*="druze-bayram-security.139"]::before,
      .threadList     a[href*="japanese-secessionist-army.140"]::before,
      .find_new_posts a[href*="japanese-secessionist-army.140"]::before,
      .threadList     a[href*="starco.141"]::before,
      .find_new_posts a[href*="starco.141"]::before,
      .threadList     a[href*="ikari-company.142"]::before,
      .find_new_posts a[href*="ikari-company.142"]::before,
      .threadList     a[href*="spiral-corps.176"]::before,
      .find_new_posts a[href*="spiral-corps.176"]::before,
      .threadList     a[href*="o-12.189"]::before,
      .find_new_posts a[href*="o-12.189"]::before {
        content: "(Eng Inf) ";
      }
      /* Non aligned, clearer than Inf General */
      .threadList     a[href*="general.143"]::before,
      .find_new_posts a[href*="general.143"]::before {
        content: "(Eng NonA) ";
      }
      /* Infinity Campaigns */
      .threadList     a[href*="ic.152"]::before,
      .find_new_posts a[href*="ic.152"]::before,
      .threadList     a[href*="ooc.153"]::before,
      .find_new_posts a[href*="ooc.153"]::before,
      .threadList     a[href*="reportes-de-batalla.154"]::before,
      .find_new_posts a[href*="reportes-de-batalla.154"]::before {
        content: "(Esp KurageC) ";
      }
      .threadList     a[href*="ic.156"]::before,
      .find_new_posts a[href*="ic.156"]::before,
      .threadList     a[href*="ooc.157"]::before,
      .find_new_posts a[href*="ooc.157"]::before,
      .threadList     a[href*="battle-reports.158"]::before,
      .find_new_posts a[href*="battle-reports.158"]::before {
        content: "(Eng KurageC) ";
      }
      .threadList     a[href*="ic-in-character.202"]::before,
      .find_new_posts a[href*="ic-in-character.202"]::before,
      .threadList     a[href*="ooc-out-of-character.203"]::before,
      .find_new_posts a[href*="ooc-out-of-character.203"]::before,
      .threadList     a[href*="reportes-de-batalla.204"]::before,
      .find_new_posts a[href*="reportes-de-batalla.204"]::before {
        content: "(Esp AsteroidB) ";
      }
      .threadList     a[href*="ic-in-character.206"]::before,
      .find_new_posts a[href*="ic-in-character.206"]::before,
      .threadList     a[href*="ooc-out-of-character.207"]::before,
      .find_new_posts a[href*="ooc-out-of-character.207"]::before,
      .threadList     a[href*="battle-reports.208"]::before,
      .find_new_posts a[href*="battle-reports.208"]::before {
        content: "(Eng AsteroidB) ";
      }
      /* CodeOne */
      .threadList     a[href*="novedades.213"]::before,
      .find_new_posts a[href*="novedades.213"]::before,
      .threadList     a[href*="reglas.214"]::before,
      .find_new_posts a[href*="reglas.214"]::before,
      .threadList     a[href*="panoceania.216"]::before,
      .find_new_posts a[href*="panoceania.216"]::before,
      .threadList     a[href*="yu-jing.217"]::before,
      .find_new_posts a[href*="yu-jing.217"]::before,
      .threadList     a[href*="o-12.218"]::before,
      .find_new_posts a[href*="o-12.218"]::before,
      .threadList     a[href*="ejercito-combinado.219"]::before,
      .find_new_posts a[href*="ejercito-combinado.219"]::before {
        content: "(Esp C1) ";
      }
      .threadList     a[href*="news.221"]::before,
      .find_new_posts a[href*="news.221"]::before,
      .threadList     a[href*="rules.222"]::before,
      .find_new_posts a[href*="rules.222"]::before,
      .threadList     a[href*="panoceania.224"]::before,
      .find_new_posts a[href*="panoceania.224"]::before,
      .threadList     a[href*="yu-jing.225"]::before,
      .find_new_posts a[href*="yu-jing.225"]::before,
      .threadList     a[href*="o-12.226"]::before,
      .find_new_posts a[href*="o-12.226"]::before,
      .threadList     a[href*="combined-army.227"]::before,
      .find_new_posts a[href*="combined-army.227"]::before {
        content: "(Eng C1) ";
      }
      /* Defiance */
      .threadList     a[href*="general.182"]::before,
      .find_new_posts a[href*="general.182"]::before {
        content: "(Esp Def) ";
      }
      .threadList     a[href*="general.184"]::before,
      .find_new_posts a[href*="general.184"]::before {
        content: "(Eng Def) ";
      }
      /* Aristeia! */
      .threadList     a[href*="novedades.80"]::before,
      .find_new_posts a[href*="novedades.80"]::before,
      .threadList     a[href*="presentaciones.81"]::before,
      .find_new_posts a[href*="presentaciones.81"]::before,
      .threadList     a[href*="eventos-y-torneos.82"]::before,
      .find_new_posts a[href*="eventos-y-torneos.82"]::before,
      .threadList     a[href*="reglas.84"]::before,
      .find_new_posts a[href*="reglas.84"]::before,
      .threadList     a[href*="apps.85"]::before,
      .find_new_posts a[href*="apps.85"]::before,
      .threadList     a[href*="soldiers-of-fortune.112"]::before,
      .find_new_posts a[href*="soldiers-of-fortune.112"]::before,
      .threadList     a[href*="smoke-mirrors.147"]::before,
      .find_new_posts a[href*="smoke-mirrors.147"]::before,
      .threadList     a[href*="human-fate.159"]::before,
      .find_new_posts a[href*="human-fate.159"]::before,
      .threadList     a[href*="legendary-bahadurs.164"]::before,
      .find_new_posts a[href*="legendary-bahadurs.164"]::before,
      .threadList     a[href*="agl.166"]::before,
      .find_new_posts a[href*="agl.166"]::before,
      .threadList     a[href*="chemical-brothers.179"]::before,
      .find_new_posts a[href*="chemical-brothers.179"]::before,
      .threadList     a[href*="masters-of-puppets.195"]::before,
      .find_new_posts a[href*="masters-of-puppets.195"]::before,
      .threadList     a[href*="reckless-hearts.196"]::before,
      .find_new_posts a[href*="reckless-hearts.196"]::before,
      .threadList     a[href*="general.199"]::before,
      .find_new_posts a[href*="general.199"]::before,
      .threadList     a[href*="double-trouble.228"]::before,
      .find_new_posts a[href*="double-trouble.228"]::before {
        content: "(Esp A!) ";
      }
      .threadList     a[href*="news.91"]::before,
      .find_new_posts a[href*="news.91"]::before,
      .threadList     a[href*="new-users.92"]::before,
      .find_new_posts a[href*="new-users.92"]::before,
      .threadList     a[href*="events-tournaments.93"]::before,
      .find_new_posts a[href*="events-tournaments.93"]::before,
      .threadList     a[href*="rules.95"]::before,
      .find_new_posts a[href*="rules.95"]::before,
      .threadList     a[href*="apps.96"]::before,
      .find_new_posts a[href*="apps.96"]::before,
      .threadList     a[href*="soldiers-of-fortune.113"]::before,
      .find_new_posts a[href*="soldiers-of-fortune.113"]::before,
      .threadList     a[href*="smoke-mirrors.148"]::before,
      .find_new_posts a[href*="smoke-mirrors.148"]::before,
      .threadList     a[href*="human-fate.160"]::before,
      .find_new_posts a[href*="human-fate.160"]::before,
      .threadList     a[href*="legendary-bahadurs.165"]::before,
      .find_new_posts a[href*="legendary-bahadurs.165"]::before,
      .threadList     a[href*="agl.167"]::before,
      .find_new_posts a[href*="agl.167"]::before,
      .threadList     a[href*="chemical-brothers.180"]::before,
      .find_new_posts a[href*="chemical-brothers.180"]::before,
      .threadList     a[href*="general.193"]::before,
      .find_new_posts a[href*="general.193"]::before,
      .threadList     a[href*="masters-of-puppets.197"]::before,
      .find_new_posts a[href*="masters-of-puppets.197"]::before,
      .threadList     a[href*="reckless-hearts.198"]::before,
      .find_new_posts a[href*="reckless-hearts.198"]::before,
      .threadList     a[href*="double-trouble.229"]::before,
      .find_new_posts a[href*="double-trouble.229"]::before {
        content: "(Eng A!) ";
      }
    }
    
     
    Dragonstriker likes this.
  • About Us

    We are a company founded in 2001 in Cangas (Spain), and devoted to design and manufacture games and figures. Our main product, Infinity the Game, was born with the ambition to satisfy the most demanding audience, offering the best quality.

     

    Why are we here?

     

    Because we are, first and foremost, players.

  • Quick Navigation

    Open the Quick Navigation